fake-bpy-module 20241208__py3-none-any.whl → 20241209__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bpy/ops/action/__init__.pyi +38 -138
- bpy/ops/anim/__init__.pyi +61 -179
- bpy/ops/armature/__init__.pyi +48 -147
- bpy/ops/asset/__init__.pyi +16 -71
- bpy/ops/boid/__init__.pyi +8 -41
- bpy/ops/brush/__init__.pyi +13 -39
- bpy/ops/buttons/__init__.pyi +6 -29
- bpy/ops/cachefile/__init__.pyi +5 -19
- bpy/ops/camera/__init__.pyi +2 -5
- bpy/ops/clip/__init__.pyi +92 -290
- bpy/ops/cloth/__init__.pyi +1 -3
- bpy/ops/collection/__init__.pyi +9 -25
- bpy/ops/console/__init__.pyi +21 -79
- bpy/ops/constraint/__init__.pyi +18 -45
- bpy/ops/curve/__init__.pyi +51 -180
- bpy/ops/curves/__init__.pyi +28 -100
- bpy/ops/cycles/__init__.pyi +3 -9
- bpy/ops/dpaint/__init__.pyi +5 -19
- bpy/ops/ed/__init__.pyi +12 -53
- bpy/ops/export_anim/__init__.pyi +1 -3
- bpy/ops/export_scene/__init__.pyi +2 -5
- bpy/ops/extensions/__init__.pyi +34 -110
- bpy/ops/file/__init__.pyi +40 -167
- bpy/ops/fluid/__init__.pyi +14 -77
- bpy/ops/font/__init__.pyi +23 -85
- bpy/ops/geometry/__init__.pyi +10 -27
- bpy/ops/gizmogroup/__init__.pyi +2 -9
- bpy/ops/gpencil/__init__.pyi +8 -32
- bpy/ops/graph/__init__.pyi +65 -184
- bpy/ops/grease_pencil/__init__.pyi +108 -290
- bpy/ops/image/__init__.pyi +49 -154
- bpy/ops/import_anim/__init__.pyi +1 -3
- bpy/ops/import_curve/__init__.pyi +1 -3
- bpy/ops/import_scene/__init__.pyi +2 -4
- bpy/ops/info/__init__.pyi +7 -29
- bpy/ops/lattice/__init__.pyi +8 -29
- bpy/ops/marker/__init__.pyi +11 -31
- bpy/ops/mask/__init__.pyi +39 -132
- bpy/ops/material/__init__.pyi +3 -19
- bpy/ops/mball/__init__.pyi +8 -19
- bpy/ops/mesh/__init__.pyi +164 -401
- bpy/ops/nla/__init__.pyi +39 -147
- bpy/ops/node/__init__.pyi +115 -390
- bpy/ops/object/__init__.pyi +237 -630
- bpy/ops/outliner/__init__.pyi +71 -263
- bpy/ops/paint/__init__.pyi +54 -140
- bpy/ops/paintcurve/__init__.pyi +8 -33
- bpy/ops/palette/__init__.pyi +7 -27
- bpy/ops/particle/__init__.pyi +36 -134
- bpy/ops/pose/__init__.pyi +51 -169
- bpy/ops/poselib/__init__.pyi +9 -33
- bpy/ops/preferences/__init__.pyi +35 -94
- bpy/ops/ptcache/__init__.pyi +7 -33
- bpy/ops/render/__init__.pyi +13 -37
- bpy/ops/rigidbody/__init__.pyi +13 -45
- bpy/ops/scene/__init__.pyi +37 -121
- bpy/ops/screen/__init__.pyi +39 -137
- bpy/ops/script/__init__.pyi +3 -11
- bpy/ops/sculpt/__init__.pyi +37 -94
- bpy/ops/sculpt_curves/__init__.pyi +4 -10
- bpy/ops/sequencer/__init__.pyi +89 -284
- bpy/ops/sound/__init__.pyi +7 -23
- bpy/ops/spreadsheet/__init__.pyi +4 -15
- bpy/ops/surface/__init__.pyi +6 -13
- bpy/ops/text/__init__.pyi +43 -175
- bpy/ops/text_editor/__init__.pyi +1 -3
- bpy/ops/texture/__init__.pyi +4 -21
- bpy/ops/transform/__init__.pyi +27 -61
- bpy/ops/ui/__init__.pyi +34 -117
- bpy/ops/uilist/__init__.pyi +3 -7
- bpy/ops/uv/__init__.pyi +49 -134
- bpy/ops/view2d/__init__.pyi +14 -39
- bpy/ops/view3d/__init__.pyi +67 -232
- bpy/ops/wm/__init__.pyi +114 -298
- bpy/ops/workspace/__init__.pyi +7 -33
- bpy/ops/world/__init__.pyi +2 -11
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/RECORD +80 -80
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/top_level.txt +0 -0
bpy/ops/view3d/__init__.pyi
CHANGED
|
@@ -4,9 +4,9 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def bone_select_menu(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
7
|
execution_context: int | str | None = None,
|
|
9
8
|
undo: bool | None = None,
|
|
9
|
+
/,
|
|
10
10
|
*,
|
|
11
11
|
name: str | None = "",
|
|
12
12
|
extend: bool | None = False,
|
|
@@ -15,7 +15,6 @@ def bone_select_menu(
|
|
|
15
15
|
):
|
|
16
16
|
"""Menu bone selection
|
|
17
17
|
|
|
18
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
19
18
|
:type execution_context: int | str | None
|
|
20
19
|
:type undo: bool | None
|
|
21
20
|
:param name: Bone Name
|
|
@@ -29,9 +28,9 @@ def bone_select_menu(
|
|
|
29
28
|
"""
|
|
30
29
|
|
|
31
30
|
def camera_background_image_add(
|
|
32
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
33
31
|
execution_context: int | str | None = None,
|
|
34
32
|
undo: bool | None = None,
|
|
33
|
+
/,
|
|
35
34
|
*,
|
|
36
35
|
filepath: str = "",
|
|
37
36
|
relative_path: bool | None = True,
|
|
@@ -40,7 +39,6 @@ def camera_background_image_add(
|
|
|
40
39
|
):
|
|
41
40
|
"""Add a new background image to the active camera
|
|
42
41
|
|
|
43
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
44
42
|
:type execution_context: int | str | None
|
|
45
43
|
:type undo: bool | None
|
|
46
44
|
:param filepath: Filepath, Path to image file
|
|
@@ -54,15 +52,14 @@ def camera_background_image_add(
|
|
|
54
52
|
"""
|
|
55
53
|
|
|
56
54
|
def camera_background_image_remove(
|
|
57
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
58
55
|
execution_context: int | str | None = None,
|
|
59
56
|
undo: bool | None = None,
|
|
57
|
+
/,
|
|
60
58
|
*,
|
|
61
59
|
index: int | None = 0,
|
|
62
60
|
):
|
|
63
61
|
"""Remove a background image from the camera
|
|
64
62
|
|
|
65
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
66
63
|
:type execution_context: int | str | None
|
|
67
64
|
:type undo: bool | None
|
|
68
65
|
:param index: Index, Background image index to remove
|
|
@@ -70,45 +67,36 @@ def camera_background_image_remove(
|
|
|
70
67
|
"""
|
|
71
68
|
|
|
72
69
|
def camera_to_view(
|
|
73
|
-
|
|
74
|
-
execution_context: int | str | None = None,
|
|
75
|
-
undo: bool | None = None,
|
|
70
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
76
71
|
):
|
|
77
72
|
"""Set camera view to active view
|
|
78
73
|
|
|
79
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
80
74
|
:type execution_context: int | str | None
|
|
81
75
|
:type undo: bool | None
|
|
82
76
|
"""
|
|
83
77
|
|
|
84
78
|
def camera_to_view_selected(
|
|
85
|
-
|
|
86
|
-
execution_context: int | str | None = None,
|
|
87
|
-
undo: bool | None = None,
|
|
79
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
88
80
|
):
|
|
89
81
|
"""Move the camera so selected objects are framed
|
|
90
82
|
|
|
91
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
92
83
|
:type execution_context: int | str | None
|
|
93
84
|
:type undo: bool | None
|
|
94
85
|
"""
|
|
95
86
|
|
|
96
87
|
def clear_render_border(
|
|
97
|
-
|
|
98
|
-
execution_context: int | str | None = None,
|
|
99
|
-
undo: bool | None = None,
|
|
88
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
100
89
|
):
|
|
101
90
|
"""Clear the boundaries of the border render and disable border render
|
|
102
91
|
|
|
103
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
104
92
|
:type execution_context: int | str | None
|
|
105
93
|
:type undo: bool | None
|
|
106
94
|
"""
|
|
107
95
|
|
|
108
96
|
def clip_border(
|
|
109
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
110
97
|
execution_context: int | str | None = None,
|
|
111
98
|
undo: bool | None = None,
|
|
99
|
+
/,
|
|
112
100
|
*,
|
|
113
101
|
xmin: int | None = 0,
|
|
114
102
|
xmax: int | None = 0,
|
|
@@ -118,7 +106,6 @@ def clip_border(
|
|
|
118
106
|
):
|
|
119
107
|
"""Set the view clipping region
|
|
120
108
|
|
|
121
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
122
109
|
:type execution_context: int | str | None
|
|
123
110
|
:type undo: bool | None
|
|
124
111
|
:param xmin: X Min
|
|
@@ -133,29 +120,23 @@ def clip_border(
|
|
|
133
120
|
:type wait_for_input: bool | None
|
|
134
121
|
"""
|
|
135
122
|
|
|
136
|
-
def copybuffer(
|
|
137
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
138
|
-
execution_context: int | str | None = None,
|
|
139
|
-
undo: bool | None = None,
|
|
140
|
-
):
|
|
123
|
+
def copybuffer(execution_context: int | str | None = None, undo: bool | None = None):
|
|
141
124
|
"""Copy the selected objects to the internal clipboard
|
|
142
125
|
|
|
143
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
144
126
|
:type execution_context: int | str | None
|
|
145
127
|
:type undo: bool | None
|
|
146
128
|
"""
|
|
147
129
|
|
|
148
130
|
def cursor3d(
|
|
149
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
150
131
|
execution_context: int | str | None = None,
|
|
151
132
|
undo: bool | None = None,
|
|
133
|
+
/,
|
|
152
134
|
*,
|
|
153
135
|
use_depth: bool | None = True,
|
|
154
136
|
orientation: typing.Literal["NONE", "VIEW", "XFORM", "GEOM"] | None = "VIEW",
|
|
155
137
|
):
|
|
156
138
|
"""Set the location of the 3D cursor
|
|
157
139
|
|
|
158
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
159
140
|
:type execution_context: int | str | None
|
|
160
141
|
:type undo: bool | None
|
|
161
142
|
:param use_depth: Surface Project, Project onto the surface
|
|
@@ -177,9 +158,9 @@ def cursor3d(
|
|
|
177
158
|
"""
|
|
178
159
|
|
|
179
160
|
def dolly(
|
|
180
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
181
161
|
execution_context: int | str | None = None,
|
|
182
162
|
undo: bool | None = None,
|
|
163
|
+
/,
|
|
183
164
|
*,
|
|
184
165
|
mx: int | None = 0,
|
|
185
166
|
my: int | None = 0,
|
|
@@ -188,7 +169,6 @@ def dolly(
|
|
|
188
169
|
):
|
|
189
170
|
"""Dolly in/out in the view
|
|
190
171
|
|
|
191
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
192
172
|
:type execution_context: int | str | None
|
|
193
173
|
:type undo: bool | None
|
|
194
174
|
:param mx: Region Position X
|
|
@@ -202,16 +182,15 @@ def dolly(
|
|
|
202
182
|
"""
|
|
203
183
|
|
|
204
184
|
def drop_world(
|
|
205
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
206
185
|
execution_context: int | str | None = None,
|
|
207
186
|
undo: bool | None = None,
|
|
187
|
+
/,
|
|
208
188
|
*,
|
|
209
189
|
name: str = "",
|
|
210
190
|
session_uid: int | None = 0,
|
|
211
191
|
):
|
|
212
192
|
"""Drop a world into the scene
|
|
213
193
|
|
|
214
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
215
194
|
:type execution_context: int | str | None
|
|
216
195
|
:type undo: bool | None
|
|
217
196
|
:param name: Name, Name of the data-block to use by the operator
|
|
@@ -221,39 +200,32 @@ def drop_world(
|
|
|
221
200
|
"""
|
|
222
201
|
|
|
223
202
|
def edit_mesh_extrude_individual_move(
|
|
224
|
-
|
|
225
|
-
execution_context: int | str | None = None,
|
|
226
|
-
undo: bool | None = None,
|
|
203
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
227
204
|
):
|
|
228
205
|
"""Extrude each individual face separately along local normals
|
|
229
206
|
|
|
230
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
231
207
|
:type execution_context: int | str | None
|
|
232
208
|
:type undo: bool | None
|
|
233
209
|
"""
|
|
234
210
|
|
|
235
211
|
def edit_mesh_extrude_manifold_normal(
|
|
236
|
-
|
|
237
|
-
execution_context: int | str | None = None,
|
|
238
|
-
undo: bool | None = None,
|
|
212
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
239
213
|
):
|
|
240
214
|
"""Extrude manifold region along normals
|
|
241
215
|
|
|
242
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
243
216
|
:type execution_context: int | str | None
|
|
244
217
|
:type undo: bool | None
|
|
245
218
|
"""
|
|
246
219
|
|
|
247
220
|
def edit_mesh_extrude_move_normal(
|
|
248
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
249
221
|
execution_context: int | str | None = None,
|
|
250
222
|
undo: bool | None = None,
|
|
223
|
+
/,
|
|
251
224
|
*,
|
|
252
225
|
dissolve_and_intersect: bool | None = False,
|
|
253
226
|
):
|
|
254
227
|
"""Extrude region together along the average normal
|
|
255
228
|
|
|
256
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
257
229
|
:type execution_context: int | str | None
|
|
258
230
|
:type undo: bool | None
|
|
259
231
|
:param dissolve_and_intersect: dissolve_and_intersect, Dissolves adjacent faces and intersects new geometry
|
|
@@ -261,33 +233,25 @@ def edit_mesh_extrude_move_normal(
|
|
|
261
233
|
"""
|
|
262
234
|
|
|
263
235
|
def edit_mesh_extrude_move_shrink_fatten(
|
|
264
|
-
|
|
265
|
-
execution_context: int | str | None = None,
|
|
266
|
-
undo: bool | None = None,
|
|
236
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
267
237
|
):
|
|
268
238
|
"""Extrude region together along local normals
|
|
269
239
|
|
|
270
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
271
240
|
:type execution_context: int | str | None
|
|
272
241
|
:type undo: bool | None
|
|
273
242
|
"""
|
|
274
243
|
|
|
275
|
-
def fly(
|
|
276
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
277
|
-
execution_context: int | str | None = None,
|
|
278
|
-
undo: bool | None = None,
|
|
279
|
-
):
|
|
244
|
+
def fly(execution_context: int | str | None = None, undo: bool | None = None):
|
|
280
245
|
"""Interactively fly around the scene
|
|
281
246
|
|
|
282
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
283
247
|
:type execution_context: int | str | None
|
|
284
248
|
:type undo: bool | None
|
|
285
249
|
"""
|
|
286
250
|
|
|
287
251
|
def interactive_add(
|
|
288
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
289
252
|
execution_context: int | str | None = None,
|
|
290
253
|
undo: bool | None = None,
|
|
254
|
+
/,
|
|
291
255
|
*,
|
|
292
256
|
primitive_type: typing.Literal[
|
|
293
257
|
"CUBE", "CYLINDER", "CONE", "SPHERE_UV", "SPHERE_ICO"
|
|
@@ -301,7 +265,6 @@ def interactive_add(
|
|
|
301
265
|
):
|
|
302
266
|
"""Interactively add an object
|
|
303
267
|
|
|
304
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
305
268
|
:type execution_context: int | str | None
|
|
306
269
|
:type undo: bool | None
|
|
307
270
|
:param primitive_type: Primitive
|
|
@@ -343,15 +306,14 @@ def interactive_add(
|
|
|
343
306
|
"""
|
|
344
307
|
|
|
345
308
|
def localview(
|
|
346
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
347
309
|
execution_context: int | str | None = None,
|
|
348
310
|
undo: bool | None = None,
|
|
311
|
+
/,
|
|
349
312
|
*,
|
|
350
313
|
frame_selected: bool | None = True,
|
|
351
314
|
):
|
|
352
315
|
"""Toggle display of selected object(s) separately and centered in view
|
|
353
316
|
|
|
354
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
355
317
|
:type execution_context: int | str | None
|
|
356
318
|
:type undo: bool | None
|
|
357
319
|
:param frame_selected: Frame Selected, Move the view to frame the selected objects
|
|
@@ -359,128 +321,94 @@ def localview(
|
|
|
359
321
|
"""
|
|
360
322
|
|
|
361
323
|
def localview_remove_from(
|
|
362
|
-
|
|
363
|
-
execution_context: int | str | None = None,
|
|
364
|
-
undo: bool | None = None,
|
|
324
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
365
325
|
):
|
|
366
326
|
"""Move selected objects out of local view
|
|
367
327
|
|
|
368
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
369
328
|
:type execution_context: int | str | None
|
|
370
329
|
:type undo: bool | None
|
|
371
330
|
"""
|
|
372
331
|
|
|
373
332
|
def move(
|
|
374
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
375
333
|
execution_context: int | str | None = None,
|
|
376
334
|
undo: bool | None = None,
|
|
335
|
+
/,
|
|
377
336
|
*,
|
|
378
337
|
use_cursor_init: bool | None = True,
|
|
379
338
|
):
|
|
380
339
|
"""Move the view
|
|
381
340
|
|
|
382
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
383
341
|
:type execution_context: int | str | None
|
|
384
342
|
:type undo: bool | None
|
|
385
343
|
:param use_cursor_init: Use Mouse Position, Allow the initial mouse position to be used
|
|
386
344
|
:type use_cursor_init: bool | None
|
|
387
345
|
"""
|
|
388
346
|
|
|
389
|
-
def navigate(
|
|
390
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
391
|
-
execution_context: int | str | None = None,
|
|
392
|
-
undo: bool | None = None,
|
|
393
|
-
):
|
|
347
|
+
def navigate(execution_context: int | str | None = None, undo: bool | None = None):
|
|
394
348
|
"""Interactively navigate around the scene (uses the mode (walk/fly) preference)
|
|
395
349
|
|
|
396
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
397
350
|
:type execution_context: int | str | None
|
|
398
351
|
:type undo: bool | None
|
|
399
352
|
"""
|
|
400
353
|
|
|
401
|
-
def ndof_all(
|
|
402
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
403
|
-
execution_context: int | str | None = None,
|
|
404
|
-
undo: bool | None = None,
|
|
405
|
-
):
|
|
354
|
+
def ndof_all(execution_context: int | str | None = None, undo: bool | None = None):
|
|
406
355
|
"""Pan and rotate the view with the 3D mouse
|
|
407
356
|
|
|
408
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
409
357
|
:type execution_context: int | str | None
|
|
410
358
|
:type undo: bool | None
|
|
411
359
|
"""
|
|
412
360
|
|
|
413
|
-
def ndof_orbit(
|
|
414
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
415
|
-
execution_context: int | str | None = None,
|
|
416
|
-
undo: bool | None = None,
|
|
417
|
-
):
|
|
361
|
+
def ndof_orbit(execution_context: int | str | None = None, undo: bool | None = None):
|
|
418
362
|
"""Orbit the view using the 3D mouse
|
|
419
363
|
|
|
420
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
421
364
|
:type execution_context: int | str | None
|
|
422
365
|
:type undo: bool | None
|
|
423
366
|
"""
|
|
424
367
|
|
|
425
368
|
def ndof_orbit_zoom(
|
|
426
|
-
|
|
427
|
-
execution_context: int | str | None = None,
|
|
428
|
-
undo: bool | None = None,
|
|
369
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
429
370
|
):
|
|
430
371
|
"""Orbit and zoom the view using the 3D mouse
|
|
431
372
|
|
|
432
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
433
373
|
:type execution_context: int | str | None
|
|
434
374
|
:type undo: bool | None
|
|
435
375
|
"""
|
|
436
376
|
|
|
437
|
-
def ndof_pan(
|
|
438
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
439
|
-
execution_context: int | str | None = None,
|
|
440
|
-
undo: bool | None = None,
|
|
441
|
-
):
|
|
377
|
+
def ndof_pan(execution_context: int | str | None = None, undo: bool | None = None):
|
|
442
378
|
"""Pan the view with the 3D mouse
|
|
443
379
|
|
|
444
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
445
380
|
:type execution_context: int | str | None
|
|
446
381
|
:type undo: bool | None
|
|
447
382
|
"""
|
|
448
383
|
|
|
449
384
|
def object_as_camera(
|
|
450
|
-
|
|
451
|
-
execution_context: int | str | None = None,
|
|
452
|
-
undo: bool | None = None,
|
|
385
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
453
386
|
):
|
|
454
387
|
"""Set the active object as the active camera for this view or scene
|
|
455
388
|
|
|
456
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
457
389
|
:type execution_context: int | str | None
|
|
458
390
|
:type undo: bool | None
|
|
459
391
|
"""
|
|
460
392
|
|
|
461
393
|
def object_mode_pie_or_toggle(
|
|
462
|
-
|
|
463
|
-
execution_context: int | str | None = None,
|
|
464
|
-
undo: bool | None = None,
|
|
394
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
465
395
|
):
|
|
466
396
|
"""Undocumented, consider contributing.
|
|
467
397
|
|
|
468
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
469
398
|
:type execution_context: int | str | None
|
|
470
399
|
:type undo: bool | None
|
|
471
400
|
"""
|
|
472
401
|
|
|
473
402
|
def pastebuffer(
|
|
474
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
475
403
|
execution_context: int | str | None = None,
|
|
476
404
|
undo: bool | None = None,
|
|
405
|
+
/,
|
|
477
406
|
*,
|
|
478
407
|
autoselect: bool | None = True,
|
|
479
408
|
active_collection: bool | None = True,
|
|
480
409
|
):
|
|
481
410
|
"""Paste objects from the internal clipboard
|
|
482
411
|
|
|
483
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
484
412
|
:type execution_context: int | str | None
|
|
485
413
|
:type undo: bool | None
|
|
486
414
|
:param autoselect: Select, Select pasted objects
|
|
@@ -490,9 +418,9 @@ def pastebuffer(
|
|
|
490
418
|
"""
|
|
491
419
|
|
|
492
420
|
def render_border(
|
|
493
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
494
421
|
execution_context: int | str | None = None,
|
|
495
422
|
undo: bool | None = None,
|
|
423
|
+
/,
|
|
496
424
|
*,
|
|
497
425
|
xmin: int | None = 0,
|
|
498
426
|
xmax: int | None = 0,
|
|
@@ -502,7 +430,6 @@ def render_border(
|
|
|
502
430
|
):
|
|
503
431
|
"""Set the boundaries of the border render and enable border render
|
|
504
432
|
|
|
505
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
506
433
|
:type execution_context: int | str | None
|
|
507
434
|
:type undo: bool | None
|
|
508
435
|
:param xmin: X Min
|
|
@@ -518,49 +445,38 @@ def render_border(
|
|
|
518
445
|
"""
|
|
519
446
|
|
|
520
447
|
def rotate(
|
|
521
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
522
448
|
execution_context: int | str | None = None,
|
|
523
449
|
undo: bool | None = None,
|
|
450
|
+
/,
|
|
524
451
|
*,
|
|
525
452
|
use_cursor_init: bool | None = True,
|
|
526
453
|
):
|
|
527
454
|
"""Rotate the view
|
|
528
455
|
|
|
529
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
530
456
|
:type execution_context: int | str | None
|
|
531
457
|
:type undo: bool | None
|
|
532
458
|
:param use_cursor_init: Use Mouse Position, Allow the initial mouse position to be used
|
|
533
459
|
:type use_cursor_init: bool | None
|
|
534
460
|
"""
|
|
535
461
|
|
|
536
|
-
def ruler_add(
|
|
537
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
538
|
-
execution_context: int | str | None = None,
|
|
539
|
-
undo: bool | None = None,
|
|
540
|
-
):
|
|
462
|
+
def ruler_add(execution_context: int | str | None = None, undo: bool | None = None):
|
|
541
463
|
"""Add ruler
|
|
542
464
|
|
|
543
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
544
465
|
:type execution_context: int | str | None
|
|
545
466
|
:type undo: bool | None
|
|
546
467
|
"""
|
|
547
468
|
|
|
548
|
-
def ruler_remove(
|
|
549
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
550
|
-
execution_context: int | str | None = None,
|
|
551
|
-
undo: bool | None = None,
|
|
552
|
-
):
|
|
469
|
+
def ruler_remove(execution_context: int | str | None = None, undo: bool | None = None):
|
|
553
470
|
"""Undocumented, consider contributing.
|
|
554
471
|
|
|
555
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
556
472
|
:type execution_context: int | str | None
|
|
557
473
|
:type undo: bool | None
|
|
558
474
|
"""
|
|
559
475
|
|
|
560
476
|
def select(
|
|
561
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
562
477
|
execution_context: int | str | None = None,
|
|
563
478
|
undo: bool | None = None,
|
|
479
|
+
/,
|
|
564
480
|
*,
|
|
565
481
|
extend: bool | None = False,
|
|
566
482
|
deselect: bool | None = False,
|
|
@@ -574,7 +490,6 @@ def select(
|
|
|
574
490
|
):
|
|
575
491
|
"""Select and activate item(s)
|
|
576
492
|
|
|
577
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
578
493
|
:type execution_context: int | str | None
|
|
579
494
|
:type undo: bool | None
|
|
580
495
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -598,9 +513,9 @@ def select(
|
|
|
598
513
|
"""
|
|
599
514
|
|
|
600
515
|
def select_box(
|
|
601
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
602
516
|
execution_context: int | str | None = None,
|
|
603
517
|
undo: bool | None = None,
|
|
518
|
+
/,
|
|
604
519
|
*,
|
|
605
520
|
xmin: int | None = 0,
|
|
606
521
|
xmax: int | None = 0,
|
|
@@ -611,7 +526,6 @@ def select_box(
|
|
|
611
526
|
):
|
|
612
527
|
"""Select items using box selection
|
|
613
528
|
|
|
614
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
615
529
|
:type execution_context: int | str | None
|
|
616
530
|
:type undo: bool | None
|
|
617
531
|
:param xmin: X Min
|
|
@@ -644,9 +558,9 @@ def select_box(
|
|
|
644
558
|
"""
|
|
645
559
|
|
|
646
560
|
def select_circle(
|
|
647
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
648
561
|
execution_context: int | str | None = None,
|
|
649
562
|
undo: bool | None = None,
|
|
563
|
+
/,
|
|
650
564
|
*,
|
|
651
565
|
x: int | None = 0,
|
|
652
566
|
y: int | None = 0,
|
|
@@ -656,7 +570,6 @@ def select_circle(
|
|
|
656
570
|
):
|
|
657
571
|
"""Select items using circle selection
|
|
658
572
|
|
|
659
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
660
573
|
:type execution_context: int | str | None
|
|
661
574
|
:type undo: bool | None
|
|
662
575
|
:param x: X
|
|
@@ -681,9 +594,9 @@ def select_circle(
|
|
|
681
594
|
"""
|
|
682
595
|
|
|
683
596
|
def select_lasso(
|
|
684
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
685
597
|
execution_context: int | str | None = None,
|
|
686
598
|
undo: bool | None = None,
|
|
599
|
+
/,
|
|
687
600
|
*,
|
|
688
601
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
689
602
|
use_smooth_stroke: bool | None = False,
|
|
@@ -693,7 +606,6 @@ def select_lasso(
|
|
|
693
606
|
):
|
|
694
607
|
"""Select items using lasso selection
|
|
695
608
|
|
|
696
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
697
609
|
:type execution_context: int | str | None
|
|
698
610
|
:type undo: bool | None
|
|
699
611
|
:param path: Path
|
|
@@ -724,9 +636,9 @@ def select_lasso(
|
|
|
724
636
|
"""
|
|
725
637
|
|
|
726
638
|
def select_menu(
|
|
727
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
728
639
|
execution_context: int | str | None = None,
|
|
729
640
|
undo: bool | None = None,
|
|
641
|
+
/,
|
|
730
642
|
*,
|
|
731
643
|
name: str | None = "",
|
|
732
644
|
extend: bool | None = False,
|
|
@@ -735,7 +647,6 @@ def select_menu(
|
|
|
735
647
|
):
|
|
736
648
|
"""Menu object selection
|
|
737
649
|
|
|
738
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
739
650
|
:type execution_context: int | str | None
|
|
740
651
|
:type undo: bool | None
|
|
741
652
|
:param name: Object Name
|
|
@@ -748,88 +659,67 @@ def select_menu(
|
|
|
748
659
|
:type toggle: bool | None
|
|
749
660
|
"""
|
|
750
661
|
|
|
751
|
-
def smoothview(
|
|
752
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
753
|
-
execution_context: int | str | None = None,
|
|
754
|
-
undo: bool | None = None,
|
|
755
|
-
):
|
|
662
|
+
def smoothview(execution_context: int | str | None = None, undo: bool | None = None):
|
|
756
663
|
"""Undocumented, consider contributing.
|
|
757
664
|
|
|
758
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
759
665
|
:type execution_context: int | str | None
|
|
760
666
|
:type undo: bool | None
|
|
761
667
|
"""
|
|
762
668
|
|
|
763
669
|
def snap_cursor_to_active(
|
|
764
|
-
|
|
765
|
-
execution_context: int | str | None = None,
|
|
766
|
-
undo: bool | None = None,
|
|
670
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
767
671
|
):
|
|
768
672
|
"""Snap 3D cursor to the active item
|
|
769
673
|
|
|
770
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
771
674
|
:type execution_context: int | str | None
|
|
772
675
|
:type undo: bool | None
|
|
773
676
|
"""
|
|
774
677
|
|
|
775
678
|
def snap_cursor_to_center(
|
|
776
|
-
|
|
777
|
-
execution_context: int | str | None = None,
|
|
778
|
-
undo: bool | None = None,
|
|
679
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
779
680
|
):
|
|
780
681
|
"""Snap 3D cursor to the world origin
|
|
781
682
|
|
|
782
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
783
683
|
:type execution_context: int | str | None
|
|
784
684
|
:type undo: bool | None
|
|
785
685
|
"""
|
|
786
686
|
|
|
787
687
|
def snap_cursor_to_grid(
|
|
788
|
-
|
|
789
|
-
execution_context: int | str | None = None,
|
|
790
|
-
undo: bool | None = None,
|
|
688
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
791
689
|
):
|
|
792
690
|
"""Snap 3D cursor to the nearest grid division
|
|
793
691
|
|
|
794
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
795
692
|
:type execution_context: int | str | None
|
|
796
693
|
:type undo: bool | None
|
|
797
694
|
"""
|
|
798
695
|
|
|
799
696
|
def snap_cursor_to_selected(
|
|
800
|
-
|
|
801
|
-
execution_context: int | str | None = None,
|
|
802
|
-
undo: bool | None = None,
|
|
697
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
803
698
|
):
|
|
804
699
|
"""Snap 3D cursor to the middle of the selected item(s)
|
|
805
700
|
|
|
806
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
807
701
|
:type execution_context: int | str | None
|
|
808
702
|
:type undo: bool | None
|
|
809
703
|
"""
|
|
810
704
|
|
|
811
705
|
def snap_selected_to_active(
|
|
812
|
-
|
|
813
|
-
execution_context: int | str | None = None,
|
|
814
|
-
undo: bool | None = None,
|
|
706
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
815
707
|
):
|
|
816
708
|
"""Snap selected item(s) to the active item
|
|
817
709
|
|
|
818
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
819
710
|
:type execution_context: int | str | None
|
|
820
711
|
:type undo: bool | None
|
|
821
712
|
"""
|
|
822
713
|
|
|
823
714
|
def snap_selected_to_cursor(
|
|
824
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
825
715
|
execution_context: int | str | None = None,
|
|
826
716
|
undo: bool | None = None,
|
|
717
|
+
/,
|
|
827
718
|
*,
|
|
828
719
|
use_offset: bool | None = True,
|
|
829
720
|
):
|
|
830
721
|
"""Snap selected item(s) to the 3D cursor
|
|
831
722
|
|
|
832
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
833
723
|
:type execution_context: int | str | None
|
|
834
724
|
:type undo: bool | None
|
|
835
725
|
:param use_offset: Offset, If the selection should be snapped as a whole or by each object center
|
|
@@ -837,40 +727,33 @@ def snap_selected_to_cursor(
|
|
|
837
727
|
"""
|
|
838
728
|
|
|
839
729
|
def snap_selected_to_grid(
|
|
840
|
-
|
|
841
|
-
execution_context: int | str | None = None,
|
|
842
|
-
undo: bool | None = None,
|
|
730
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
843
731
|
):
|
|
844
732
|
"""Snap selected item(s) to their nearest grid division
|
|
845
733
|
|
|
846
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
847
734
|
:type execution_context: int | str | None
|
|
848
735
|
:type undo: bool | None
|
|
849
736
|
"""
|
|
850
737
|
|
|
851
738
|
def toggle_matcap_flip(
|
|
852
|
-
|
|
853
|
-
execution_context: int | str | None = None,
|
|
854
|
-
undo: bool | None = None,
|
|
739
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
855
740
|
):
|
|
856
741
|
"""Flip MatCap
|
|
857
742
|
|
|
858
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
859
743
|
:type execution_context: int | str | None
|
|
860
744
|
:type undo: bool | None
|
|
861
745
|
"""
|
|
862
746
|
|
|
863
747
|
def toggle_shading(
|
|
864
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
865
748
|
execution_context: int | str | None = None,
|
|
866
749
|
undo: bool | None = None,
|
|
750
|
+
/,
|
|
867
751
|
*,
|
|
868
752
|
type: typing.Literal["WIREFRAME", "SOLID", "MATERIAL", "RENDERED"]
|
|
869
753
|
| None = "WIREFRAME",
|
|
870
754
|
):
|
|
871
755
|
"""Toggle shading type in 3D viewport
|
|
872
756
|
|
|
873
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
874
757
|
:type execution_context: int | str | None
|
|
875
758
|
:type undo: bool | None
|
|
876
759
|
:param type: Type, Shading type to toggle
|
|
@@ -889,29 +772,23 @@ def toggle_shading(
|
|
|
889
772
|
:type type: typing.Literal['WIREFRAME','SOLID','MATERIAL','RENDERED'] | None
|
|
890
773
|
"""
|
|
891
774
|
|
|
892
|
-
def toggle_xray(
|
|
893
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
894
|
-
execution_context: int | str | None = None,
|
|
895
|
-
undo: bool | None = None,
|
|
896
|
-
):
|
|
775
|
+
def toggle_xray(execution_context: int | str | None = None, undo: bool | None = None):
|
|
897
776
|
"""Transparent scene display. Allow selecting through items
|
|
898
777
|
|
|
899
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
900
778
|
:type execution_context: int | str | None
|
|
901
779
|
:type undo: bool | None
|
|
902
780
|
"""
|
|
903
781
|
|
|
904
782
|
def transform_gizmo_set(
|
|
905
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
906
783
|
execution_context: int | str | None = None,
|
|
907
784
|
undo: bool | None = None,
|
|
785
|
+
/,
|
|
908
786
|
*,
|
|
909
787
|
extend: bool | None = False,
|
|
910
788
|
type: set[typing.Literal["TRANSLATE", "ROTATE", "SCALE"]] | None = {},
|
|
911
789
|
):
|
|
912
790
|
"""Set the current transform gizmo
|
|
913
791
|
|
|
914
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
915
792
|
:type execution_context: int | str | None
|
|
916
793
|
:type undo: bool | None
|
|
917
794
|
:param extend: Extend
|
|
@@ -921,16 +798,15 @@ def transform_gizmo_set(
|
|
|
921
798
|
"""
|
|
922
799
|
|
|
923
800
|
def view_all(
|
|
924
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
925
801
|
execution_context: int | str | None = None,
|
|
926
802
|
undo: bool | None = None,
|
|
803
|
+
/,
|
|
927
804
|
*,
|
|
928
805
|
use_all_regions: bool | None = False,
|
|
929
806
|
center: bool | None = False,
|
|
930
807
|
):
|
|
931
808
|
"""View all objects in scene
|
|
932
809
|
|
|
933
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
934
810
|
:type execution_context: int | str | None
|
|
935
811
|
:type undo: bool | None
|
|
936
812
|
:param use_all_regions: All Regions, View selected for all regions
|
|
@@ -940,9 +816,9 @@ def view_all(
|
|
|
940
816
|
"""
|
|
941
817
|
|
|
942
818
|
def view_axis(
|
|
943
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
944
819
|
execution_context: int | str | None = None,
|
|
945
820
|
undo: bool | None = None,
|
|
821
|
+
/,
|
|
946
822
|
*,
|
|
947
823
|
type: typing.Literal["LEFT", "RIGHT", "BOTTOM", "TOP", "FRONT", "BACK"]
|
|
948
824
|
| None = "LEFT",
|
|
@@ -951,7 +827,6 @@ def view_axis(
|
|
|
951
827
|
):
|
|
952
828
|
"""Use a preset viewpoint
|
|
953
829
|
|
|
954
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
955
830
|
:type execution_context: int | str | None
|
|
956
831
|
:type undo: bool | None
|
|
957
832
|
:param type: View, Preset viewpoint to use
|
|
@@ -980,94 +855,71 @@ def view_axis(
|
|
|
980
855
|
:type relative: bool | None
|
|
981
856
|
"""
|
|
982
857
|
|
|
983
|
-
def view_camera(
|
|
984
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
985
|
-
execution_context: int | str | None = None,
|
|
986
|
-
undo: bool | None = None,
|
|
987
|
-
):
|
|
858
|
+
def view_camera(execution_context: int | str | None = None, undo: bool | None = None):
|
|
988
859
|
"""Toggle the camera view
|
|
989
860
|
|
|
990
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
991
861
|
:type execution_context: int | str | None
|
|
992
862
|
:type undo: bool | None
|
|
993
863
|
"""
|
|
994
864
|
|
|
995
865
|
def view_center_camera(
|
|
996
|
-
|
|
997
|
-
execution_context: int | str | None = None,
|
|
998
|
-
undo: bool | None = None,
|
|
866
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
999
867
|
):
|
|
1000
868
|
"""Center the camera view, resizing the view to fit its bounds
|
|
1001
869
|
|
|
1002
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1003
870
|
:type execution_context: int | str | None
|
|
1004
871
|
:type undo: bool | None
|
|
1005
872
|
"""
|
|
1006
873
|
|
|
1007
874
|
def view_center_cursor(
|
|
1008
|
-
|
|
1009
|
-
execution_context: int | str | None = None,
|
|
1010
|
-
undo: bool | None = None,
|
|
875
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1011
876
|
):
|
|
1012
877
|
"""Center the view so that the cursor is in the middle of the view
|
|
1013
878
|
|
|
1014
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1015
879
|
:type execution_context: int | str | None
|
|
1016
880
|
:type undo: bool | None
|
|
1017
881
|
"""
|
|
1018
882
|
|
|
1019
883
|
def view_center_lock(
|
|
1020
|
-
|
|
1021
|
-
execution_context: int | str | None = None,
|
|
1022
|
-
undo: bool | None = None,
|
|
884
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1023
885
|
):
|
|
1024
886
|
"""Center the view lock offset
|
|
1025
887
|
|
|
1026
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1027
888
|
:type execution_context: int | str | None
|
|
1028
889
|
:type undo: bool | None
|
|
1029
890
|
"""
|
|
1030
891
|
|
|
1031
892
|
def view_center_pick(
|
|
1032
|
-
|
|
1033
|
-
execution_context: int | str | None = None,
|
|
1034
|
-
undo: bool | None = None,
|
|
893
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1035
894
|
):
|
|
1036
895
|
"""Center the view to the Z-depth position under the mouse cursor
|
|
1037
896
|
|
|
1038
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1039
897
|
:type execution_context: int | str | None
|
|
1040
898
|
:type undo: bool | None
|
|
1041
899
|
"""
|
|
1042
900
|
|
|
1043
901
|
def view_lock_clear(
|
|
1044
|
-
|
|
1045
|
-
execution_context: int | str | None = None,
|
|
1046
|
-
undo: bool | None = None,
|
|
902
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1047
903
|
):
|
|
1048
904
|
"""Clear all view locking
|
|
1049
905
|
|
|
1050
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1051
906
|
:type execution_context: int | str | None
|
|
1052
907
|
:type undo: bool | None
|
|
1053
908
|
"""
|
|
1054
909
|
|
|
1055
910
|
def view_lock_to_active(
|
|
1056
|
-
|
|
1057
|
-
execution_context: int | str | None = None,
|
|
1058
|
-
undo: bool | None = None,
|
|
911
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1059
912
|
):
|
|
1060
913
|
"""Lock the view to the active object/bone
|
|
1061
914
|
|
|
1062
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1063
915
|
:type execution_context: int | str | None
|
|
1064
916
|
:type undo: bool | None
|
|
1065
917
|
"""
|
|
1066
918
|
|
|
1067
919
|
def view_orbit(
|
|
1068
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1069
920
|
execution_context: int | str | None = None,
|
|
1070
921
|
undo: bool | None = None,
|
|
922
|
+
/,
|
|
1071
923
|
*,
|
|
1072
924
|
angle: float | None = 0.0,
|
|
1073
925
|
type: typing.Literal["ORBITLEFT", "ORBITRIGHT", "ORBITUP", "ORBITDOWN"]
|
|
@@ -1075,7 +927,6 @@ def view_orbit(
|
|
|
1075
927
|
):
|
|
1076
928
|
"""Orbit the view
|
|
1077
929
|
|
|
1078
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1079
930
|
:type execution_context: int | str | None
|
|
1080
931
|
:type undo: bool | None
|
|
1081
932
|
:param angle: Roll
|
|
@@ -1097,15 +948,14 @@ def view_orbit(
|
|
|
1097
948
|
"""
|
|
1098
949
|
|
|
1099
950
|
def view_pan(
|
|
1100
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1101
951
|
execution_context: int | str | None = None,
|
|
1102
952
|
undo: bool | None = None,
|
|
953
|
+
/,
|
|
1103
954
|
*,
|
|
1104
955
|
type: typing.Literal["PANLEFT", "PANRIGHT", "PANUP", "PANDOWN"] | None = "PANLEFT",
|
|
1105
956
|
):
|
|
1106
957
|
"""Pan the view in a given direction
|
|
1107
958
|
|
|
1108
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1109
959
|
:type execution_context: int | str | None
|
|
1110
960
|
:type undo: bool | None
|
|
1111
961
|
:param type: Pan, Direction of View Pan
|
|
@@ -1125,28 +975,24 @@ def view_pan(
|
|
|
1125
975
|
"""
|
|
1126
976
|
|
|
1127
977
|
def view_persportho(
|
|
1128
|
-
|
|
1129
|
-
execution_context: int | str | None = None,
|
|
1130
|
-
undo: bool | None = None,
|
|
978
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1131
979
|
):
|
|
1132
980
|
"""Switch the current view from perspective/orthographic projection
|
|
1133
981
|
|
|
1134
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1135
982
|
:type execution_context: int | str | None
|
|
1136
983
|
:type undo: bool | None
|
|
1137
984
|
"""
|
|
1138
985
|
|
|
1139
986
|
def view_roll(
|
|
1140
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1141
987
|
execution_context: int | str | None = None,
|
|
1142
988
|
undo: bool | None = None,
|
|
989
|
+
/,
|
|
1143
990
|
*,
|
|
1144
991
|
angle: float | None = 0.0,
|
|
1145
992
|
type: typing.Literal["ANGLE", "LEFT", "RIGHT"] | None = "ANGLE",
|
|
1146
993
|
):
|
|
1147
994
|
"""Roll the view
|
|
1148
995
|
|
|
1149
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1150
996
|
:type execution_context: int | str | None
|
|
1151
997
|
:type undo: bool | None
|
|
1152
998
|
:param angle: Roll
|
|
@@ -1165,37 +1011,31 @@ def view_roll(
|
|
|
1165
1011
|
"""
|
|
1166
1012
|
|
|
1167
1013
|
def view_selected(
|
|
1168
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1169
1014
|
execution_context: int | str | None = None,
|
|
1170
1015
|
undo: bool | None = None,
|
|
1016
|
+
/,
|
|
1171
1017
|
*,
|
|
1172
1018
|
use_all_regions: bool | None = False,
|
|
1173
1019
|
):
|
|
1174
1020
|
"""Move the view to the selection center
|
|
1175
1021
|
|
|
1176
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1177
1022
|
:type execution_context: int | str | None
|
|
1178
1023
|
:type undo: bool | None
|
|
1179
1024
|
:param use_all_regions: All Regions, View selected for all regions
|
|
1180
1025
|
:type use_all_regions: bool | None
|
|
1181
1026
|
"""
|
|
1182
1027
|
|
|
1183
|
-
def walk(
|
|
1184
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1185
|
-
execution_context: int | str | None = None,
|
|
1186
|
-
undo: bool | None = None,
|
|
1187
|
-
):
|
|
1028
|
+
def walk(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1188
1029
|
"""Interactively walk around the scene
|
|
1189
1030
|
|
|
1190
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1191
1031
|
:type execution_context: int | str | None
|
|
1192
1032
|
:type undo: bool | None
|
|
1193
1033
|
"""
|
|
1194
1034
|
|
|
1195
1035
|
def zoom(
|
|
1196
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1197
1036
|
execution_context: int | str | None = None,
|
|
1198
1037
|
undo: bool | None = None,
|
|
1038
|
+
/,
|
|
1199
1039
|
*,
|
|
1200
1040
|
mx: int | None = 0,
|
|
1201
1041
|
my: int | None = 0,
|
|
@@ -1204,7 +1044,6 @@ def zoom(
|
|
|
1204
1044
|
):
|
|
1205
1045
|
"""Zoom in/out in the view
|
|
1206
1046
|
|
|
1207
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1208
1047
|
:type execution_context: int | str | None
|
|
1209
1048
|
:type undo: bool | None
|
|
1210
1049
|
:param mx: Region Position X
|
|
@@ -1218,9 +1057,9 @@ def zoom(
|
|
|
1218
1057
|
"""
|
|
1219
1058
|
|
|
1220
1059
|
def zoom_border(
|
|
1221
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1222
1060
|
execution_context: int | str | None = None,
|
|
1223
1061
|
undo: bool | None = None,
|
|
1062
|
+
/,
|
|
1224
1063
|
*,
|
|
1225
1064
|
xmin: int | None = 0,
|
|
1226
1065
|
xmax: int | None = 0,
|
|
@@ -1231,7 +1070,6 @@ def zoom_border(
|
|
|
1231
1070
|
):
|
|
1232
1071
|
"""Zoom in the view to the nearest object contained in the border
|
|
1233
1072
|
|
|
1234
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1235
1073
|
:type execution_context: int | str | None
|
|
1236
1074
|
:type undo: bool | None
|
|
1237
1075
|
:param xmin: X Min
|
|
@@ -1249,13 +1087,10 @@ def zoom_border(
|
|
|
1249
1087
|
"""
|
|
1250
1088
|
|
|
1251
1089
|
def zoom_camera_1_to_1(
|
|
1252
|
-
|
|
1253
|
-
execution_context: int | str | None = None,
|
|
1254
|
-
undo: bool | None = None,
|
|
1090
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1255
1091
|
):
|
|
1256
1092
|
"""Match the camera to 1:1 to the render output
|
|
1257
1093
|
|
|
1258
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1259
1094
|
:type execution_context: int | str | None
|
|
1260
1095
|
:type undo: bool | None
|
|
1261
1096
|
"""
|