fake-bpy-module 20240811__py3-none-any.whl → 20240813__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.
- bl_ui/space_view3d/__init__.pyi +31 -0
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +110 -110
- bpy/ops/armature/__init__.pyi +96 -96
- bpy/ops/asset/__init__.pyi +32 -32
- bpy/ops/boid/__init__.pyi +16 -16
- bpy/ops/brush/__init__.pyi +26 -26
- bpy/ops/buttons/__init__.pyi +12 -12
- bpy/ops/cachefile/__init__.pyi +10 -10
- bpy/ops/camera/__init__.pyi +4 -4
- bpy/ops/clip/__init__.pyi +184 -184
- bpy/ops/cloth/__init__.pyi +2 -2
- bpy/ops/collection/__init__.pyi +18 -18
- bpy/ops/console/__init__.pyi +42 -42
- bpy/ops/constraint/__init__.pyi +36 -36
- bpy/ops/curve/__init__.pyi +102 -102
- bpy/ops/curves/__init__.pyi +54 -54
- bpy/ops/cycles/__init__.pyi +6 -6
- bpy/ops/dpaint/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +24 -24
- bpy/ops/export_anim/__init__.pyi +2 -2
- bpy/ops/export_scene/__init__.pyi +4 -4
- bpy/ops/extensions/__init__.pyi +68 -68
- bpy/ops/file/__init__.pyi +80 -80
- bpy/ops/fluid/__init__.pyi +28 -28
- bpy/ops/font/__init__.pyi +46 -46
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +4 -4
- bpy/ops/gpencil/__init__.pyi +284 -284
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +166 -166
- bpy/ops/image/__init__.pyi +98 -98
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +4 -4
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +16 -16
- bpy/ops/marker/__init__.pyi +22 -22
- bpy/ops/mask/__init__.pyi +78 -78
- bpy/ops/material/__init__.pyi +6 -6
- bpy/ops/mball/__init__.pyi +16 -16
- bpy/ops/mesh/__init__.pyi +326 -326
- bpy/ops/nla/__init__.pyi +78 -78
- bpy/ops/node/__init__.pyi +208 -208
- bpy/ops/object/__init__.pyi +473 -473
- bpy/ops/outliner/__init__.pyi +142 -142
- bpy/ops/paint/__init__.pyi +108 -108
- bpy/ops/paintcurve/__init__.pyi +16 -16
- bpy/ops/palette/__init__.pyi +14 -14
- bpy/ops/particle/__init__.pyi +72 -72
- bpy/ops/pose/__init__.pyi +102 -102
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +70 -70
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +26 -26
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +74 -74
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +72 -72
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +174 -174
- bpy/ops/sound/__init__.pyi +14 -14
- bpy/ops/spreadsheet/__init__.pyi +8 -8
- bpy/ops/surface/__init__.pyi +12 -12
- bpy/ops/text/__init__.pyi +86 -86
- bpy/ops/text_editor/__init__.pyi +2 -2
- bpy/ops/texture/__init__.pyi +8 -8
- bpy/ops/transform/__init__.pyi +54 -54
- bpy/ops/ui/__init__.pyi +64 -64
- bpy/ops/uilist/__init__.pyi +6 -6
- bpy/ops/uv/__init__.pyi +98 -98
- bpy/ops/view2d/__init__.pyi +28 -28
- bpy/ops/view3d/__init__.pyi +134 -134
- bpy/ops/wm/__init__.pyi +226 -226
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +76 -64
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240813.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240813.dist-info}/RECORD +83 -83
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240813.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240813.dist-info}/top_level.txt +0 -0
bpy/ops/view3d/__init__.pyi
CHANGED
|
@@ -7,7 +7,7 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
def bone_select_menu(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
10
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
*,
|
|
@@ -18,7 +18,7 @@ def bone_select_menu(
|
|
|
18
18
|
):
|
|
19
19
|
"""Menu bone selection
|
|
20
20
|
|
|
21
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
21
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
22
22
|
:type execution_context: int | str | None
|
|
23
23
|
:type undo: bool | None
|
|
24
24
|
:param name: Bone Name
|
|
@@ -34,7 +34,7 @@ def bone_select_menu(
|
|
|
34
34
|
...
|
|
35
35
|
|
|
36
36
|
def camera_background_image_add(
|
|
37
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
37
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
38
38
|
execution_context: int | str | None = None,
|
|
39
39
|
undo: bool | None = None,
|
|
40
40
|
*,
|
|
@@ -45,7 +45,7 @@ def camera_background_image_add(
|
|
|
45
45
|
):
|
|
46
46
|
"""Add a new background image to the active camera
|
|
47
47
|
|
|
48
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
48
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
49
49
|
:type execution_context: int | str | None
|
|
50
50
|
:type undo: bool | None
|
|
51
51
|
:param filepath: Filepath, Path to image file
|
|
@@ -61,7 +61,7 @@ def camera_background_image_add(
|
|
|
61
61
|
...
|
|
62
62
|
|
|
63
63
|
def camera_background_image_remove(
|
|
64
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
64
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
65
65
|
execution_context: int | str | None = None,
|
|
66
66
|
undo: bool | None = None,
|
|
67
67
|
*,
|
|
@@ -69,7 +69,7 @@ def camera_background_image_remove(
|
|
|
69
69
|
):
|
|
70
70
|
"""Remove a background image from the camera
|
|
71
71
|
|
|
72
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
72
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
73
73
|
:type execution_context: int | str | None
|
|
74
74
|
:type undo: bool | None
|
|
75
75
|
:param index: Index, Background image index to remove
|
|
@@ -79,13 +79,13 @@ def camera_background_image_remove(
|
|
|
79
79
|
...
|
|
80
80
|
|
|
81
81
|
def camera_to_view(
|
|
82
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
82
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
83
83
|
execution_context: int | str | None = None,
|
|
84
84
|
undo: bool | None = None,
|
|
85
85
|
):
|
|
86
86
|
"""Set camera view to active view
|
|
87
87
|
|
|
88
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
88
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
89
89
|
:type execution_context: int | str | None
|
|
90
90
|
:type undo: bool | None
|
|
91
91
|
"""
|
|
@@ -93,13 +93,13 @@ def camera_to_view(
|
|
|
93
93
|
...
|
|
94
94
|
|
|
95
95
|
def camera_to_view_selected(
|
|
96
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
96
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
97
97
|
execution_context: int | str | None = None,
|
|
98
98
|
undo: bool | None = None,
|
|
99
99
|
):
|
|
100
100
|
"""Move the camera so selected objects are framed
|
|
101
101
|
|
|
102
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
102
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
103
103
|
:type execution_context: int | str | None
|
|
104
104
|
:type undo: bool | None
|
|
105
105
|
"""
|
|
@@ -107,13 +107,13 @@ def camera_to_view_selected(
|
|
|
107
107
|
...
|
|
108
108
|
|
|
109
109
|
def clear_render_border(
|
|
110
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
110
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
111
111
|
execution_context: int | str | None = None,
|
|
112
112
|
undo: bool | None = None,
|
|
113
113
|
):
|
|
114
114
|
"""Clear the boundaries of the border render and disable border render
|
|
115
115
|
|
|
116
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
116
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
117
117
|
:type execution_context: int | str | None
|
|
118
118
|
:type undo: bool | None
|
|
119
119
|
"""
|
|
@@ -121,7 +121,7 @@ def clear_render_border(
|
|
|
121
121
|
...
|
|
122
122
|
|
|
123
123
|
def clip_border(
|
|
124
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
124
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
125
125
|
execution_context: int | str | None = None,
|
|
126
126
|
undo: bool | None = None,
|
|
127
127
|
*,
|
|
@@ -133,7 +133,7 @@ def clip_border(
|
|
|
133
133
|
):
|
|
134
134
|
"""Set the view clipping region
|
|
135
135
|
|
|
136
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
136
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
137
137
|
:type execution_context: int | str | None
|
|
138
138
|
:type undo: bool | None
|
|
139
139
|
:param xmin: X Min
|
|
@@ -151,13 +151,13 @@ def clip_border(
|
|
|
151
151
|
...
|
|
152
152
|
|
|
153
153
|
def copybuffer(
|
|
154
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
154
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
155
155
|
execution_context: int | str | None = None,
|
|
156
156
|
undo: bool | None = None,
|
|
157
157
|
):
|
|
158
158
|
"""Copy the selected objects to the internal clipboard
|
|
159
159
|
|
|
160
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
160
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
161
161
|
:type execution_context: int | str | None
|
|
162
162
|
:type undo: bool | None
|
|
163
163
|
"""
|
|
@@ -165,7 +165,7 @@ def copybuffer(
|
|
|
165
165
|
...
|
|
166
166
|
|
|
167
167
|
def cursor3d(
|
|
168
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
168
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
169
169
|
execution_context: int | str | None = None,
|
|
170
170
|
undo: bool | None = None,
|
|
171
171
|
*,
|
|
@@ -174,7 +174,7 @@ def cursor3d(
|
|
|
174
174
|
):
|
|
175
175
|
"""Set the location of the 3D cursor
|
|
176
176
|
|
|
177
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
177
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
178
178
|
:type execution_context: int | str | None
|
|
179
179
|
:type undo: bool | None
|
|
180
180
|
:param use_depth: Surface Project, Project onto the surface
|
|
@@ -198,7 +198,7 @@ def cursor3d(
|
|
|
198
198
|
...
|
|
199
199
|
|
|
200
200
|
def dolly(
|
|
201
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
201
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
202
202
|
execution_context: int | str | None = None,
|
|
203
203
|
undo: bool | None = None,
|
|
204
204
|
*,
|
|
@@ -209,7 +209,7 @@ def dolly(
|
|
|
209
209
|
):
|
|
210
210
|
"""Dolly in/out in the view
|
|
211
211
|
|
|
212
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
212
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
213
213
|
:type execution_context: int | str | None
|
|
214
214
|
:type undo: bool | None
|
|
215
215
|
:param mx: Region Position X
|
|
@@ -225,7 +225,7 @@ def dolly(
|
|
|
225
225
|
...
|
|
226
226
|
|
|
227
227
|
def drop_world(
|
|
228
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
228
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
229
229
|
execution_context: int | str | None = None,
|
|
230
230
|
undo: bool | None = None,
|
|
231
231
|
*,
|
|
@@ -234,7 +234,7 @@ def drop_world(
|
|
|
234
234
|
):
|
|
235
235
|
"""Drop a world into the scene
|
|
236
236
|
|
|
237
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
237
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
238
238
|
:type execution_context: int | str | None
|
|
239
239
|
:type undo: bool | None
|
|
240
240
|
:param name: Name, Name of the data-block to use by the operator
|
|
@@ -246,13 +246,13 @@ def drop_world(
|
|
|
246
246
|
...
|
|
247
247
|
|
|
248
248
|
def edit_mesh_extrude_individual_move(
|
|
249
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
249
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
250
250
|
execution_context: int | str | None = None,
|
|
251
251
|
undo: bool | None = None,
|
|
252
252
|
):
|
|
253
253
|
"""Extrude each individual face separately along local normals
|
|
254
254
|
|
|
255
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
255
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
256
256
|
:type execution_context: int | str | None
|
|
257
257
|
:type undo: bool | None
|
|
258
258
|
"""
|
|
@@ -260,13 +260,13 @@ def edit_mesh_extrude_individual_move(
|
|
|
260
260
|
...
|
|
261
261
|
|
|
262
262
|
def edit_mesh_extrude_manifold_normal(
|
|
263
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
263
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
264
264
|
execution_context: int | str | None = None,
|
|
265
265
|
undo: bool | None = None,
|
|
266
266
|
):
|
|
267
267
|
"""Extrude manifold region along normals
|
|
268
268
|
|
|
269
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
269
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
270
270
|
:type execution_context: int | str | None
|
|
271
271
|
:type undo: bool | None
|
|
272
272
|
"""
|
|
@@ -274,7 +274,7 @@ def edit_mesh_extrude_manifold_normal(
|
|
|
274
274
|
...
|
|
275
275
|
|
|
276
276
|
def edit_mesh_extrude_move_normal(
|
|
277
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
277
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
278
278
|
execution_context: int | str | None = None,
|
|
279
279
|
undo: bool | None = None,
|
|
280
280
|
*,
|
|
@@ -282,7 +282,7 @@ def edit_mesh_extrude_move_normal(
|
|
|
282
282
|
):
|
|
283
283
|
"""Extrude region together along the average normal
|
|
284
284
|
|
|
285
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
285
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
286
286
|
:type execution_context: int | str | None
|
|
287
287
|
:type undo: bool | None
|
|
288
288
|
:param dissolve_and_intersect: dissolve_and_intersect, Dissolves adjacent faces and intersects new geometry
|
|
@@ -292,13 +292,13 @@ def edit_mesh_extrude_move_normal(
|
|
|
292
292
|
...
|
|
293
293
|
|
|
294
294
|
def edit_mesh_extrude_move_shrink_fatten(
|
|
295
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
295
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
296
296
|
execution_context: int | str | None = None,
|
|
297
297
|
undo: bool | None = None,
|
|
298
298
|
):
|
|
299
299
|
"""Extrude region together along local normals
|
|
300
300
|
|
|
301
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
301
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
302
302
|
:type execution_context: int | str | None
|
|
303
303
|
:type undo: bool | None
|
|
304
304
|
"""
|
|
@@ -306,13 +306,13 @@ def edit_mesh_extrude_move_shrink_fatten(
|
|
|
306
306
|
...
|
|
307
307
|
|
|
308
308
|
def fly(
|
|
309
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
309
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
310
310
|
execution_context: int | str | None = None,
|
|
311
311
|
undo: bool | None = None,
|
|
312
312
|
):
|
|
313
313
|
"""Interactively fly around the scene
|
|
314
314
|
|
|
315
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
315
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
316
316
|
:type execution_context: int | str | None
|
|
317
317
|
:type undo: bool | None
|
|
318
318
|
"""
|
|
@@ -320,7 +320,7 @@ def fly(
|
|
|
320
320
|
...
|
|
321
321
|
|
|
322
322
|
def interactive_add(
|
|
323
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
323
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
324
324
|
execution_context: int | str | None = None,
|
|
325
325
|
undo: bool | None = None,
|
|
326
326
|
*,
|
|
@@ -336,7 +336,7 @@ def interactive_add(
|
|
|
336
336
|
):
|
|
337
337
|
"""Interactively add an object
|
|
338
338
|
|
|
339
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
339
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
340
340
|
:type execution_context: int | str | None
|
|
341
341
|
:type undo: bool | None
|
|
342
342
|
:param primitive_type: Primitive
|
|
@@ -380,7 +380,7 @@ def interactive_add(
|
|
|
380
380
|
...
|
|
381
381
|
|
|
382
382
|
def localview(
|
|
383
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
383
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
384
384
|
execution_context: int | str | None = None,
|
|
385
385
|
undo: bool | None = None,
|
|
386
386
|
*,
|
|
@@ -388,7 +388,7 @@ def localview(
|
|
|
388
388
|
):
|
|
389
389
|
"""Toggle display of selected object(s) separately and centered in view
|
|
390
390
|
|
|
391
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
391
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
392
392
|
:type execution_context: int | str | None
|
|
393
393
|
:type undo: bool | None
|
|
394
394
|
:param frame_selected: Frame Selected, Move the view to frame the selected objects
|
|
@@ -398,13 +398,13 @@ def localview(
|
|
|
398
398
|
...
|
|
399
399
|
|
|
400
400
|
def localview_remove_from(
|
|
401
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
401
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
402
402
|
execution_context: int | str | None = None,
|
|
403
403
|
undo: bool | None = None,
|
|
404
404
|
):
|
|
405
405
|
"""Move selected objects out of local view
|
|
406
406
|
|
|
407
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
407
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
408
408
|
:type execution_context: int | str | None
|
|
409
409
|
:type undo: bool | None
|
|
410
410
|
"""
|
|
@@ -412,7 +412,7 @@ def localview_remove_from(
|
|
|
412
412
|
...
|
|
413
413
|
|
|
414
414
|
def move(
|
|
415
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
415
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
416
416
|
execution_context: int | str | None = None,
|
|
417
417
|
undo: bool | None = None,
|
|
418
418
|
*,
|
|
@@ -420,7 +420,7 @@ def move(
|
|
|
420
420
|
):
|
|
421
421
|
"""Move the view
|
|
422
422
|
|
|
423
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
423
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
424
424
|
:type execution_context: int | str | None
|
|
425
425
|
:type undo: bool | None
|
|
426
426
|
:param use_cursor_init: Use Mouse Position, Allow the initial mouse position to be used
|
|
@@ -430,13 +430,13 @@ def move(
|
|
|
430
430
|
...
|
|
431
431
|
|
|
432
432
|
def navigate(
|
|
433
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
433
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
434
434
|
execution_context: int | str | None = None,
|
|
435
435
|
undo: bool | None = None,
|
|
436
436
|
):
|
|
437
437
|
"""Interactively navigate around the scene (uses the mode (walk/fly) preference)
|
|
438
438
|
|
|
439
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
439
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
440
440
|
:type execution_context: int | str | None
|
|
441
441
|
:type undo: bool | None
|
|
442
442
|
"""
|
|
@@ -444,13 +444,13 @@ def navigate(
|
|
|
444
444
|
...
|
|
445
445
|
|
|
446
446
|
def ndof_all(
|
|
447
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
447
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
448
448
|
execution_context: int | str | None = None,
|
|
449
449
|
undo: bool | None = None,
|
|
450
450
|
):
|
|
451
451
|
"""Pan and rotate the view with the 3D mouse
|
|
452
452
|
|
|
453
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
453
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
454
454
|
:type execution_context: int | str | None
|
|
455
455
|
:type undo: bool | None
|
|
456
456
|
"""
|
|
@@ -458,13 +458,13 @@ def ndof_all(
|
|
|
458
458
|
...
|
|
459
459
|
|
|
460
460
|
def ndof_orbit(
|
|
461
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
461
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
462
462
|
execution_context: int | str | None = None,
|
|
463
463
|
undo: bool | None = None,
|
|
464
464
|
):
|
|
465
465
|
"""Orbit the view using the 3D mouse
|
|
466
466
|
|
|
467
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
467
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
468
468
|
:type execution_context: int | str | None
|
|
469
469
|
:type undo: bool | None
|
|
470
470
|
"""
|
|
@@ -472,13 +472,13 @@ def ndof_orbit(
|
|
|
472
472
|
...
|
|
473
473
|
|
|
474
474
|
def ndof_orbit_zoom(
|
|
475
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
475
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
476
476
|
execution_context: int | str | None = None,
|
|
477
477
|
undo: bool | None = None,
|
|
478
478
|
):
|
|
479
479
|
"""Orbit and zoom the view using the 3D mouse
|
|
480
480
|
|
|
481
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
481
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
482
482
|
:type execution_context: int | str | None
|
|
483
483
|
:type undo: bool | None
|
|
484
484
|
"""
|
|
@@ -486,13 +486,13 @@ def ndof_orbit_zoom(
|
|
|
486
486
|
...
|
|
487
487
|
|
|
488
488
|
def ndof_pan(
|
|
489
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
489
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
490
490
|
execution_context: int | str | None = None,
|
|
491
491
|
undo: bool | None = None,
|
|
492
492
|
):
|
|
493
493
|
"""Pan the view with the 3D mouse
|
|
494
494
|
|
|
495
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
495
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
496
496
|
:type execution_context: int | str | None
|
|
497
497
|
:type undo: bool | None
|
|
498
498
|
"""
|
|
@@ -500,13 +500,13 @@ def ndof_pan(
|
|
|
500
500
|
...
|
|
501
501
|
|
|
502
502
|
def object_as_camera(
|
|
503
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
503
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
504
504
|
execution_context: int | str | None = None,
|
|
505
505
|
undo: bool | None = None,
|
|
506
506
|
):
|
|
507
507
|
"""Set the active object as the active camera for this view or scene
|
|
508
508
|
|
|
509
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
509
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
510
510
|
:type execution_context: int | str | None
|
|
511
511
|
:type undo: bool | None
|
|
512
512
|
"""
|
|
@@ -514,13 +514,13 @@ def object_as_camera(
|
|
|
514
514
|
...
|
|
515
515
|
|
|
516
516
|
def object_mode_pie_or_toggle(
|
|
517
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
517
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
518
518
|
execution_context: int | str | None = None,
|
|
519
519
|
undo: bool | None = None,
|
|
520
520
|
):
|
|
521
521
|
"""Undocumented, consider contributing.
|
|
522
522
|
|
|
523
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
523
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
524
524
|
:type execution_context: int | str | None
|
|
525
525
|
:type undo: bool | None
|
|
526
526
|
"""
|
|
@@ -528,7 +528,7 @@ def object_mode_pie_or_toggle(
|
|
|
528
528
|
...
|
|
529
529
|
|
|
530
530
|
def pastebuffer(
|
|
531
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
531
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
532
532
|
execution_context: int | str | None = None,
|
|
533
533
|
undo: bool | None = None,
|
|
534
534
|
*,
|
|
@@ -537,7 +537,7 @@ def pastebuffer(
|
|
|
537
537
|
):
|
|
538
538
|
"""Paste objects from the internal clipboard
|
|
539
539
|
|
|
540
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
540
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
541
541
|
:type execution_context: int | str | None
|
|
542
542
|
:type undo: bool | None
|
|
543
543
|
:param autoselect: Select, Select pasted objects
|
|
@@ -549,7 +549,7 @@ def pastebuffer(
|
|
|
549
549
|
...
|
|
550
550
|
|
|
551
551
|
def render_border(
|
|
552
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
552
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
553
553
|
execution_context: int | str | None = None,
|
|
554
554
|
undo: bool | None = None,
|
|
555
555
|
*,
|
|
@@ -561,7 +561,7 @@ def render_border(
|
|
|
561
561
|
):
|
|
562
562
|
"""Set the boundaries of the border render and enable border render
|
|
563
563
|
|
|
564
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
564
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
565
565
|
:type execution_context: int | str | None
|
|
566
566
|
:type undo: bool | None
|
|
567
567
|
:param xmin: X Min
|
|
@@ -579,7 +579,7 @@ def render_border(
|
|
|
579
579
|
...
|
|
580
580
|
|
|
581
581
|
def rotate(
|
|
582
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
582
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
583
583
|
execution_context: int | str | None = None,
|
|
584
584
|
undo: bool | None = None,
|
|
585
585
|
*,
|
|
@@ -587,7 +587,7 @@ def rotate(
|
|
|
587
587
|
):
|
|
588
588
|
"""Rotate the view
|
|
589
589
|
|
|
590
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
590
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
591
591
|
:type execution_context: int | str | None
|
|
592
592
|
:type undo: bool | None
|
|
593
593
|
:param use_cursor_init: Use Mouse Position, Allow the initial mouse position to be used
|
|
@@ -597,13 +597,13 @@ def rotate(
|
|
|
597
597
|
...
|
|
598
598
|
|
|
599
599
|
def ruler_add(
|
|
600
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
600
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
601
601
|
execution_context: int | str | None = None,
|
|
602
602
|
undo: bool | None = None,
|
|
603
603
|
):
|
|
604
604
|
"""Add ruler
|
|
605
605
|
|
|
606
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
606
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
607
607
|
:type execution_context: int | str | None
|
|
608
608
|
:type undo: bool | None
|
|
609
609
|
"""
|
|
@@ -611,13 +611,13 @@ def ruler_add(
|
|
|
611
611
|
...
|
|
612
612
|
|
|
613
613
|
def ruler_remove(
|
|
614
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
614
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
615
615
|
execution_context: int | str | None = None,
|
|
616
616
|
undo: bool | None = None,
|
|
617
617
|
):
|
|
618
618
|
"""Undocumented, consider contributing.
|
|
619
619
|
|
|
620
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
620
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
621
621
|
:type execution_context: int | str | None
|
|
622
622
|
:type undo: bool | None
|
|
623
623
|
"""
|
|
@@ -625,7 +625,7 @@ def ruler_remove(
|
|
|
625
625
|
...
|
|
626
626
|
|
|
627
627
|
def select(
|
|
628
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
628
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
629
629
|
execution_context: int | str | None = None,
|
|
630
630
|
undo: bool | None = None,
|
|
631
631
|
*,
|
|
@@ -641,7 +641,7 @@ def select(
|
|
|
641
641
|
):
|
|
642
642
|
"""Select and activate item(s)
|
|
643
643
|
|
|
644
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
644
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
645
645
|
:type execution_context: int | str | None
|
|
646
646
|
:type undo: bool | None
|
|
647
647
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -667,7 +667,7 @@ def select(
|
|
|
667
667
|
...
|
|
668
668
|
|
|
669
669
|
def select_box(
|
|
670
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
670
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
671
671
|
execution_context: int | str | None = None,
|
|
672
672
|
undo: bool | None = None,
|
|
673
673
|
*,
|
|
@@ -680,7 +680,7 @@ def select_box(
|
|
|
680
680
|
):
|
|
681
681
|
"""Select items using box selection
|
|
682
682
|
|
|
683
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
683
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
684
684
|
:type execution_context: int | str | None
|
|
685
685
|
:type undo: bool | None
|
|
686
686
|
:param xmin: X Min
|
|
@@ -715,7 +715,7 @@ def select_box(
|
|
|
715
715
|
...
|
|
716
716
|
|
|
717
717
|
def select_circle(
|
|
718
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
718
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
719
719
|
execution_context: int | str | None = None,
|
|
720
720
|
undo: bool | None = None,
|
|
721
721
|
*,
|
|
@@ -727,7 +727,7 @@ def select_circle(
|
|
|
727
727
|
):
|
|
728
728
|
"""Select items using circle selection
|
|
729
729
|
|
|
730
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
730
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
731
731
|
:type execution_context: int | str | None
|
|
732
732
|
:type undo: bool | None
|
|
733
733
|
:param x: X
|
|
@@ -754,7 +754,7 @@ def select_circle(
|
|
|
754
754
|
...
|
|
755
755
|
|
|
756
756
|
def select_lasso(
|
|
757
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
757
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
758
758
|
execution_context: int | str | None = None,
|
|
759
759
|
undo: bool | None = None,
|
|
760
760
|
*,
|
|
@@ -766,7 +766,7 @@ def select_lasso(
|
|
|
766
766
|
):
|
|
767
767
|
"""Select items using lasso selection
|
|
768
768
|
|
|
769
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
769
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
770
770
|
:type execution_context: int | str | None
|
|
771
771
|
:type undo: bool | None
|
|
772
772
|
:param path: Path
|
|
@@ -799,7 +799,7 @@ def select_lasso(
|
|
|
799
799
|
...
|
|
800
800
|
|
|
801
801
|
def select_menu(
|
|
802
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
802
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
803
803
|
execution_context: int | str | None = None,
|
|
804
804
|
undo: bool | None = None,
|
|
805
805
|
*,
|
|
@@ -810,7 +810,7 @@ def select_menu(
|
|
|
810
810
|
):
|
|
811
811
|
"""Menu object selection
|
|
812
812
|
|
|
813
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
813
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
814
814
|
:type execution_context: int | str | None
|
|
815
815
|
:type undo: bool | None
|
|
816
816
|
:param name: Object Name
|
|
@@ -826,13 +826,13 @@ def select_menu(
|
|
|
826
826
|
...
|
|
827
827
|
|
|
828
828
|
def smoothview(
|
|
829
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
829
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
830
830
|
execution_context: int | str | None = None,
|
|
831
831
|
undo: bool | None = None,
|
|
832
832
|
):
|
|
833
833
|
"""Undocumented, consider contributing.
|
|
834
834
|
|
|
835
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
835
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
836
836
|
:type execution_context: int | str | None
|
|
837
837
|
:type undo: bool | None
|
|
838
838
|
"""
|
|
@@ -840,13 +840,13 @@ def smoothview(
|
|
|
840
840
|
...
|
|
841
841
|
|
|
842
842
|
def snap_cursor_to_active(
|
|
843
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
843
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
844
844
|
execution_context: int | str | None = None,
|
|
845
845
|
undo: bool | None = None,
|
|
846
846
|
):
|
|
847
847
|
"""Snap 3D cursor to the active item
|
|
848
848
|
|
|
849
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
849
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
850
850
|
:type execution_context: int | str | None
|
|
851
851
|
:type undo: bool | None
|
|
852
852
|
"""
|
|
@@ -854,13 +854,13 @@ def snap_cursor_to_active(
|
|
|
854
854
|
...
|
|
855
855
|
|
|
856
856
|
def snap_cursor_to_center(
|
|
857
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
857
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
858
858
|
execution_context: int | str | None = None,
|
|
859
859
|
undo: bool | None = None,
|
|
860
860
|
):
|
|
861
861
|
"""Snap 3D cursor to the world origin
|
|
862
862
|
|
|
863
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
863
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
864
864
|
:type execution_context: int | str | None
|
|
865
865
|
:type undo: bool | None
|
|
866
866
|
"""
|
|
@@ -868,13 +868,13 @@ def snap_cursor_to_center(
|
|
|
868
868
|
...
|
|
869
869
|
|
|
870
870
|
def snap_cursor_to_grid(
|
|
871
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
871
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
872
872
|
execution_context: int | str | None = None,
|
|
873
873
|
undo: bool | None = None,
|
|
874
874
|
):
|
|
875
875
|
"""Snap 3D cursor to the nearest grid division
|
|
876
876
|
|
|
877
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
877
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
878
878
|
:type execution_context: int | str | None
|
|
879
879
|
:type undo: bool | None
|
|
880
880
|
"""
|
|
@@ -882,13 +882,13 @@ def snap_cursor_to_grid(
|
|
|
882
882
|
...
|
|
883
883
|
|
|
884
884
|
def snap_cursor_to_selected(
|
|
885
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
885
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
886
886
|
execution_context: int | str | None = None,
|
|
887
887
|
undo: bool | None = None,
|
|
888
888
|
):
|
|
889
889
|
"""Snap 3D cursor to the middle of the selected item(s)
|
|
890
890
|
|
|
891
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
891
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
892
892
|
:type execution_context: int | str | None
|
|
893
893
|
:type undo: bool | None
|
|
894
894
|
"""
|
|
@@ -896,13 +896,13 @@ def snap_cursor_to_selected(
|
|
|
896
896
|
...
|
|
897
897
|
|
|
898
898
|
def snap_selected_to_active(
|
|
899
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
899
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
900
900
|
execution_context: int | str | None = None,
|
|
901
901
|
undo: bool | None = None,
|
|
902
902
|
):
|
|
903
903
|
"""Snap selected item(s) to the active item
|
|
904
904
|
|
|
905
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
905
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
906
906
|
:type execution_context: int | str | None
|
|
907
907
|
:type undo: bool | None
|
|
908
908
|
"""
|
|
@@ -910,7 +910,7 @@ def snap_selected_to_active(
|
|
|
910
910
|
...
|
|
911
911
|
|
|
912
912
|
def snap_selected_to_cursor(
|
|
913
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
913
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
914
914
|
execution_context: int | str | None = None,
|
|
915
915
|
undo: bool | None = None,
|
|
916
916
|
*,
|
|
@@ -918,7 +918,7 @@ def snap_selected_to_cursor(
|
|
|
918
918
|
):
|
|
919
919
|
"""Snap selected item(s) to the 3D cursor
|
|
920
920
|
|
|
921
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
921
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
922
922
|
:type execution_context: int | str | None
|
|
923
923
|
:type undo: bool | None
|
|
924
924
|
:param use_offset: Offset, If the selection should be snapped as a whole or by each object center
|
|
@@ -928,13 +928,13 @@ def snap_selected_to_cursor(
|
|
|
928
928
|
...
|
|
929
929
|
|
|
930
930
|
def snap_selected_to_grid(
|
|
931
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
931
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
932
932
|
execution_context: int | str | None = None,
|
|
933
933
|
undo: bool | None = None,
|
|
934
934
|
):
|
|
935
935
|
"""Snap selected item(s) to their nearest grid division
|
|
936
936
|
|
|
937
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
937
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
938
938
|
:type execution_context: int | str | None
|
|
939
939
|
:type undo: bool | None
|
|
940
940
|
"""
|
|
@@ -942,13 +942,13 @@ def snap_selected_to_grid(
|
|
|
942
942
|
...
|
|
943
943
|
|
|
944
944
|
def toggle_matcap_flip(
|
|
945
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
945
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
946
946
|
execution_context: int | str | None = None,
|
|
947
947
|
undo: bool | None = None,
|
|
948
948
|
):
|
|
949
949
|
"""Flip MatCap
|
|
950
950
|
|
|
951
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
951
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
952
952
|
:type execution_context: int | str | None
|
|
953
953
|
:type undo: bool | None
|
|
954
954
|
"""
|
|
@@ -956,7 +956,7 @@ def toggle_matcap_flip(
|
|
|
956
956
|
...
|
|
957
957
|
|
|
958
958
|
def toggle_shading(
|
|
959
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
959
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
960
960
|
execution_context: int | str | None = None,
|
|
961
961
|
undo: bool | None = None,
|
|
962
962
|
*,
|
|
@@ -965,7 +965,7 @@ def toggle_shading(
|
|
|
965
965
|
):
|
|
966
966
|
"""Toggle shading type in 3D viewport
|
|
967
967
|
|
|
968
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
968
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
969
969
|
:type execution_context: int | str | None
|
|
970
970
|
:type undo: bool | None
|
|
971
971
|
:param type: Type, Shading type to toggle
|
|
@@ -987,13 +987,13 @@ def toggle_shading(
|
|
|
987
987
|
...
|
|
988
988
|
|
|
989
989
|
def toggle_xray(
|
|
990
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
990
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
991
991
|
execution_context: int | str | None = None,
|
|
992
992
|
undo: bool | None = None,
|
|
993
993
|
):
|
|
994
994
|
"""Transparent scene display. Allow selecting through items
|
|
995
995
|
|
|
996
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
996
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
997
997
|
:type execution_context: int | str | None
|
|
998
998
|
:type undo: bool | None
|
|
999
999
|
"""
|
|
@@ -1001,7 +1001,7 @@ def toggle_xray(
|
|
|
1001
1001
|
...
|
|
1002
1002
|
|
|
1003
1003
|
def transform_gizmo_set(
|
|
1004
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1004
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1005
1005
|
execution_context: int | str | None = None,
|
|
1006
1006
|
undo: bool | None = None,
|
|
1007
1007
|
*,
|
|
@@ -1010,7 +1010,7 @@ def transform_gizmo_set(
|
|
|
1010
1010
|
):
|
|
1011
1011
|
"""Set the current transform gizmo
|
|
1012
1012
|
|
|
1013
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1013
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1014
1014
|
:type execution_context: int | str | None
|
|
1015
1015
|
:type undo: bool | None
|
|
1016
1016
|
:param extend: Extend
|
|
@@ -1022,7 +1022,7 @@ def transform_gizmo_set(
|
|
|
1022
1022
|
...
|
|
1023
1023
|
|
|
1024
1024
|
def view_all(
|
|
1025
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1025
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1026
1026
|
execution_context: int | str | None = None,
|
|
1027
1027
|
undo: bool | None = None,
|
|
1028
1028
|
*,
|
|
@@ -1031,7 +1031,7 @@ def view_all(
|
|
|
1031
1031
|
):
|
|
1032
1032
|
"""View all objects in scene
|
|
1033
1033
|
|
|
1034
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1034
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1035
1035
|
:type execution_context: int | str | None
|
|
1036
1036
|
:type undo: bool | None
|
|
1037
1037
|
:param use_all_regions: All Regions, View selected for all regions
|
|
@@ -1043,7 +1043,7 @@ def view_all(
|
|
|
1043
1043
|
...
|
|
1044
1044
|
|
|
1045
1045
|
def view_axis(
|
|
1046
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1046
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1047
1047
|
execution_context: int | str | None = None,
|
|
1048
1048
|
undo: bool | None = None,
|
|
1049
1049
|
*,
|
|
@@ -1054,7 +1054,7 @@ def view_axis(
|
|
|
1054
1054
|
):
|
|
1055
1055
|
"""Use a preset viewpoint
|
|
1056
1056
|
|
|
1057
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1057
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1058
1058
|
:type execution_context: int | str | None
|
|
1059
1059
|
:type undo: bool | None
|
|
1060
1060
|
:param type: View, Preset viewpoint to use
|
|
@@ -1086,13 +1086,13 @@ def view_axis(
|
|
|
1086
1086
|
...
|
|
1087
1087
|
|
|
1088
1088
|
def view_camera(
|
|
1089
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1089
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1090
1090
|
execution_context: int | str | None = None,
|
|
1091
1091
|
undo: bool | None = None,
|
|
1092
1092
|
):
|
|
1093
1093
|
"""Toggle the camera view
|
|
1094
1094
|
|
|
1095
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1095
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1096
1096
|
:type execution_context: int | str | None
|
|
1097
1097
|
:type undo: bool | None
|
|
1098
1098
|
"""
|
|
@@ -1100,13 +1100,13 @@ def view_camera(
|
|
|
1100
1100
|
...
|
|
1101
1101
|
|
|
1102
1102
|
def view_center_camera(
|
|
1103
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1103
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1104
1104
|
execution_context: int | str | None = None,
|
|
1105
1105
|
undo: bool | None = None,
|
|
1106
1106
|
):
|
|
1107
1107
|
"""Center the camera view, resizing the view to fit its bounds
|
|
1108
1108
|
|
|
1109
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1109
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1110
1110
|
:type execution_context: int | str | None
|
|
1111
1111
|
:type undo: bool | None
|
|
1112
1112
|
"""
|
|
@@ -1114,13 +1114,13 @@ def view_center_camera(
|
|
|
1114
1114
|
...
|
|
1115
1115
|
|
|
1116
1116
|
def view_center_cursor(
|
|
1117
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1117
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1118
1118
|
execution_context: int | str | None = None,
|
|
1119
1119
|
undo: bool | None = None,
|
|
1120
1120
|
):
|
|
1121
1121
|
"""Center the view so that the cursor is in the middle of the view
|
|
1122
1122
|
|
|
1123
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1123
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1124
1124
|
:type execution_context: int | str | None
|
|
1125
1125
|
:type undo: bool | None
|
|
1126
1126
|
"""
|
|
@@ -1128,13 +1128,13 @@ def view_center_cursor(
|
|
|
1128
1128
|
...
|
|
1129
1129
|
|
|
1130
1130
|
def view_center_lock(
|
|
1131
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1131
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1132
1132
|
execution_context: int | str | None = None,
|
|
1133
1133
|
undo: bool | None = None,
|
|
1134
1134
|
):
|
|
1135
1135
|
"""Center the view lock offset
|
|
1136
1136
|
|
|
1137
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1137
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1138
1138
|
:type execution_context: int | str | None
|
|
1139
1139
|
:type undo: bool | None
|
|
1140
1140
|
"""
|
|
@@ -1142,13 +1142,13 @@ def view_center_lock(
|
|
|
1142
1142
|
...
|
|
1143
1143
|
|
|
1144
1144
|
def view_center_pick(
|
|
1145
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1145
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1146
1146
|
execution_context: int | str | None = None,
|
|
1147
1147
|
undo: bool | None = None,
|
|
1148
1148
|
):
|
|
1149
1149
|
"""Center the view to the Z-depth position under the mouse cursor
|
|
1150
1150
|
|
|
1151
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1151
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1152
1152
|
:type execution_context: int | str | None
|
|
1153
1153
|
:type undo: bool | None
|
|
1154
1154
|
"""
|
|
@@ -1156,13 +1156,13 @@ def view_center_pick(
|
|
|
1156
1156
|
...
|
|
1157
1157
|
|
|
1158
1158
|
def view_lock_clear(
|
|
1159
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1159
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1160
1160
|
execution_context: int | str | None = None,
|
|
1161
1161
|
undo: bool | None = None,
|
|
1162
1162
|
):
|
|
1163
1163
|
"""Clear all view locking
|
|
1164
1164
|
|
|
1165
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1165
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1166
1166
|
:type execution_context: int | str | None
|
|
1167
1167
|
:type undo: bool | None
|
|
1168
1168
|
"""
|
|
@@ -1170,13 +1170,13 @@ def view_lock_clear(
|
|
|
1170
1170
|
...
|
|
1171
1171
|
|
|
1172
1172
|
def view_lock_to_active(
|
|
1173
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1173
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1174
1174
|
execution_context: int | str | None = None,
|
|
1175
1175
|
undo: bool | None = None,
|
|
1176
1176
|
):
|
|
1177
1177
|
"""Lock the view to the active object/bone
|
|
1178
1178
|
|
|
1179
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1179
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1180
1180
|
:type execution_context: int | str | None
|
|
1181
1181
|
:type undo: bool | None
|
|
1182
1182
|
"""
|
|
@@ -1184,7 +1184,7 @@ def view_lock_to_active(
|
|
|
1184
1184
|
...
|
|
1185
1185
|
|
|
1186
1186
|
def view_orbit(
|
|
1187
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1187
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1188
1188
|
execution_context: int | str | None = None,
|
|
1189
1189
|
undo: bool | None = None,
|
|
1190
1190
|
*,
|
|
@@ -1194,7 +1194,7 @@ def view_orbit(
|
|
|
1194
1194
|
):
|
|
1195
1195
|
"""Orbit the view
|
|
1196
1196
|
|
|
1197
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1197
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1198
1198
|
:type execution_context: int | str | None
|
|
1199
1199
|
:type undo: bool | None
|
|
1200
1200
|
:param angle: Roll
|
|
@@ -1218,7 +1218,7 @@ def view_orbit(
|
|
|
1218
1218
|
...
|
|
1219
1219
|
|
|
1220
1220
|
def view_pan(
|
|
1221
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1221
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1222
1222
|
execution_context: int | str | None = None,
|
|
1223
1223
|
undo: bool | None = None,
|
|
1224
1224
|
*,
|
|
@@ -1226,7 +1226,7 @@ def view_pan(
|
|
|
1226
1226
|
):
|
|
1227
1227
|
"""Pan the view in a given direction
|
|
1228
1228
|
|
|
1229
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1229
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1230
1230
|
:type execution_context: int | str | None
|
|
1231
1231
|
:type undo: bool | None
|
|
1232
1232
|
:param type: Pan, Direction of View Pan
|
|
@@ -1248,13 +1248,13 @@ def view_pan(
|
|
|
1248
1248
|
...
|
|
1249
1249
|
|
|
1250
1250
|
def view_persportho(
|
|
1251
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1251
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1252
1252
|
execution_context: int | str | None = None,
|
|
1253
1253
|
undo: bool | None = None,
|
|
1254
1254
|
):
|
|
1255
1255
|
"""Switch the current view from perspective/orthographic projection
|
|
1256
1256
|
|
|
1257
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1257
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1258
1258
|
:type execution_context: int | str | None
|
|
1259
1259
|
:type undo: bool | None
|
|
1260
1260
|
"""
|
|
@@ -1262,7 +1262,7 @@ def view_persportho(
|
|
|
1262
1262
|
...
|
|
1263
1263
|
|
|
1264
1264
|
def view_roll(
|
|
1265
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1265
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1266
1266
|
execution_context: int | str | None = None,
|
|
1267
1267
|
undo: bool | None = None,
|
|
1268
1268
|
*,
|
|
@@ -1271,7 +1271,7 @@ def view_roll(
|
|
|
1271
1271
|
):
|
|
1272
1272
|
"""Roll the view
|
|
1273
1273
|
|
|
1274
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1274
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1275
1275
|
:type execution_context: int | str | None
|
|
1276
1276
|
:type undo: bool | None
|
|
1277
1277
|
:param angle: Roll
|
|
@@ -1292,7 +1292,7 @@ def view_roll(
|
|
|
1292
1292
|
...
|
|
1293
1293
|
|
|
1294
1294
|
def view_selected(
|
|
1295
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1295
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1296
1296
|
execution_context: int | str | None = None,
|
|
1297
1297
|
undo: bool | None = None,
|
|
1298
1298
|
*,
|
|
@@ -1300,7 +1300,7 @@ def view_selected(
|
|
|
1300
1300
|
):
|
|
1301
1301
|
"""Move the view to the selection center
|
|
1302
1302
|
|
|
1303
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1303
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1304
1304
|
:type execution_context: int | str | None
|
|
1305
1305
|
:type undo: bool | None
|
|
1306
1306
|
:param use_all_regions: All Regions, View selected for all regions
|
|
@@ -1310,13 +1310,13 @@ def view_selected(
|
|
|
1310
1310
|
...
|
|
1311
1311
|
|
|
1312
1312
|
def walk(
|
|
1313
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1313
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1314
1314
|
execution_context: int | str | None = None,
|
|
1315
1315
|
undo: bool | None = None,
|
|
1316
1316
|
):
|
|
1317
1317
|
"""Interactively walk around the scene
|
|
1318
1318
|
|
|
1319
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1319
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1320
1320
|
:type execution_context: int | str | None
|
|
1321
1321
|
:type undo: bool | None
|
|
1322
1322
|
"""
|
|
@@ -1324,7 +1324,7 @@ def walk(
|
|
|
1324
1324
|
...
|
|
1325
1325
|
|
|
1326
1326
|
def zoom(
|
|
1327
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1327
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1328
1328
|
execution_context: int | str | None = None,
|
|
1329
1329
|
undo: bool | None = None,
|
|
1330
1330
|
*,
|
|
@@ -1335,7 +1335,7 @@ def zoom(
|
|
|
1335
1335
|
):
|
|
1336
1336
|
"""Zoom in/out in the view
|
|
1337
1337
|
|
|
1338
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1338
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1339
1339
|
:type execution_context: int | str | None
|
|
1340
1340
|
:type undo: bool | None
|
|
1341
1341
|
:param mx: Region Position X
|
|
@@ -1351,7 +1351,7 @@ def zoom(
|
|
|
1351
1351
|
...
|
|
1352
1352
|
|
|
1353
1353
|
def zoom_border(
|
|
1354
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1354
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1355
1355
|
execution_context: int | str | None = None,
|
|
1356
1356
|
undo: bool | None = None,
|
|
1357
1357
|
*,
|
|
@@ -1364,7 +1364,7 @@ def zoom_border(
|
|
|
1364
1364
|
):
|
|
1365
1365
|
"""Zoom in the view to the nearest object contained in the border
|
|
1366
1366
|
|
|
1367
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1367
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1368
1368
|
:type execution_context: int | str | None
|
|
1369
1369
|
:type undo: bool | None
|
|
1370
1370
|
:param xmin: X Min
|
|
@@ -1384,13 +1384,13 @@ def zoom_border(
|
|
|
1384
1384
|
...
|
|
1385
1385
|
|
|
1386
1386
|
def zoom_camera_1_to_1(
|
|
1387
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1387
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1388
1388
|
execution_context: int | str | None = None,
|
|
1389
1389
|
undo: bool | None = None,
|
|
1390
1390
|
):
|
|
1391
1391
|
"""Match the camera to 1:1 to the render output
|
|
1392
1392
|
|
|
1393
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1393
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1394
1394
|
:type execution_context: int | str | None
|
|
1395
1395
|
:type undo: bool | None
|
|
1396
1396
|
"""
|