fake-bpy-module 20240927__py3-none-any.whl → 20240929__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/generic_ui_list/__init__.pyi +2 -2
- bl_ui/space_dopesheet/__init__.pyi +25 -0
- bl_ui/space_view3d/__init__.pyi +36 -0
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +144 -120
- 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 +220 -200
- 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 +230 -230
- bpy/ops/object/__init__.pyi +476 -476
- 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 +74 -74
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +178 -178
- 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 +68 -68
- 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 +232 -232
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +449 -226
- bpy/typing/__init__.pyi +1 -0
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/RECORD +87 -87
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/top_level.txt +0 -0
bpy/ops/paint/__init__.pyi
CHANGED
|
@@ -6,19 +6,19 @@ import bpy.typing
|
|
|
6
6
|
import mathutils
|
|
7
7
|
|
|
8
8
|
def add_simple_uvs(
|
|
9
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
9
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
10
10
|
execution_context: int | str | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
12
|
):
|
|
13
13
|
"""Add cube map UVs on mesh
|
|
14
14
|
|
|
15
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
15
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
16
16
|
:type execution_context: int | str | None
|
|
17
17
|
:type undo: bool | None
|
|
18
18
|
"""
|
|
19
19
|
|
|
20
20
|
def add_texture_paint_slot(
|
|
21
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
21
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
22
22
|
execution_context: int | str | None = None,
|
|
23
23
|
undo: bool | None = None,
|
|
24
24
|
*,
|
|
@@ -45,7 +45,7 @@ def add_texture_paint_slot(
|
|
|
45
45
|
):
|
|
46
46
|
"""Add a paint slot
|
|
47
47
|
|
|
48
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
48
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
49
49
|
:type execution_context: int | str | None
|
|
50
50
|
:type undo: bool | None
|
|
51
51
|
:param type: Material Layer Type, Material layer type of new paint slot
|
|
@@ -73,19 +73,19 @@ def add_texture_paint_slot(
|
|
|
73
73
|
"""
|
|
74
74
|
|
|
75
75
|
def brush_colors_flip(
|
|
76
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
76
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
77
77
|
execution_context: int | str | None = None,
|
|
78
78
|
undo: bool | None = None,
|
|
79
79
|
):
|
|
80
80
|
"""Swap primary and secondary brush colors
|
|
81
81
|
|
|
82
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
82
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
83
83
|
:type execution_context: int | str | None
|
|
84
84
|
:type undo: bool | None
|
|
85
85
|
"""
|
|
86
86
|
|
|
87
87
|
def face_select_all(
|
|
88
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
88
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
89
89
|
execution_context: int | str | None = None,
|
|
90
90
|
undo: bool | None = None,
|
|
91
91
|
*,
|
|
@@ -93,7 +93,7 @@ def face_select_all(
|
|
|
93
93
|
):
|
|
94
94
|
"""Change selection for all faces
|
|
95
95
|
|
|
96
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
96
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
97
97
|
:type execution_context: int | str | None
|
|
98
98
|
:type undo: bool | None
|
|
99
99
|
:param action: Action, Selection action to execute
|
|
@@ -113,7 +113,7 @@ def face_select_all(
|
|
|
113
113
|
"""
|
|
114
114
|
|
|
115
115
|
def face_select_hide(
|
|
116
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
116
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
117
117
|
execution_context: int | str | None = None,
|
|
118
118
|
undo: bool | None = None,
|
|
119
119
|
*,
|
|
@@ -121,7 +121,7 @@ def face_select_hide(
|
|
|
121
121
|
):
|
|
122
122
|
"""Hide selected faces
|
|
123
123
|
|
|
124
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
124
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
125
125
|
:type execution_context: int | str | None
|
|
126
126
|
:type undo: bool | None
|
|
127
127
|
:param unselected: Unselected, Hide unselected rather than selected objects
|
|
@@ -129,7 +129,7 @@ def face_select_hide(
|
|
|
129
129
|
"""
|
|
130
130
|
|
|
131
131
|
def face_select_less(
|
|
132
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
132
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
133
133
|
execution_context: int | str | None = None,
|
|
134
134
|
undo: bool | None = None,
|
|
135
135
|
*,
|
|
@@ -137,7 +137,7 @@ def face_select_less(
|
|
|
137
137
|
):
|
|
138
138
|
"""Deselect Faces connected to existing selection
|
|
139
139
|
|
|
140
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
140
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
141
141
|
:type execution_context: int | str | None
|
|
142
142
|
:type undo: bool | None
|
|
143
143
|
:param face_step: Face Step, Also deselect faces that only touch on a corner
|
|
@@ -145,19 +145,19 @@ def face_select_less(
|
|
|
145
145
|
"""
|
|
146
146
|
|
|
147
147
|
def face_select_linked(
|
|
148
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
148
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
149
149
|
execution_context: int | str | None = None,
|
|
150
150
|
undo: bool | None = None,
|
|
151
151
|
):
|
|
152
152
|
"""Select linked faces
|
|
153
153
|
|
|
154
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
154
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
155
155
|
:type execution_context: int | str | None
|
|
156
156
|
:type undo: bool | None
|
|
157
157
|
"""
|
|
158
158
|
|
|
159
159
|
def face_select_linked_pick(
|
|
160
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
160
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
161
161
|
execution_context: int | str | None = None,
|
|
162
162
|
undo: bool | None = None,
|
|
163
163
|
*,
|
|
@@ -165,7 +165,7 @@ def face_select_linked_pick(
|
|
|
165
165
|
):
|
|
166
166
|
"""Select linked faces under the cursor
|
|
167
167
|
|
|
168
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
168
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
169
169
|
:type execution_context: int | str | None
|
|
170
170
|
:type undo: bool | None
|
|
171
171
|
:param deselect: Deselect, Deselect rather than select items
|
|
@@ -173,7 +173,7 @@ def face_select_linked_pick(
|
|
|
173
173
|
"""
|
|
174
174
|
|
|
175
175
|
def face_select_loop(
|
|
176
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
176
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
177
177
|
execution_context: int | str | None = None,
|
|
178
178
|
undo: bool | None = None,
|
|
179
179
|
*,
|
|
@@ -182,7 +182,7 @@ def face_select_loop(
|
|
|
182
182
|
):
|
|
183
183
|
"""Select face loop under the cursor
|
|
184
184
|
|
|
185
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
185
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
186
186
|
:type execution_context: int | str | None
|
|
187
187
|
:type undo: bool | None
|
|
188
188
|
:param select: Select, If false, faces will be deselected
|
|
@@ -192,7 +192,7 @@ def face_select_loop(
|
|
|
192
192
|
"""
|
|
193
193
|
|
|
194
194
|
def face_select_more(
|
|
195
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
195
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
196
196
|
execution_context: int | str | None = None,
|
|
197
197
|
undo: bool | None = None,
|
|
198
198
|
*,
|
|
@@ -200,7 +200,7 @@ def face_select_more(
|
|
|
200
200
|
):
|
|
201
201
|
"""Select Faces connected to existing selection
|
|
202
202
|
|
|
203
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
203
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
204
204
|
:type execution_context: int | str | None
|
|
205
205
|
:type undo: bool | None
|
|
206
206
|
:param face_step: Face Step, Also select faces that only touch on a corner
|
|
@@ -208,7 +208,7 @@ def face_select_more(
|
|
|
208
208
|
"""
|
|
209
209
|
|
|
210
210
|
def face_vert_reveal(
|
|
211
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
211
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
212
212
|
execution_context: int | str | None = None,
|
|
213
213
|
undo: bool | None = None,
|
|
214
214
|
*,
|
|
@@ -216,7 +216,7 @@ def face_vert_reveal(
|
|
|
216
216
|
):
|
|
217
217
|
"""Reveal hidden faces and vertices
|
|
218
218
|
|
|
219
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
219
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
220
220
|
:type execution_context: int | str | None
|
|
221
221
|
:type undo: bool | None
|
|
222
222
|
:param select: Select, Specifies whether the newly revealed geometry should be selected
|
|
@@ -224,7 +224,7 @@ def face_vert_reveal(
|
|
|
224
224
|
"""
|
|
225
225
|
|
|
226
226
|
def grab_clone(
|
|
227
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
227
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
228
228
|
execution_context: int | str | None = None,
|
|
229
229
|
undo: bool | None = None,
|
|
230
230
|
*,
|
|
@@ -232,7 +232,7 @@ def grab_clone(
|
|
|
232
232
|
):
|
|
233
233
|
"""Move the clone source image
|
|
234
234
|
|
|
235
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
235
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
236
236
|
:type execution_context: int | str | None
|
|
237
237
|
:type undo: bool | None
|
|
238
238
|
:param delta: Delta, Delta offset of clone image in 0.0 to 1.0 coordinates
|
|
@@ -240,7 +240,7 @@ def grab_clone(
|
|
|
240
240
|
"""
|
|
241
241
|
|
|
242
242
|
def hide_show(
|
|
243
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
243
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
244
244
|
execution_context: int | str | None = None,
|
|
245
245
|
undo: bool | None = None,
|
|
246
246
|
*,
|
|
@@ -255,7 +255,7 @@ def hide_show(
|
|
|
255
255
|
):
|
|
256
256
|
"""Hide/show some vertices
|
|
257
257
|
|
|
258
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
258
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
259
259
|
:type execution_context: int | str | None
|
|
260
260
|
:type undo: bool | None
|
|
261
261
|
:param xmin: X Min
|
|
@@ -289,7 +289,7 @@ def hide_show(
|
|
|
289
289
|
"""
|
|
290
290
|
|
|
291
291
|
def hide_show_all(
|
|
292
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
292
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
293
293
|
execution_context: int | str | None = None,
|
|
294
294
|
undo: bool | None = None,
|
|
295
295
|
*,
|
|
@@ -297,7 +297,7 @@ def hide_show_all(
|
|
|
297
297
|
):
|
|
298
298
|
"""Hide/show all vertices
|
|
299
299
|
|
|
300
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
300
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
301
301
|
:type execution_context: int | str | None
|
|
302
302
|
:type undo: bool | None
|
|
303
303
|
:param action: Visibility Action, Whether to hide or show vertices
|
|
@@ -311,7 +311,7 @@ def hide_show_all(
|
|
|
311
311
|
"""
|
|
312
312
|
|
|
313
313
|
def hide_show_lasso_gesture(
|
|
314
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
314
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
315
315
|
execution_context: int | str | None = None,
|
|
316
316
|
undo: bool | None = None,
|
|
317
317
|
*,
|
|
@@ -325,7 +325,7 @@ def hide_show_lasso_gesture(
|
|
|
325
325
|
):
|
|
326
326
|
"""Hide/show some 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] | None
|
|
329
329
|
:type execution_context: int | str | None
|
|
330
330
|
:type undo: bool | None
|
|
331
331
|
:param path: Path
|
|
@@ -357,7 +357,7 @@ def hide_show_lasso_gesture(
|
|
|
357
357
|
"""
|
|
358
358
|
|
|
359
359
|
def hide_show_line_gesture(
|
|
360
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
360
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
361
361
|
execution_context: int | str | None = None,
|
|
362
362
|
undo: bool | None = None,
|
|
363
363
|
*,
|
|
@@ -374,7 +374,7 @@ def hide_show_line_gesture(
|
|
|
374
374
|
):
|
|
375
375
|
"""Hide/show some vertices
|
|
376
376
|
|
|
377
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
377
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
378
378
|
:type execution_context: int | str | None
|
|
379
379
|
:type undo: bool | None
|
|
380
380
|
:param xstart: X Start
|
|
@@ -412,7 +412,7 @@ def hide_show_line_gesture(
|
|
|
412
412
|
"""
|
|
413
413
|
|
|
414
414
|
def hide_show_masked(
|
|
415
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
415
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
416
416
|
execution_context: int | str | None = None,
|
|
417
417
|
undo: bool | None = None,
|
|
418
418
|
*,
|
|
@@ -420,7 +420,7 @@ def hide_show_masked(
|
|
|
420
420
|
):
|
|
421
421
|
"""Hide/show all masked vertices above a threshold
|
|
422
422
|
|
|
423
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
423
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
424
424
|
:type execution_context: int | str | None
|
|
425
425
|
:type undo: bool | None
|
|
426
426
|
:param action: Visibility Action, Whether to hide or show vertices
|
|
@@ -434,7 +434,7 @@ def hide_show_masked(
|
|
|
434
434
|
"""
|
|
435
435
|
|
|
436
436
|
def hide_show_polyline_gesture(
|
|
437
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
437
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
438
438
|
execution_context: int | str | None = None,
|
|
439
439
|
undo: bool | None = None,
|
|
440
440
|
*,
|
|
@@ -445,7 +445,7 @@ def hide_show_polyline_gesture(
|
|
|
445
445
|
):
|
|
446
446
|
"""Hide/show some vertices
|
|
447
447
|
|
|
448
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
448
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
449
449
|
:type execution_context: int | str | None
|
|
450
450
|
:type undo: bool | None
|
|
451
451
|
:param path: Path
|
|
@@ -471,7 +471,7 @@ def hide_show_polyline_gesture(
|
|
|
471
471
|
"""
|
|
472
472
|
|
|
473
473
|
def image_from_view(
|
|
474
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
474
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
475
475
|
execution_context: int | str | None = None,
|
|
476
476
|
undo: bool | None = None,
|
|
477
477
|
*,
|
|
@@ -479,7 +479,7 @@ def image_from_view(
|
|
|
479
479
|
):
|
|
480
480
|
"""Make an image from biggest 3D view for reprojection
|
|
481
481
|
|
|
482
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
482
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
483
483
|
:type execution_context: int | str | None
|
|
484
484
|
:type undo: bool | None
|
|
485
485
|
:param filepath: File Path, Name of the file
|
|
@@ -487,7 +487,7 @@ def image_from_view(
|
|
|
487
487
|
"""
|
|
488
488
|
|
|
489
489
|
def image_paint(
|
|
490
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
490
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
491
491
|
execution_context: int | str | None = None,
|
|
492
492
|
undo: bool | None = None,
|
|
493
493
|
*,
|
|
@@ -497,7 +497,7 @@ def image_paint(
|
|
|
497
497
|
):
|
|
498
498
|
"""Paint a stroke into the image
|
|
499
499
|
|
|
500
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
500
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
501
501
|
:type execution_context: int | str | None
|
|
502
502
|
:type undo: bool | None
|
|
503
503
|
:param stroke: Stroke
|
|
@@ -519,7 +519,7 @@ def image_paint(
|
|
|
519
519
|
"""
|
|
520
520
|
|
|
521
521
|
def mask_box_gesture(
|
|
522
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
522
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
523
523
|
execution_context: int | str | None = None,
|
|
524
524
|
undo: bool | None = None,
|
|
525
525
|
*,
|
|
@@ -534,7 +534,7 @@ def mask_box_gesture(
|
|
|
534
534
|
):
|
|
535
535
|
"""Mask within a rectangle defined by the cursor
|
|
536
536
|
|
|
537
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
537
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
538
538
|
:type execution_context: int | str | None
|
|
539
539
|
:type undo: bool | None
|
|
540
540
|
:param xmin: X Min
|
|
@@ -565,7 +565,7 @@ def mask_box_gesture(
|
|
|
565
565
|
"""
|
|
566
566
|
|
|
567
567
|
def mask_flood_fill(
|
|
568
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
568
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
569
569
|
execution_context: int | str | None = None,
|
|
570
570
|
undo: bool | None = None,
|
|
571
571
|
*,
|
|
@@ -574,7 +574,7 @@ def mask_flood_fill(
|
|
|
574
574
|
):
|
|
575
575
|
"""Fill the whole mask with a given value, or invert its values
|
|
576
576
|
|
|
577
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
577
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
578
578
|
:type execution_context: int | str | None
|
|
579
579
|
:type undo: bool | None
|
|
580
580
|
:param mode: Mode
|
|
@@ -593,7 +593,7 @@ def mask_flood_fill(
|
|
|
593
593
|
"""
|
|
594
594
|
|
|
595
595
|
def mask_lasso_gesture(
|
|
596
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
596
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
597
597
|
execution_context: int | str | None = None,
|
|
598
598
|
undo: bool | None = None,
|
|
599
599
|
*,
|
|
@@ -607,7 +607,7 @@ def mask_lasso_gesture(
|
|
|
607
607
|
):
|
|
608
608
|
"""Mask within a shape defined by the cursor
|
|
609
609
|
|
|
610
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
610
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
611
611
|
:type execution_context: int | str | None
|
|
612
612
|
:type undo: bool | None
|
|
613
613
|
:param path: Path
|
|
@@ -636,7 +636,7 @@ def mask_lasso_gesture(
|
|
|
636
636
|
"""
|
|
637
637
|
|
|
638
638
|
def mask_line_gesture(
|
|
639
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
639
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
640
640
|
execution_context: int | str | None = None,
|
|
641
641
|
undo: bool | None = None,
|
|
642
642
|
*,
|
|
@@ -653,7 +653,7 @@ def mask_line_gesture(
|
|
|
653
653
|
):
|
|
654
654
|
"""Mask to one side of a line 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] | None
|
|
657
657
|
:type execution_context: int | str | None
|
|
658
658
|
:type undo: bool | None
|
|
659
659
|
:param xstart: X Start
|
|
@@ -688,7 +688,7 @@ def mask_line_gesture(
|
|
|
688
688
|
"""
|
|
689
689
|
|
|
690
690
|
def mask_polyline_gesture(
|
|
691
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
691
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
692
692
|
execution_context: int | str | None = None,
|
|
693
693
|
undo: bool | None = None,
|
|
694
694
|
*,
|
|
@@ -699,7 +699,7 @@ def mask_polyline_gesture(
|
|
|
699
699
|
):
|
|
700
700
|
"""Mask within a shape defined by the cursor
|
|
701
701
|
|
|
702
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
702
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
703
703
|
:type execution_context: int | str | None
|
|
704
704
|
:type undo: bool | None
|
|
705
705
|
:param path: Path
|
|
@@ -722,7 +722,7 @@ def mask_polyline_gesture(
|
|
|
722
722
|
"""
|
|
723
723
|
|
|
724
724
|
def project_image(
|
|
725
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
725
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
726
726
|
execution_context: int | str | None = None,
|
|
727
727
|
undo: bool | None = None,
|
|
728
728
|
*,
|
|
@@ -730,7 +730,7 @@ def project_image(
|
|
|
730
730
|
):
|
|
731
731
|
"""Project an edited render from the active camera back onto the object
|
|
732
732
|
|
|
733
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
733
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
734
734
|
:type execution_context: int | str | None
|
|
735
735
|
:type undo: bool | None
|
|
736
736
|
:param image: Image
|
|
@@ -738,7 +738,7 @@ def project_image(
|
|
|
738
738
|
"""
|
|
739
739
|
|
|
740
740
|
def sample_color(
|
|
741
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
741
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
742
742
|
execution_context: int | str | None = None,
|
|
743
743
|
undo: bool | None = None,
|
|
744
744
|
*,
|
|
@@ -748,7 +748,7 @@ def sample_color(
|
|
|
748
748
|
):
|
|
749
749
|
"""Use the mouse to sample a color in the image
|
|
750
750
|
|
|
751
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
751
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
752
752
|
:type execution_context: int | str | None
|
|
753
753
|
:type undo: bool | None
|
|
754
754
|
:param location: Location
|
|
@@ -760,19 +760,19 @@ def sample_color(
|
|
|
760
760
|
"""
|
|
761
761
|
|
|
762
762
|
def texture_paint_toggle(
|
|
763
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
763
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
764
764
|
execution_context: int | str | None = None,
|
|
765
765
|
undo: bool | None = None,
|
|
766
766
|
):
|
|
767
767
|
"""Toggle texture paint mode in 3D view
|
|
768
768
|
|
|
769
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
769
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
770
770
|
:type execution_context: int | str | None
|
|
771
771
|
:type undo: bool | None
|
|
772
772
|
"""
|
|
773
773
|
|
|
774
774
|
def vert_select_all(
|
|
775
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
775
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
776
776
|
execution_context: int | str | None = None,
|
|
777
777
|
undo: bool | None = None,
|
|
778
778
|
*,
|
|
@@ -780,7 +780,7 @@ def vert_select_all(
|
|
|
780
780
|
):
|
|
781
781
|
"""Change selection for all vertices
|
|
782
782
|
|
|
783
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
783
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
784
784
|
:type execution_context: int | str | None
|
|
785
785
|
:type undo: bool | None
|
|
786
786
|
:param action: Action, Selection action to execute
|
|
@@ -800,7 +800,7 @@ def vert_select_all(
|
|
|
800
800
|
"""
|
|
801
801
|
|
|
802
802
|
def vert_select_hide(
|
|
803
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
803
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
804
804
|
execution_context: int | str | None = None,
|
|
805
805
|
undo: bool | None = None,
|
|
806
806
|
*,
|
|
@@ -808,7 +808,7 @@ def vert_select_hide(
|
|
|
808
808
|
):
|
|
809
809
|
"""Hide selected vertices
|
|
810
810
|
|
|
811
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
811
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
812
812
|
:type execution_context: int | str | None
|
|
813
813
|
:type undo: bool | None
|
|
814
814
|
:param unselected: Unselected, Hide unselected rather than selected vertices
|
|
@@ -816,7 +816,7 @@ def vert_select_hide(
|
|
|
816
816
|
"""
|
|
817
817
|
|
|
818
818
|
def vert_select_less(
|
|
819
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
819
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
820
820
|
execution_context: int | str | None = None,
|
|
821
821
|
undo: bool | None = None,
|
|
822
822
|
*,
|
|
@@ -824,7 +824,7 @@ def vert_select_less(
|
|
|
824
824
|
):
|
|
825
825
|
"""Deselect Vertices connected to existing selection
|
|
826
826
|
|
|
827
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
827
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
828
828
|
:type execution_context: int | str | None
|
|
829
829
|
:type undo: bool | None
|
|
830
830
|
:param face_step: Face Step, Also deselect faces that only touch on a corner
|
|
@@ -832,19 +832,19 @@ def vert_select_less(
|
|
|
832
832
|
"""
|
|
833
833
|
|
|
834
834
|
def vert_select_linked(
|
|
835
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
835
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
836
836
|
execution_context: int | str | None = None,
|
|
837
837
|
undo: bool | None = None,
|
|
838
838
|
):
|
|
839
839
|
"""Select linked 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] | None
|
|
842
842
|
:type execution_context: int | str | None
|
|
843
843
|
:type undo: bool | None
|
|
844
844
|
"""
|
|
845
845
|
|
|
846
846
|
def vert_select_linked_pick(
|
|
847
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
847
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
848
848
|
execution_context: int | str | None = None,
|
|
849
849
|
undo: bool | None = None,
|
|
850
850
|
*,
|
|
@@ -852,7 +852,7 @@ def vert_select_linked_pick(
|
|
|
852
852
|
):
|
|
853
853
|
"""Select linked vertices under the cursor
|
|
854
854
|
|
|
855
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
855
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
856
856
|
:type execution_context: int | str | None
|
|
857
857
|
:type undo: bool | None
|
|
858
858
|
:param select: Select, Whether to select or deselect linked vertices under the cursor
|
|
@@ -860,7 +860,7 @@ def vert_select_linked_pick(
|
|
|
860
860
|
"""
|
|
861
861
|
|
|
862
862
|
def vert_select_more(
|
|
863
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
863
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
864
864
|
execution_context: int | str | None = None,
|
|
865
865
|
undo: bool | None = None,
|
|
866
866
|
*,
|
|
@@ -868,7 +868,7 @@ def vert_select_more(
|
|
|
868
868
|
):
|
|
869
869
|
"""Select Vertices connected to existing selection
|
|
870
870
|
|
|
871
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
871
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
872
872
|
:type execution_context: int | str | None
|
|
873
873
|
:type undo: bool | None
|
|
874
874
|
:param face_step: Face Step, Also select faces that only touch on a corner
|
|
@@ -876,7 +876,7 @@ def vert_select_more(
|
|
|
876
876
|
"""
|
|
877
877
|
|
|
878
878
|
def vert_select_ungrouped(
|
|
879
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
879
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
880
880
|
execution_context: int | str | None = None,
|
|
881
881
|
undo: bool | None = None,
|
|
882
882
|
*,
|
|
@@ -884,7 +884,7 @@ def vert_select_ungrouped(
|
|
|
884
884
|
):
|
|
885
885
|
"""Select vertices without a group
|
|
886
886
|
|
|
887
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
887
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
888
888
|
:type execution_context: int | str | None
|
|
889
889
|
:type undo: bool | None
|
|
890
890
|
:param extend: Extend, Extend the selection
|
|
@@ -892,7 +892,7 @@ def vert_select_ungrouped(
|
|
|
892
892
|
"""
|
|
893
893
|
|
|
894
894
|
def vertex_color_brightness_contrast(
|
|
895
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
895
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
896
896
|
execution_context: int | str | None = None,
|
|
897
897
|
undo: bool | None = None,
|
|
898
898
|
*,
|
|
@@ -901,7 +901,7 @@ def vertex_color_brightness_contrast(
|
|
|
901
901
|
):
|
|
902
902
|
"""Adjust vertex color brightness/contrast
|
|
903
903
|
|
|
904
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
904
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
905
905
|
:type execution_context: int | str | None
|
|
906
906
|
:type undo: bool | None
|
|
907
907
|
:param brightness: Brightness
|
|
@@ -911,7 +911,7 @@ def vertex_color_brightness_contrast(
|
|
|
911
911
|
"""
|
|
912
912
|
|
|
913
913
|
def vertex_color_dirt(
|
|
914
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
914
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
915
915
|
execution_context: int | str | None = None,
|
|
916
916
|
undo: bool | None = None,
|
|
917
917
|
*,
|
|
@@ -924,7 +924,7 @@ def vertex_color_dirt(
|
|
|
924
924
|
):
|
|
925
925
|
"""Generate a dirt map gradient based on cavity
|
|
926
926
|
|
|
927
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
927
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
928
928
|
:type execution_context: int | str | None
|
|
929
929
|
:type undo: bool | None
|
|
930
930
|
:param blur_strength: Blur Strength, Blur strength per iteration
|
|
@@ -942,19 +942,19 @@ def vertex_color_dirt(
|
|
|
942
942
|
"""
|
|
943
943
|
|
|
944
944
|
def vertex_color_from_weight(
|
|
945
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
945
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
946
946
|
execution_context: int | str | None = None,
|
|
947
947
|
undo: bool | None = None,
|
|
948
948
|
):
|
|
949
949
|
"""Convert active weight into gray scale vertex colors
|
|
950
950
|
|
|
951
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
951
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
952
952
|
:type execution_context: int | str | None
|
|
953
953
|
:type undo: bool | None
|
|
954
954
|
"""
|
|
955
955
|
|
|
956
956
|
def vertex_color_hsv(
|
|
957
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
957
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
958
958
|
execution_context: int | str | None = None,
|
|
959
959
|
undo: bool | None = None,
|
|
960
960
|
*,
|
|
@@ -964,7 +964,7 @@ def vertex_color_hsv(
|
|
|
964
964
|
):
|
|
965
965
|
"""Adjust vertex color Hue/Saturation/Value
|
|
966
966
|
|
|
967
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
967
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
968
968
|
:type execution_context: int | str | None
|
|
969
969
|
:type undo: bool | None
|
|
970
970
|
:param h: Hue
|
|
@@ -976,19 +976,19 @@ def vertex_color_hsv(
|
|
|
976
976
|
"""
|
|
977
977
|
|
|
978
978
|
def vertex_color_invert(
|
|
979
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
979
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
980
980
|
execution_context: int | str | None = None,
|
|
981
981
|
undo: bool | None = None,
|
|
982
982
|
):
|
|
983
983
|
"""Invert RGB values
|
|
984
984
|
|
|
985
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
985
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
986
986
|
:type execution_context: int | str | None
|
|
987
987
|
:type undo: bool | None
|
|
988
988
|
"""
|
|
989
989
|
|
|
990
990
|
def vertex_color_levels(
|
|
991
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
991
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
992
992
|
execution_context: int | str | None = None,
|
|
993
993
|
undo: bool | None = None,
|
|
994
994
|
*,
|
|
@@ -997,7 +997,7 @@ def vertex_color_levels(
|
|
|
997
997
|
):
|
|
998
998
|
"""Adjust levels of vertex colors
|
|
999
999
|
|
|
1000
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1000
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1001
1001
|
:type execution_context: int | str | None
|
|
1002
1002
|
:type undo: bool | None
|
|
1003
1003
|
:param offset: Offset, Value to add to colors
|
|
@@ -1007,7 +1007,7 @@ def vertex_color_levels(
|
|
|
1007
1007
|
"""
|
|
1008
1008
|
|
|
1009
1009
|
def vertex_color_set(
|
|
1010
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1010
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1011
1011
|
execution_context: int | str | None = None,
|
|
1012
1012
|
undo: bool | None = None,
|
|
1013
1013
|
*,
|
|
@@ -1015,7 +1015,7 @@ def vertex_color_set(
|
|
|
1015
1015
|
):
|
|
1016
1016
|
"""Fill the active vertex color layer with the current paint color
|
|
1017
1017
|
|
|
1018
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1018
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1019
1019
|
:type execution_context: int | str | None
|
|
1020
1020
|
:type undo: bool | None
|
|
1021
1021
|
:param use_alpha: Affect Alpha, Set color completely opaque instead of reusing existing alpha
|
|
@@ -1023,19 +1023,19 @@ def vertex_color_set(
|
|
|
1023
1023
|
"""
|
|
1024
1024
|
|
|
1025
1025
|
def vertex_color_smooth(
|
|
1026
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1026
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1027
1027
|
execution_context: int | str | None = None,
|
|
1028
1028
|
undo: bool | None = None,
|
|
1029
1029
|
):
|
|
1030
1030
|
"""Smooth colors across vertices
|
|
1031
1031
|
|
|
1032
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1032
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1033
1033
|
:type execution_context: int | str | None
|
|
1034
1034
|
:type undo: bool | None
|
|
1035
1035
|
"""
|
|
1036
1036
|
|
|
1037
1037
|
def vertex_paint(
|
|
1038
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1038
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1039
1039
|
execution_context: int | str | None = None,
|
|
1040
1040
|
undo: bool | None = None,
|
|
1041
1041
|
*,
|
|
@@ -1045,7 +1045,7 @@ def vertex_paint(
|
|
|
1045
1045
|
):
|
|
1046
1046
|
"""Paint a stroke in the active color attribute layer
|
|
1047
1047
|
|
|
1048
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1048
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1049
1049
|
:type execution_context: int | str | None
|
|
1050
1050
|
:type undo: bool | None
|
|
1051
1051
|
:param stroke: Stroke
|
|
@@ -1067,19 +1067,19 @@ def vertex_paint(
|
|
|
1067
1067
|
"""
|
|
1068
1068
|
|
|
1069
1069
|
def vertex_paint_toggle(
|
|
1070
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1070
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1071
1071
|
execution_context: int | str | None = None,
|
|
1072
1072
|
undo: bool | None = None,
|
|
1073
1073
|
):
|
|
1074
1074
|
"""Toggle the vertex paint mode in 3D view
|
|
1075
1075
|
|
|
1076
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1076
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1077
1077
|
:type execution_context: int | str | None
|
|
1078
1078
|
:type undo: bool | None
|
|
1079
1079
|
"""
|
|
1080
1080
|
|
|
1081
1081
|
def visibility_filter(
|
|
1082
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1082
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1083
1083
|
execution_context: int | str | None = None,
|
|
1084
1084
|
undo: bool | None = None,
|
|
1085
1085
|
*,
|
|
@@ -1089,7 +1089,7 @@ def visibility_filter(
|
|
|
1089
1089
|
):
|
|
1090
1090
|
"""Edit the visibility of the current mesh
|
|
1091
1091
|
|
|
1092
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1092
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1093
1093
|
:type execution_context: int | str | None
|
|
1094
1094
|
:type undo: bool | None
|
|
1095
1095
|
:param action: Action
|
|
@@ -1107,19 +1107,19 @@ def visibility_filter(
|
|
|
1107
1107
|
"""
|
|
1108
1108
|
|
|
1109
1109
|
def visibility_invert(
|
|
1110
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1110
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1111
1111
|
execution_context: int | str | None = None,
|
|
1112
1112
|
undo: bool | None = None,
|
|
1113
1113
|
):
|
|
1114
1114
|
"""Invert the visibility of all vertices
|
|
1115
1115
|
|
|
1116
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1116
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1117
1117
|
:type execution_context: int | str | None
|
|
1118
1118
|
:type undo: bool | None
|
|
1119
1119
|
"""
|
|
1120
1120
|
|
|
1121
1121
|
def weight_from_bones(
|
|
1122
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1122
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1123
1123
|
execution_context: int | str | None = None,
|
|
1124
1124
|
undo: bool | None = None,
|
|
1125
1125
|
*,
|
|
@@ -1127,7 +1127,7 @@ def weight_from_bones(
|
|
|
1127
1127
|
):
|
|
1128
1128
|
"""Set the weights of the groups matching the attached armature's selected bones, using the distance between the vertices and the bones
|
|
1129
1129
|
|
|
1130
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1130
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1131
1131
|
:type execution_context: int | str | None
|
|
1132
1132
|
:type undo: bool | None
|
|
1133
1133
|
:param type: Type, Method to use for assigning weights
|
|
@@ -1141,7 +1141,7 @@ def weight_from_bones(
|
|
|
1141
1141
|
"""
|
|
1142
1142
|
|
|
1143
1143
|
def weight_gradient(
|
|
1144
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1144
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1145
1145
|
execution_context: int | str | None = None,
|
|
1146
1146
|
undo: bool | None = None,
|
|
1147
1147
|
*,
|
|
@@ -1155,7 +1155,7 @@ def weight_gradient(
|
|
|
1155
1155
|
):
|
|
1156
1156
|
"""Draw a line to apply a weight gradient to selected vertices
|
|
1157
1157
|
|
|
1158
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1158
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1159
1159
|
:type execution_context: int | str | None
|
|
1160
1160
|
:type undo: bool | None
|
|
1161
1161
|
:param type: Type
|
|
@@ -1175,7 +1175,7 @@ def weight_gradient(
|
|
|
1175
1175
|
"""
|
|
1176
1176
|
|
|
1177
1177
|
def weight_paint(
|
|
1178
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1178
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1179
1179
|
execution_context: int | str | None = None,
|
|
1180
1180
|
undo: bool | None = None,
|
|
1181
1181
|
*,
|
|
@@ -1185,7 +1185,7 @@ def weight_paint(
|
|
|
1185
1185
|
):
|
|
1186
1186
|
"""Paint a stroke in the current vertex group's weights
|
|
1187
1187
|
|
|
1188
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1188
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1189
1189
|
:type execution_context: int | str | None
|
|
1190
1190
|
:type undo: bool | None
|
|
1191
1191
|
:param stroke: Stroke
|
|
@@ -1207,49 +1207,49 @@ def weight_paint(
|
|
|
1207
1207
|
"""
|
|
1208
1208
|
|
|
1209
1209
|
def weight_paint_toggle(
|
|
1210
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1210
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1211
1211
|
execution_context: int | str | None = None,
|
|
1212
1212
|
undo: bool | None = None,
|
|
1213
1213
|
):
|
|
1214
1214
|
"""Toggle weight paint mode in 3D view
|
|
1215
1215
|
|
|
1216
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1216
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1217
1217
|
:type execution_context: int | str | None
|
|
1218
1218
|
:type undo: bool | None
|
|
1219
1219
|
"""
|
|
1220
1220
|
|
|
1221
1221
|
def weight_sample(
|
|
1222
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1222
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1223
1223
|
execution_context: int | str | None = None,
|
|
1224
1224
|
undo: bool | None = None,
|
|
1225
1225
|
):
|
|
1226
1226
|
"""Use the mouse to sample a weight in the 3D view
|
|
1227
1227
|
|
|
1228
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1228
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1229
1229
|
:type execution_context: int | str | None
|
|
1230
1230
|
:type undo: bool | None
|
|
1231
1231
|
"""
|
|
1232
1232
|
|
|
1233
1233
|
def weight_sample_group(
|
|
1234
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1234
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1235
1235
|
execution_context: int | str | None = None,
|
|
1236
1236
|
undo: bool | None = None,
|
|
1237
1237
|
):
|
|
1238
1238
|
"""Select one of the vertex groups available under current mouse position
|
|
1239
1239
|
|
|
1240
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1240
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1241
1241
|
:type execution_context: int | str | None
|
|
1242
1242
|
:type undo: bool | None
|
|
1243
1243
|
"""
|
|
1244
1244
|
|
|
1245
1245
|
def weight_set(
|
|
1246
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1246
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1247
1247
|
execution_context: int | str | None = None,
|
|
1248
1248
|
undo: bool | None = None,
|
|
1249
1249
|
):
|
|
1250
1250
|
"""Fill the active vertex group with the current paint weight
|
|
1251
1251
|
|
|
1252
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1252
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1253
1253
|
:type execution_context: int | str | None
|
|
1254
1254
|
:type undo: bool | None
|
|
1255
1255
|
"""
|