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/paint/__init__.pyi
CHANGED
|
@@ -8,13 +8,13 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
8
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
9
9
|
|
|
10
10
|
def add_simple_uvs(
|
|
11
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
11
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
12
12
|
execution_context: int | str | None = None,
|
|
13
13
|
undo: bool | None = None,
|
|
14
14
|
):
|
|
15
15
|
"""Add cube map UVs on mesh
|
|
16
16
|
|
|
17
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
17
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
18
18
|
:type execution_context: int | str | None
|
|
19
19
|
:type undo: bool | None
|
|
20
20
|
"""
|
|
@@ -22,7 +22,7 @@ def add_simple_uvs(
|
|
|
22
22
|
...
|
|
23
23
|
|
|
24
24
|
def add_texture_paint_slot(
|
|
25
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
25
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
26
26
|
execution_context: int | str | None = None,
|
|
27
27
|
undo: bool | None = None,
|
|
28
28
|
*,
|
|
@@ -49,7 +49,7 @@ def add_texture_paint_slot(
|
|
|
49
49
|
):
|
|
50
50
|
"""Add a paint slot
|
|
51
51
|
|
|
52
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
52
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
53
53
|
:type execution_context: int | str | None
|
|
54
54
|
:type undo: bool | None
|
|
55
55
|
:param type: Material Layer Type, Material layer type of new paint slot
|
|
@@ -79,13 +79,13 @@ def add_texture_paint_slot(
|
|
|
79
79
|
...
|
|
80
80
|
|
|
81
81
|
def brush_colors_flip(
|
|
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
|
"""Swap primary and secondary brush colors
|
|
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,7 +93,7 @@ def brush_colors_flip(
|
|
|
93
93
|
...
|
|
94
94
|
|
|
95
95
|
def face_select_all(
|
|
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
|
*,
|
|
@@ -101,7 +101,7 @@ def face_select_all(
|
|
|
101
101
|
):
|
|
102
102
|
"""Change selection for all faces
|
|
103
103
|
|
|
104
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
104
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
105
105
|
:type execution_context: int | str | None
|
|
106
106
|
:type undo: bool | None
|
|
107
107
|
:param action: Action, Selection action to execute
|
|
@@ -123,7 +123,7 @@ def face_select_all(
|
|
|
123
123
|
...
|
|
124
124
|
|
|
125
125
|
def face_select_hide(
|
|
126
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
126
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
127
127
|
execution_context: int | str | None = None,
|
|
128
128
|
undo: bool | None = None,
|
|
129
129
|
*,
|
|
@@ -131,7 +131,7 @@ def face_select_hide(
|
|
|
131
131
|
):
|
|
132
132
|
"""Hide selected faces
|
|
133
133
|
|
|
134
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
134
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
135
135
|
:type execution_context: int | str | None
|
|
136
136
|
:type undo: bool | None
|
|
137
137
|
:param unselected: Unselected, Hide unselected rather than selected objects
|
|
@@ -141,7 +141,7 @@ def face_select_hide(
|
|
|
141
141
|
...
|
|
142
142
|
|
|
143
143
|
def face_select_less(
|
|
144
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
144
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
145
145
|
execution_context: int | str | None = None,
|
|
146
146
|
undo: bool | None = None,
|
|
147
147
|
*,
|
|
@@ -149,7 +149,7 @@ def face_select_less(
|
|
|
149
149
|
):
|
|
150
150
|
"""Deselect Faces connected to existing selection
|
|
151
151
|
|
|
152
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
152
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
153
153
|
:type execution_context: int | str | None
|
|
154
154
|
:type undo: bool | None
|
|
155
155
|
:param face_step: Face Step, Also deselect faces that only touch on a corner
|
|
@@ -159,13 +159,13 @@ def face_select_less(
|
|
|
159
159
|
...
|
|
160
160
|
|
|
161
161
|
def face_select_linked(
|
|
162
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
162
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
163
163
|
execution_context: int | str | None = None,
|
|
164
164
|
undo: bool | None = None,
|
|
165
165
|
):
|
|
166
166
|
"""Select linked faces
|
|
167
167
|
|
|
168
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
168
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
169
169
|
:type execution_context: int | str | None
|
|
170
170
|
:type undo: bool | None
|
|
171
171
|
"""
|
|
@@ -173,7 +173,7 @@ def face_select_linked(
|
|
|
173
173
|
...
|
|
174
174
|
|
|
175
175
|
def face_select_linked_pick(
|
|
176
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
176
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
177
177
|
execution_context: int | str | None = None,
|
|
178
178
|
undo: bool | None = None,
|
|
179
179
|
*,
|
|
@@ -181,7 +181,7 @@ def face_select_linked_pick(
|
|
|
181
181
|
):
|
|
182
182
|
"""Select linked faces under the cursor
|
|
183
183
|
|
|
184
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
184
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
185
185
|
:type execution_context: int | str | None
|
|
186
186
|
:type undo: bool | None
|
|
187
187
|
:param deselect: Deselect, Deselect rather than select items
|
|
@@ -191,7 +191,7 @@ def face_select_linked_pick(
|
|
|
191
191
|
...
|
|
192
192
|
|
|
193
193
|
def face_select_loop(
|
|
194
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
194
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
195
195
|
execution_context: int | str | None = None,
|
|
196
196
|
undo: bool | None = None,
|
|
197
197
|
*,
|
|
@@ -200,7 +200,7 @@ def face_select_loop(
|
|
|
200
200
|
):
|
|
201
201
|
"""Select face loop under the cursor
|
|
202
202
|
|
|
203
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
203
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
204
204
|
:type execution_context: int | str | None
|
|
205
205
|
:type undo: bool | None
|
|
206
206
|
:param select: Select, If false, faces will be deselected
|
|
@@ -212,7 +212,7 @@ def face_select_loop(
|
|
|
212
212
|
...
|
|
213
213
|
|
|
214
214
|
def face_select_more(
|
|
215
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
215
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
216
216
|
execution_context: int | str | None = None,
|
|
217
217
|
undo: bool | None = None,
|
|
218
218
|
*,
|
|
@@ -220,7 +220,7 @@ def face_select_more(
|
|
|
220
220
|
):
|
|
221
221
|
"""Select Faces connected to existing selection
|
|
222
222
|
|
|
223
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
223
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
224
224
|
:type execution_context: int | str | None
|
|
225
225
|
:type undo: bool | None
|
|
226
226
|
:param face_step: Face Step, Also select faces that only touch on a corner
|
|
@@ -230,7 +230,7 @@ def face_select_more(
|
|
|
230
230
|
...
|
|
231
231
|
|
|
232
232
|
def face_vert_reveal(
|
|
233
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
233
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
234
234
|
execution_context: int | str | None = None,
|
|
235
235
|
undo: bool | None = None,
|
|
236
236
|
*,
|
|
@@ -238,7 +238,7 @@ def face_vert_reveal(
|
|
|
238
238
|
):
|
|
239
239
|
"""Reveal hidden faces and vertices
|
|
240
240
|
|
|
241
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
241
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
242
242
|
:type execution_context: int | str | None
|
|
243
243
|
:type undo: bool | None
|
|
244
244
|
:param select: Select, Specifies whether the newly revealed geometry should be selected
|
|
@@ -248,7 +248,7 @@ def face_vert_reveal(
|
|
|
248
248
|
...
|
|
249
249
|
|
|
250
250
|
def grab_clone(
|
|
251
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
251
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
252
252
|
execution_context: int | str | None = None,
|
|
253
253
|
undo: bool | None = None,
|
|
254
254
|
*,
|
|
@@ -256,7 +256,7 @@ def grab_clone(
|
|
|
256
256
|
):
|
|
257
257
|
"""Move the clone source image
|
|
258
258
|
|
|
259
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
259
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
260
260
|
:type execution_context: int | str | None
|
|
261
261
|
:type undo: bool | None
|
|
262
262
|
:param delta: Delta, Delta offset of clone image in 0.0 to 1.0 coordinates
|
|
@@ -266,7 +266,7 @@ def grab_clone(
|
|
|
266
266
|
...
|
|
267
267
|
|
|
268
268
|
def hide_show(
|
|
269
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
269
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
270
270
|
execution_context: int | str | None = None,
|
|
271
271
|
undo: bool | None = None,
|
|
272
272
|
*,
|
|
@@ -281,7 +281,7 @@ def hide_show(
|
|
|
281
281
|
):
|
|
282
282
|
"""Hide/show some vertices
|
|
283
283
|
|
|
284
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
284
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
285
285
|
:type execution_context: int | str | None
|
|
286
286
|
:type undo: bool | None
|
|
287
287
|
:param xmin: X Min
|
|
@@ -317,7 +317,7 @@ def hide_show(
|
|
|
317
317
|
...
|
|
318
318
|
|
|
319
319
|
def hide_show_all(
|
|
320
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
320
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
321
321
|
execution_context: int | str | None = None,
|
|
322
322
|
undo: bool | None = None,
|
|
323
323
|
*,
|
|
@@ -325,7 +325,7 @@ def hide_show_all(
|
|
|
325
325
|
):
|
|
326
326
|
"""Hide/show all vertices
|
|
327
327
|
|
|
328
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
328
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
329
329
|
:type execution_context: int | str | None
|
|
330
330
|
:type undo: bool | None
|
|
331
331
|
:param action: Visibility Action, Whether to hide or show vertices
|
|
@@ -341,7 +341,7 @@ def hide_show_all(
|
|
|
341
341
|
...
|
|
342
342
|
|
|
343
343
|
def hide_show_lasso_gesture(
|
|
344
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
344
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
345
345
|
execution_context: int | str | None = None,
|
|
346
346
|
undo: bool | None = None,
|
|
347
347
|
*,
|
|
@@ -355,7 +355,7 @@ def hide_show_lasso_gesture(
|
|
|
355
355
|
):
|
|
356
356
|
"""Hide/show some vertices
|
|
357
357
|
|
|
358
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
358
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
359
359
|
:type execution_context: int | str | None
|
|
360
360
|
:type undo: bool | None
|
|
361
361
|
:param path: Path
|
|
@@ -389,7 +389,7 @@ def hide_show_lasso_gesture(
|
|
|
389
389
|
...
|
|
390
390
|
|
|
391
391
|
def hide_show_line_gesture(
|
|
392
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
392
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
393
393
|
execution_context: int | str | None = None,
|
|
394
394
|
undo: bool | None = None,
|
|
395
395
|
*,
|
|
@@ -406,7 +406,7 @@ def hide_show_line_gesture(
|
|
|
406
406
|
):
|
|
407
407
|
"""Hide/show some vertices
|
|
408
408
|
|
|
409
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
409
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
410
410
|
:type execution_context: int | str | None
|
|
411
411
|
:type undo: bool | None
|
|
412
412
|
:param xstart: X Start
|
|
@@ -446,7 +446,7 @@ def hide_show_line_gesture(
|
|
|
446
446
|
...
|
|
447
447
|
|
|
448
448
|
def hide_show_masked(
|
|
449
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
449
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
450
450
|
execution_context: int | str | None = None,
|
|
451
451
|
undo: bool | None = None,
|
|
452
452
|
*,
|
|
@@ -454,7 +454,7 @@ def hide_show_masked(
|
|
|
454
454
|
):
|
|
455
455
|
"""Hide/show all masked vertices above a threshold
|
|
456
456
|
|
|
457
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
457
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
458
458
|
:type execution_context: int | str | None
|
|
459
459
|
:type undo: bool | None
|
|
460
460
|
:param action: Visibility Action, Whether to hide or show vertices
|
|
@@ -470,7 +470,7 @@ def hide_show_masked(
|
|
|
470
470
|
...
|
|
471
471
|
|
|
472
472
|
def hide_show_polyline_gesture(
|
|
473
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
473
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
474
474
|
execution_context: int | str | None = None,
|
|
475
475
|
undo: bool | None = None,
|
|
476
476
|
*,
|
|
@@ -481,7 +481,7 @@ def hide_show_polyline_gesture(
|
|
|
481
481
|
):
|
|
482
482
|
"""Hide/show some vertices
|
|
483
483
|
|
|
484
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
484
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
485
485
|
:type execution_context: int | str | None
|
|
486
486
|
:type undo: bool | None
|
|
487
487
|
:param path: Path
|
|
@@ -509,7 +509,7 @@ def hide_show_polyline_gesture(
|
|
|
509
509
|
...
|
|
510
510
|
|
|
511
511
|
def image_from_view(
|
|
512
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
512
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
513
513
|
execution_context: int | str | None = None,
|
|
514
514
|
undo: bool | None = None,
|
|
515
515
|
*,
|
|
@@ -517,7 +517,7 @@ def image_from_view(
|
|
|
517
517
|
):
|
|
518
518
|
"""Make an image from biggest 3D view for reprojection
|
|
519
519
|
|
|
520
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
520
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
521
521
|
:type execution_context: int | str | None
|
|
522
522
|
:type undo: bool | None
|
|
523
523
|
:param filepath: File Path, Name of the file
|
|
@@ -527,7 +527,7 @@ def image_from_view(
|
|
|
527
527
|
...
|
|
528
528
|
|
|
529
529
|
def image_paint(
|
|
530
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
530
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
531
531
|
execution_context: int | str | None = None,
|
|
532
532
|
undo: bool | None = None,
|
|
533
533
|
*,
|
|
@@ -537,7 +537,7 @@ def image_paint(
|
|
|
537
537
|
):
|
|
538
538
|
"""Paint a stroke into the image
|
|
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 stroke: Stroke
|
|
@@ -561,7 +561,7 @@ def image_paint(
|
|
|
561
561
|
...
|
|
562
562
|
|
|
563
563
|
def mask_box_gesture(
|
|
564
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
564
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
565
565
|
execution_context: int | str | None = None,
|
|
566
566
|
undo: bool | None = None,
|
|
567
567
|
*,
|
|
@@ -576,7 +576,7 @@ def mask_box_gesture(
|
|
|
576
576
|
):
|
|
577
577
|
"""Mask within a rectangle defined by the cursor
|
|
578
578
|
|
|
579
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
579
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
580
580
|
:type execution_context: int | str | None
|
|
581
581
|
:type undo: bool | None
|
|
582
582
|
:param xmin: X Min
|
|
@@ -609,7 +609,7 @@ def mask_box_gesture(
|
|
|
609
609
|
...
|
|
610
610
|
|
|
611
611
|
def mask_flood_fill(
|
|
612
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
612
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
613
613
|
execution_context: int | str | None = None,
|
|
614
614
|
undo: bool | None = None,
|
|
615
615
|
*,
|
|
@@ -618,7 +618,7 @@ def mask_flood_fill(
|
|
|
618
618
|
):
|
|
619
619
|
"""Fill the whole mask with a given value, or invert its values
|
|
620
620
|
|
|
621
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
621
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
622
622
|
:type execution_context: int | str | None
|
|
623
623
|
:type undo: bool | None
|
|
624
624
|
:param mode: Mode
|
|
@@ -639,7 +639,7 @@ def mask_flood_fill(
|
|
|
639
639
|
...
|
|
640
640
|
|
|
641
641
|
def mask_lasso_gesture(
|
|
642
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
642
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
643
643
|
execution_context: int | str | None = None,
|
|
644
644
|
undo: bool | None = None,
|
|
645
645
|
*,
|
|
@@ -653,7 +653,7 @@ def mask_lasso_gesture(
|
|
|
653
653
|
):
|
|
654
654
|
"""Mask within a shape defined by the cursor
|
|
655
655
|
|
|
656
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
656
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
657
657
|
:type execution_context: int | str | None
|
|
658
658
|
:type undo: bool | None
|
|
659
659
|
:param path: Path
|
|
@@ -684,7 +684,7 @@ def mask_lasso_gesture(
|
|
|
684
684
|
...
|
|
685
685
|
|
|
686
686
|
def mask_line_gesture(
|
|
687
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
687
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
688
688
|
execution_context: int | str | None = None,
|
|
689
689
|
undo: bool | None = None,
|
|
690
690
|
*,
|
|
@@ -701,7 +701,7 @@ def mask_line_gesture(
|
|
|
701
701
|
):
|
|
702
702
|
"""Mask to one side of a line defined by the cursor
|
|
703
703
|
|
|
704
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
704
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
705
705
|
:type execution_context: int | str | None
|
|
706
706
|
:type undo: bool | None
|
|
707
707
|
:param xstart: X Start
|
|
@@ -738,7 +738,7 @@ def mask_line_gesture(
|
|
|
738
738
|
...
|
|
739
739
|
|
|
740
740
|
def mask_polyline_gesture(
|
|
741
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
741
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
742
742
|
execution_context: int | str | None = None,
|
|
743
743
|
undo: bool | None = None,
|
|
744
744
|
*,
|
|
@@ -749,7 +749,7 @@ def mask_polyline_gesture(
|
|
|
749
749
|
):
|
|
750
750
|
"""Mask within a shape defined by the cursor
|
|
751
751
|
|
|
752
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
752
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
753
753
|
:type execution_context: int | str | None
|
|
754
754
|
:type undo: bool | None
|
|
755
755
|
:param path: Path
|
|
@@ -774,7 +774,7 @@ def mask_polyline_gesture(
|
|
|
774
774
|
...
|
|
775
775
|
|
|
776
776
|
def project_image(
|
|
777
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
777
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
778
778
|
execution_context: int | str | None = None,
|
|
779
779
|
undo: bool | None = None,
|
|
780
780
|
*,
|
|
@@ -782,7 +782,7 @@ def project_image(
|
|
|
782
782
|
):
|
|
783
783
|
"""Project an edited render from the active camera back onto the object
|
|
784
784
|
|
|
785
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
785
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
786
786
|
:type execution_context: int | str | None
|
|
787
787
|
:type undo: bool | None
|
|
788
788
|
:param image: Image
|
|
@@ -792,7 +792,7 @@ def project_image(
|
|
|
792
792
|
...
|
|
793
793
|
|
|
794
794
|
def sample_color(
|
|
795
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
795
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
796
796
|
execution_context: int | str | None = None,
|
|
797
797
|
undo: bool | None = None,
|
|
798
798
|
*,
|
|
@@ -802,7 +802,7 @@ def sample_color(
|
|
|
802
802
|
):
|
|
803
803
|
"""Use the mouse to sample a color in the image
|
|
804
804
|
|
|
805
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
805
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
806
806
|
:type execution_context: int | str | None
|
|
807
807
|
:type undo: bool | None
|
|
808
808
|
:param location: Location
|
|
@@ -816,13 +816,13 @@ def sample_color(
|
|
|
816
816
|
...
|
|
817
817
|
|
|
818
818
|
def texture_paint_toggle(
|
|
819
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
819
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
820
820
|
execution_context: int | str | None = None,
|
|
821
821
|
undo: bool | None = None,
|
|
822
822
|
):
|
|
823
823
|
"""Toggle texture paint mode in 3D view
|
|
824
824
|
|
|
825
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
825
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
826
826
|
:type execution_context: int | str | None
|
|
827
827
|
:type undo: bool | None
|
|
828
828
|
"""
|
|
@@ -830,7 +830,7 @@ def texture_paint_toggle(
|
|
|
830
830
|
...
|
|
831
831
|
|
|
832
832
|
def vert_select_all(
|
|
833
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
833
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
834
834
|
execution_context: int | str | None = None,
|
|
835
835
|
undo: bool | None = None,
|
|
836
836
|
*,
|
|
@@ -838,7 +838,7 @@ def vert_select_all(
|
|
|
838
838
|
):
|
|
839
839
|
"""Change selection for all vertices
|
|
840
840
|
|
|
841
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
841
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
842
842
|
:type execution_context: int | str | None
|
|
843
843
|
:type undo: bool | None
|
|
844
844
|
:param action: Action, Selection action to execute
|
|
@@ -860,7 +860,7 @@ def vert_select_all(
|
|
|
860
860
|
...
|
|
861
861
|
|
|
862
862
|
def vert_select_hide(
|
|
863
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
863
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
864
864
|
execution_context: int | str | None = None,
|
|
865
865
|
undo: bool | None = None,
|
|
866
866
|
*,
|
|
@@ -868,7 +868,7 @@ def vert_select_hide(
|
|
|
868
868
|
):
|
|
869
869
|
"""Hide selected vertices
|
|
870
870
|
|
|
871
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
871
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
872
872
|
:type execution_context: int | str | None
|
|
873
873
|
:type undo: bool | None
|
|
874
874
|
:param unselected: Unselected, Hide unselected rather than selected vertices
|
|
@@ -878,7 +878,7 @@ def vert_select_hide(
|
|
|
878
878
|
...
|
|
879
879
|
|
|
880
880
|
def vert_select_less(
|
|
881
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
881
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
882
882
|
execution_context: int | str | None = None,
|
|
883
883
|
undo: bool | None = None,
|
|
884
884
|
*,
|
|
@@ -886,7 +886,7 @@ def vert_select_less(
|
|
|
886
886
|
):
|
|
887
887
|
"""Deselect Vertices connected to existing selection
|
|
888
888
|
|
|
889
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
889
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
890
890
|
:type execution_context: int | str | None
|
|
891
891
|
:type undo: bool | None
|
|
892
892
|
:param face_step: Face Step, Also deselect faces that only touch on a corner
|
|
@@ -896,13 +896,13 @@ def vert_select_less(
|
|
|
896
896
|
...
|
|
897
897
|
|
|
898
898
|
def vert_select_linked(
|
|
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
|
"""Select linked vertices
|
|
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 vert_select_linked(
|
|
|
910
910
|
...
|
|
911
911
|
|
|
912
912
|
def vert_select_linked_pick(
|
|
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 vert_select_linked_pick(
|
|
|
918
918
|
):
|
|
919
919
|
"""Select linked vertices under the 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 select: Select, Whether to select or deselect linked vertices under the cursor
|
|
@@ -928,7 +928,7 @@ def vert_select_linked_pick(
|
|
|
928
928
|
...
|
|
929
929
|
|
|
930
930
|
def vert_select_more(
|
|
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
|
*,
|
|
@@ -936,7 +936,7 @@ def vert_select_more(
|
|
|
936
936
|
):
|
|
937
937
|
"""Select Vertices connected to existing selection
|
|
938
938
|
|
|
939
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
939
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
940
940
|
:type execution_context: int | str | None
|
|
941
941
|
:type undo: bool | None
|
|
942
942
|
:param face_step: Face Step, Also select faces that only touch on a corner
|
|
@@ -946,7 +946,7 @@ def vert_select_more(
|
|
|
946
946
|
...
|
|
947
947
|
|
|
948
948
|
def vert_select_ungrouped(
|
|
949
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
949
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
950
950
|
execution_context: int | str | None = None,
|
|
951
951
|
undo: bool | None = None,
|
|
952
952
|
*,
|
|
@@ -954,7 +954,7 @@ def vert_select_ungrouped(
|
|
|
954
954
|
):
|
|
955
955
|
"""Select vertices without a group
|
|
956
956
|
|
|
957
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
957
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
958
958
|
:type execution_context: int | str | None
|
|
959
959
|
:type undo: bool | None
|
|
960
960
|
:param extend: Extend, Extend the selection
|
|
@@ -964,7 +964,7 @@ def vert_select_ungrouped(
|
|
|
964
964
|
...
|
|
965
965
|
|
|
966
966
|
def vertex_color_brightness_contrast(
|
|
967
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
967
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
968
968
|
execution_context: int | str | None = None,
|
|
969
969
|
undo: bool | None = None,
|
|
970
970
|
*,
|
|
@@ -973,7 +973,7 @@ def vertex_color_brightness_contrast(
|
|
|
973
973
|
):
|
|
974
974
|
"""Adjust vertex color brightness/contrast
|
|
975
975
|
|
|
976
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
976
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
977
977
|
:type execution_context: int | str | None
|
|
978
978
|
:type undo: bool | None
|
|
979
979
|
:param brightness: Brightness
|
|
@@ -985,7 +985,7 @@ def vertex_color_brightness_contrast(
|
|
|
985
985
|
...
|
|
986
986
|
|
|
987
987
|
def vertex_color_dirt(
|
|
988
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
988
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
989
989
|
execution_context: int | str | None = None,
|
|
990
990
|
undo: bool | None = None,
|
|
991
991
|
*,
|
|
@@ -998,7 +998,7 @@ def vertex_color_dirt(
|
|
|
998
998
|
):
|
|
999
999
|
"""Generate a dirt map gradient based on cavity
|
|
1000
1000
|
|
|
1001
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1001
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1002
1002
|
:type execution_context: int | str | None
|
|
1003
1003
|
:type undo: bool | None
|
|
1004
1004
|
:param blur_strength: Blur Strength, Blur strength per iteration
|
|
@@ -1018,13 +1018,13 @@ def vertex_color_dirt(
|
|
|
1018
1018
|
...
|
|
1019
1019
|
|
|
1020
1020
|
def vertex_color_from_weight(
|
|
1021
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1021
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1022
1022
|
execution_context: int | str | None = None,
|
|
1023
1023
|
undo: bool | None = None,
|
|
1024
1024
|
):
|
|
1025
1025
|
"""Convert active weight into gray scale vertex colors
|
|
1026
1026
|
|
|
1027
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1027
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1028
1028
|
:type execution_context: int | str | None
|
|
1029
1029
|
:type undo: bool | None
|
|
1030
1030
|
"""
|
|
@@ -1032,7 +1032,7 @@ def vertex_color_from_weight(
|
|
|
1032
1032
|
...
|
|
1033
1033
|
|
|
1034
1034
|
def vertex_color_hsv(
|
|
1035
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1035
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1036
1036
|
execution_context: int | str | None = None,
|
|
1037
1037
|
undo: bool | None = None,
|
|
1038
1038
|
*,
|
|
@@ -1042,7 +1042,7 @@ def vertex_color_hsv(
|
|
|
1042
1042
|
):
|
|
1043
1043
|
"""Adjust vertex color Hue/Saturation/Value
|
|
1044
1044
|
|
|
1045
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1045
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1046
1046
|
:type execution_context: int | str | None
|
|
1047
1047
|
:type undo: bool | None
|
|
1048
1048
|
:param h: Hue
|
|
@@ -1056,13 +1056,13 @@ def vertex_color_hsv(
|
|
|
1056
1056
|
...
|
|
1057
1057
|
|
|
1058
1058
|
def vertex_color_invert(
|
|
1059
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1059
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1060
1060
|
execution_context: int | str | None = None,
|
|
1061
1061
|
undo: bool | None = None,
|
|
1062
1062
|
):
|
|
1063
1063
|
"""Invert RGB values
|
|
1064
1064
|
|
|
1065
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1065
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1066
1066
|
:type execution_context: int | str | None
|
|
1067
1067
|
:type undo: bool | None
|
|
1068
1068
|
"""
|
|
@@ -1070,7 +1070,7 @@ def vertex_color_invert(
|
|
|
1070
1070
|
...
|
|
1071
1071
|
|
|
1072
1072
|
def vertex_color_levels(
|
|
1073
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1073
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1074
1074
|
execution_context: int | str | None = None,
|
|
1075
1075
|
undo: bool | None = None,
|
|
1076
1076
|
*,
|
|
@@ -1079,7 +1079,7 @@ def vertex_color_levels(
|
|
|
1079
1079
|
):
|
|
1080
1080
|
"""Adjust levels of vertex colors
|
|
1081
1081
|
|
|
1082
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1082
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1083
1083
|
:type execution_context: int | str | None
|
|
1084
1084
|
:type undo: bool | None
|
|
1085
1085
|
:param offset: Offset, Value to add to colors
|
|
@@ -1091,7 +1091,7 @@ def vertex_color_levels(
|
|
|
1091
1091
|
...
|
|
1092
1092
|
|
|
1093
1093
|
def vertex_color_set(
|
|
1094
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1094
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1095
1095
|
execution_context: int | str | None = None,
|
|
1096
1096
|
undo: bool | None = None,
|
|
1097
1097
|
*,
|
|
@@ -1099,7 +1099,7 @@ def vertex_color_set(
|
|
|
1099
1099
|
):
|
|
1100
1100
|
"""Fill the active vertex color layer with the current paint color
|
|
1101
1101
|
|
|
1102
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1102
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1103
1103
|
:type execution_context: int | str | None
|
|
1104
1104
|
:type undo: bool | None
|
|
1105
1105
|
:param use_alpha: Affect Alpha, Set color completely opaque instead of reusing existing alpha
|
|
@@ -1109,13 +1109,13 @@ def vertex_color_set(
|
|
|
1109
1109
|
...
|
|
1110
1110
|
|
|
1111
1111
|
def vertex_color_smooth(
|
|
1112
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1112
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1113
1113
|
execution_context: int | str | None = None,
|
|
1114
1114
|
undo: bool | None = None,
|
|
1115
1115
|
):
|
|
1116
1116
|
"""Smooth colors across vertices
|
|
1117
1117
|
|
|
1118
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1118
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1119
1119
|
:type execution_context: int | str | None
|
|
1120
1120
|
:type undo: bool | None
|
|
1121
1121
|
"""
|
|
@@ -1123,7 +1123,7 @@ def vertex_color_smooth(
|
|
|
1123
1123
|
...
|
|
1124
1124
|
|
|
1125
1125
|
def vertex_paint(
|
|
1126
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1126
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1127
1127
|
execution_context: int | str | None = None,
|
|
1128
1128
|
undo: bool | None = None,
|
|
1129
1129
|
*,
|
|
@@ -1133,7 +1133,7 @@ def vertex_paint(
|
|
|
1133
1133
|
):
|
|
1134
1134
|
"""Paint a stroke in the active color attribute layer
|
|
1135
1135
|
|
|
1136
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1136
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1137
1137
|
:type execution_context: int | str | None
|
|
1138
1138
|
:type undo: bool | None
|
|
1139
1139
|
:param stroke: Stroke
|
|
@@ -1157,13 +1157,13 @@ def vertex_paint(
|
|
|
1157
1157
|
...
|
|
1158
1158
|
|
|
1159
1159
|
def vertex_paint_toggle(
|
|
1160
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1160
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1161
1161
|
execution_context: int | str | None = None,
|
|
1162
1162
|
undo: bool | None = None,
|
|
1163
1163
|
):
|
|
1164
1164
|
"""Toggle the vertex paint mode in 3D view
|
|
1165
1165
|
|
|
1166
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1166
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1167
1167
|
:type execution_context: int | str | None
|
|
1168
1168
|
:type undo: bool | None
|
|
1169
1169
|
"""
|
|
@@ -1171,7 +1171,7 @@ def vertex_paint_toggle(
|
|
|
1171
1171
|
...
|
|
1172
1172
|
|
|
1173
1173
|
def visibility_filter(
|
|
1174
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1174
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1175
1175
|
execution_context: int | str | None = None,
|
|
1176
1176
|
undo: bool | None = None,
|
|
1177
1177
|
*,
|
|
@@ -1181,7 +1181,7 @@ def visibility_filter(
|
|
|
1181
1181
|
):
|
|
1182
1182
|
"""Edit the visibility of the current mesh
|
|
1183
1183
|
|
|
1184
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1184
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1185
1185
|
:type execution_context: int | str | None
|
|
1186
1186
|
:type undo: bool | None
|
|
1187
1187
|
:param action: Action
|
|
@@ -1201,13 +1201,13 @@ def visibility_filter(
|
|
|
1201
1201
|
...
|
|
1202
1202
|
|
|
1203
1203
|
def visibility_invert(
|
|
1204
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1204
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1205
1205
|
execution_context: int | str | None = None,
|
|
1206
1206
|
undo: bool | None = None,
|
|
1207
1207
|
):
|
|
1208
1208
|
"""Invert the visibility of all vertices
|
|
1209
1209
|
|
|
1210
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1210
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1211
1211
|
:type execution_context: int | str | None
|
|
1212
1212
|
:type undo: bool | None
|
|
1213
1213
|
"""
|
|
@@ -1215,7 +1215,7 @@ def visibility_invert(
|
|
|
1215
1215
|
...
|
|
1216
1216
|
|
|
1217
1217
|
def weight_from_bones(
|
|
1218
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1218
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1219
1219
|
execution_context: int | str | None = None,
|
|
1220
1220
|
undo: bool | None = None,
|
|
1221
1221
|
*,
|
|
@@ -1223,7 +1223,7 @@ def weight_from_bones(
|
|
|
1223
1223
|
):
|
|
1224
1224
|
"""Set the weights of the groups matching the attached armature's selected bones, using the distance between the vertices and the bones
|
|
1225
1225
|
|
|
1226
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1226
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1227
1227
|
:type execution_context: int | str | None
|
|
1228
1228
|
:type undo: bool | None
|
|
1229
1229
|
:param type: Type, Method to use for assigning weights
|
|
@@ -1239,7 +1239,7 @@ def weight_from_bones(
|
|
|
1239
1239
|
...
|
|
1240
1240
|
|
|
1241
1241
|
def weight_gradient(
|
|
1242
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1242
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1243
1243
|
execution_context: int | str | None = None,
|
|
1244
1244
|
undo: bool | None = None,
|
|
1245
1245
|
*,
|
|
@@ -1253,7 +1253,7 @@ def weight_gradient(
|
|
|
1253
1253
|
):
|
|
1254
1254
|
"""Draw a line to apply a weight gradient to selected vertices
|
|
1255
1255
|
|
|
1256
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1256
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1257
1257
|
:type execution_context: int | str | None
|
|
1258
1258
|
:type undo: bool | None
|
|
1259
1259
|
:param type: Type
|
|
@@ -1275,7 +1275,7 @@ def weight_gradient(
|
|
|
1275
1275
|
...
|
|
1276
1276
|
|
|
1277
1277
|
def weight_paint(
|
|
1278
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1278
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1279
1279
|
execution_context: int | str | None = None,
|
|
1280
1280
|
undo: bool | None = None,
|
|
1281
1281
|
*,
|
|
@@ -1285,7 +1285,7 @@ def weight_paint(
|
|
|
1285
1285
|
):
|
|
1286
1286
|
"""Paint a stroke in the current vertex group's weights
|
|
1287
1287
|
|
|
1288
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1288
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1289
1289
|
:type execution_context: int | str | None
|
|
1290
1290
|
:type undo: bool | None
|
|
1291
1291
|
:param stroke: Stroke
|
|
@@ -1309,13 +1309,13 @@ def weight_paint(
|
|
|
1309
1309
|
...
|
|
1310
1310
|
|
|
1311
1311
|
def weight_paint_toggle(
|
|
1312
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1312
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1313
1313
|
execution_context: int | str | None = None,
|
|
1314
1314
|
undo: bool | None = None,
|
|
1315
1315
|
):
|
|
1316
1316
|
"""Toggle weight paint mode in 3D view
|
|
1317
1317
|
|
|
1318
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1318
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1319
1319
|
:type execution_context: int | str | None
|
|
1320
1320
|
:type undo: bool | None
|
|
1321
1321
|
"""
|
|
@@ -1323,13 +1323,13 @@ def weight_paint_toggle(
|
|
|
1323
1323
|
...
|
|
1324
1324
|
|
|
1325
1325
|
def weight_sample(
|
|
1326
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1326
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1327
1327
|
execution_context: int | str | None = None,
|
|
1328
1328
|
undo: bool | None = None,
|
|
1329
1329
|
):
|
|
1330
1330
|
"""Use the mouse to sample a weight in the 3D view
|
|
1331
1331
|
|
|
1332
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1332
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1333
1333
|
:type execution_context: int | str | None
|
|
1334
1334
|
:type undo: bool | None
|
|
1335
1335
|
"""
|
|
@@ -1337,13 +1337,13 @@ def weight_sample(
|
|
|
1337
1337
|
...
|
|
1338
1338
|
|
|
1339
1339
|
def weight_sample_group(
|
|
1340
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1340
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1341
1341
|
execution_context: int | str | None = None,
|
|
1342
1342
|
undo: bool | None = None,
|
|
1343
1343
|
):
|
|
1344
1344
|
"""Select one of the vertex groups available under current mouse position
|
|
1345
1345
|
|
|
1346
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1346
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1347
1347
|
:type execution_context: int | str | None
|
|
1348
1348
|
:type undo: bool | None
|
|
1349
1349
|
"""
|
|
@@ -1351,13 +1351,13 @@ def weight_sample_group(
|
|
|
1351
1351
|
...
|
|
1352
1352
|
|
|
1353
1353
|
def weight_set(
|
|
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
|
):
|
|
1358
1358
|
"""Fill the active vertex group with the current paint weight
|
|
1359
1359
|
|
|
1360
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1360
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1361
1361
|
:type execution_context: int | str | None
|
|
1362
1362
|
:type undo: bool | None
|
|
1363
1363
|
"""
|