fake-bpy-module 20240812__py3-none-any.whl → 20240814__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 +52 -36
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240814.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240814.dist-info}/RECORD +83 -83
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240814.dist-info}/WHEEL +1 -1
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240814.dist-info}/top_level.txt +0 -0
bpy/ops/mask/__init__.pyi
CHANGED
|
@@ -9,7 +9,7 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
9
9
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
10
10
|
|
|
11
11
|
def add_feather_vertex(
|
|
12
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
12
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
13
13
|
execution_context: int | str | None = None,
|
|
14
14
|
undo: bool | None = None,
|
|
15
15
|
*,
|
|
@@ -17,7 +17,7 @@ def add_feather_vertex(
|
|
|
17
17
|
):
|
|
18
18
|
"""Add vertex to feather
|
|
19
19
|
|
|
20
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
20
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
21
21
|
:type execution_context: int | str | None
|
|
22
22
|
:type undo: bool | None
|
|
23
23
|
:param location: Location, Location of vertex in normalized space
|
|
@@ -27,7 +27,7 @@ def add_feather_vertex(
|
|
|
27
27
|
...
|
|
28
28
|
|
|
29
29
|
def add_feather_vertex_slide(
|
|
30
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
30
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
31
31
|
execution_context: int | str | None = None,
|
|
32
32
|
undo: bool | None = None,
|
|
33
33
|
*,
|
|
@@ -36,7 +36,7 @@ def add_feather_vertex_slide(
|
|
|
36
36
|
):
|
|
37
37
|
"""Add new vertex to feather and slide it
|
|
38
38
|
|
|
39
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
39
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
40
40
|
:type execution_context: int | str | None
|
|
41
41
|
:type undo: bool | None
|
|
42
42
|
:param MASK_OT_add_feather_vertex: Add Feather Vertex, Add vertex to feather
|
|
@@ -48,7 +48,7 @@ def add_feather_vertex_slide(
|
|
|
48
48
|
...
|
|
49
49
|
|
|
50
50
|
def add_vertex(
|
|
51
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
51
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
52
52
|
execution_context: int | str | None = None,
|
|
53
53
|
undo: bool | None = None,
|
|
54
54
|
*,
|
|
@@ -56,7 +56,7 @@ def add_vertex(
|
|
|
56
56
|
):
|
|
57
57
|
"""Add vertex to active spline
|
|
58
58
|
|
|
59
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
59
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
60
60
|
:type execution_context: int | str | None
|
|
61
61
|
:type undo: bool | None
|
|
62
62
|
:param location: Location, Location of vertex in normalized space
|
|
@@ -66,7 +66,7 @@ def add_vertex(
|
|
|
66
66
|
...
|
|
67
67
|
|
|
68
68
|
def add_vertex_slide(
|
|
69
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
69
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
70
70
|
execution_context: int | str | None = None,
|
|
71
71
|
undo: bool | None = None,
|
|
72
72
|
*,
|
|
@@ -75,7 +75,7 @@ def add_vertex_slide(
|
|
|
75
75
|
):
|
|
76
76
|
"""Add new vertex and slide it
|
|
77
77
|
|
|
78
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
78
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
79
79
|
:type execution_context: int | str | None
|
|
80
80
|
:type undo: bool | None
|
|
81
81
|
:param MASK_OT_add_vertex: Add Vertex, Add vertex to active spline
|
|
@@ -87,13 +87,13 @@ def add_vertex_slide(
|
|
|
87
87
|
...
|
|
88
88
|
|
|
89
89
|
def copy_splines(
|
|
90
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
90
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
91
91
|
execution_context: int | str | None = None,
|
|
92
92
|
undo: bool | None = None,
|
|
93
93
|
):
|
|
94
94
|
"""Copy the selected splines to the internal clipboard
|
|
95
95
|
|
|
96
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
96
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
97
97
|
:type execution_context: int | str | None
|
|
98
98
|
:type undo: bool | None
|
|
99
99
|
"""
|
|
@@ -101,13 +101,13 @@ def copy_splines(
|
|
|
101
101
|
...
|
|
102
102
|
|
|
103
103
|
def cyclic_toggle(
|
|
104
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
104
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
105
105
|
execution_context: int | str | None = None,
|
|
106
106
|
undo: bool | None = None,
|
|
107
107
|
):
|
|
108
108
|
"""Toggle cyclic for selected splines
|
|
109
109
|
|
|
110
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
110
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
111
111
|
:type execution_context: int | str | None
|
|
112
112
|
:type undo: bool | None
|
|
113
113
|
"""
|
|
@@ -115,7 +115,7 @@ def cyclic_toggle(
|
|
|
115
115
|
...
|
|
116
116
|
|
|
117
117
|
def delete(
|
|
118
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
118
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
119
119
|
execution_context: int | str | None = None,
|
|
120
120
|
undo: bool | None = None,
|
|
121
121
|
*,
|
|
@@ -123,7 +123,7 @@ def delete(
|
|
|
123
123
|
):
|
|
124
124
|
"""Delete selected control points or splines
|
|
125
125
|
|
|
126
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
126
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
127
127
|
:type execution_context: int | str | None
|
|
128
128
|
:type undo: bool | None
|
|
129
129
|
:param confirm: Confirm, Prompt for confirmation
|
|
@@ -133,13 +133,13 @@ def delete(
|
|
|
133
133
|
...
|
|
134
134
|
|
|
135
135
|
def duplicate(
|
|
136
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
136
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
137
137
|
execution_context: int | str | None = None,
|
|
138
138
|
undo: bool | None = None,
|
|
139
139
|
):
|
|
140
140
|
"""Duplicate selected control points and segments between them
|
|
141
141
|
|
|
142
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
142
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
143
143
|
:type execution_context: int | str | None
|
|
144
144
|
:type undo: bool | None
|
|
145
145
|
"""
|
|
@@ -147,7 +147,7 @@ def duplicate(
|
|
|
147
147
|
...
|
|
148
148
|
|
|
149
149
|
def duplicate_move(
|
|
150
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
150
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
151
151
|
execution_context: int | str | None = None,
|
|
152
152
|
undo: bool | None = None,
|
|
153
153
|
*,
|
|
@@ -156,7 +156,7 @@ def duplicate_move(
|
|
|
156
156
|
):
|
|
157
157
|
"""Duplicate mask and move
|
|
158
158
|
|
|
159
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
159
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
160
160
|
:type execution_context: int | str | None
|
|
161
161
|
:type undo: bool | None
|
|
162
162
|
:param MASK_OT_duplicate: Duplicate Mask, Duplicate selected control points and segments between them
|
|
@@ -168,13 +168,13 @@ def duplicate_move(
|
|
|
168
168
|
...
|
|
169
169
|
|
|
170
170
|
def feather_weight_clear(
|
|
171
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
171
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
172
172
|
execution_context: int | str | None = None,
|
|
173
173
|
undo: bool | None = None,
|
|
174
174
|
):
|
|
175
175
|
"""Reset the feather weight to zero
|
|
176
176
|
|
|
177
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
177
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
178
178
|
:type execution_context: int | str | None
|
|
179
179
|
:type undo: bool | None
|
|
180
180
|
"""
|
|
@@ -182,7 +182,7 @@ def feather_weight_clear(
|
|
|
182
182
|
...
|
|
183
183
|
|
|
184
184
|
def handle_type_set(
|
|
185
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
185
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
186
186
|
execution_context: int | str | None = None,
|
|
187
187
|
undo: bool | None = None,
|
|
188
188
|
*,
|
|
@@ -191,7 +191,7 @@ def handle_type_set(
|
|
|
191
191
|
):
|
|
192
192
|
"""Set type of handles for selected control points
|
|
193
193
|
|
|
194
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
194
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
195
195
|
:type execution_context: int | str | None
|
|
196
196
|
:type undo: bool | None
|
|
197
197
|
:param type: Type, Spline type
|
|
@@ -201,7 +201,7 @@ def handle_type_set(
|
|
|
201
201
|
...
|
|
202
202
|
|
|
203
203
|
def hide_view_clear(
|
|
204
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
204
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
205
205
|
execution_context: int | str | None = None,
|
|
206
206
|
undo: bool | None = None,
|
|
207
207
|
*,
|
|
@@ -209,7 +209,7 @@ def hide_view_clear(
|
|
|
209
209
|
):
|
|
210
210
|
"""Reveal temporarily hidden mask layers
|
|
211
211
|
|
|
212
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
212
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
213
213
|
:type execution_context: int | str | None
|
|
214
214
|
:type undo: bool | None
|
|
215
215
|
:param select: Select
|
|
@@ -219,7 +219,7 @@ def hide_view_clear(
|
|
|
219
219
|
...
|
|
220
220
|
|
|
221
221
|
def hide_view_set(
|
|
222
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
222
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
223
223
|
execution_context: int | str | None = None,
|
|
224
224
|
undo: bool | None = None,
|
|
225
225
|
*,
|
|
@@ -227,7 +227,7 @@ def hide_view_set(
|
|
|
227
227
|
):
|
|
228
228
|
"""Temporarily hide mask layers
|
|
229
229
|
|
|
230
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
230
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
231
231
|
:type execution_context: int | str | None
|
|
232
232
|
:type undo: bool | None
|
|
233
233
|
:param unselected: Unselected, Hide unselected rather than selected layers
|
|
@@ -237,7 +237,7 @@ def hide_view_set(
|
|
|
237
237
|
...
|
|
238
238
|
|
|
239
239
|
def layer_move(
|
|
240
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
240
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
241
241
|
execution_context: int | str | None = None,
|
|
242
242
|
undo: bool | None = None,
|
|
243
243
|
*,
|
|
@@ -245,7 +245,7 @@ def layer_move(
|
|
|
245
245
|
):
|
|
246
246
|
"""Move the active layer up/down in the list
|
|
247
247
|
|
|
248
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
248
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
249
249
|
:type execution_context: int | str | None
|
|
250
250
|
:type undo: bool | None
|
|
251
251
|
:param direction: Direction, Direction to move the active layer
|
|
@@ -255,7 +255,7 @@ def layer_move(
|
|
|
255
255
|
...
|
|
256
256
|
|
|
257
257
|
def layer_new(
|
|
258
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
258
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
259
259
|
execution_context: int | str | None = None,
|
|
260
260
|
undo: bool | None = None,
|
|
261
261
|
*,
|
|
@@ -263,7 +263,7 @@ def layer_new(
|
|
|
263
263
|
):
|
|
264
264
|
"""Add new mask layer for masking
|
|
265
265
|
|
|
266
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
266
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
267
267
|
:type execution_context: int | str | None
|
|
268
268
|
:type undo: bool | None
|
|
269
269
|
:param name: Name, Name of new mask layer
|
|
@@ -273,13 +273,13 @@ def layer_new(
|
|
|
273
273
|
...
|
|
274
274
|
|
|
275
275
|
def layer_remove(
|
|
276
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
276
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
277
277
|
execution_context: int | str | None = None,
|
|
278
278
|
undo: bool | None = None,
|
|
279
279
|
):
|
|
280
280
|
"""Remove mask layer
|
|
281
281
|
|
|
282
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
282
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
283
283
|
:type execution_context: int | str | None
|
|
284
284
|
:type undo: bool | None
|
|
285
285
|
"""
|
|
@@ -287,7 +287,7 @@ def layer_remove(
|
|
|
287
287
|
...
|
|
288
288
|
|
|
289
289
|
def new(
|
|
290
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
290
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
291
291
|
execution_context: int | str | None = None,
|
|
292
292
|
undo: bool | None = None,
|
|
293
293
|
*,
|
|
@@ -295,7 +295,7 @@ def new(
|
|
|
295
295
|
):
|
|
296
296
|
"""Create new mask
|
|
297
297
|
|
|
298
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
298
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
299
299
|
:type execution_context: int | str | None
|
|
300
300
|
:type undo: bool | None
|
|
301
301
|
:param name: Name, Name of new mask
|
|
@@ -305,13 +305,13 @@ def new(
|
|
|
305
305
|
...
|
|
306
306
|
|
|
307
307
|
def normals_make_consistent(
|
|
308
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
308
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
309
309
|
execution_context: int | str | None = None,
|
|
310
310
|
undo: bool | None = None,
|
|
311
311
|
):
|
|
312
312
|
"""Recalculate the direction of selected handles
|
|
313
313
|
|
|
314
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
314
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
315
315
|
:type execution_context: int | str | None
|
|
316
316
|
:type undo: bool | None
|
|
317
317
|
"""
|
|
@@ -319,13 +319,13 @@ def normals_make_consistent(
|
|
|
319
319
|
...
|
|
320
320
|
|
|
321
321
|
def parent_clear(
|
|
322
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
322
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
323
323
|
execution_context: int | str | None = None,
|
|
324
324
|
undo: bool | None = None,
|
|
325
325
|
):
|
|
326
326
|
"""Clear the mask's parenting
|
|
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
|
"""
|
|
@@ -333,13 +333,13 @@ def parent_clear(
|
|
|
333
333
|
...
|
|
334
334
|
|
|
335
335
|
def parent_set(
|
|
336
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
336
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
337
337
|
execution_context: int | str | None = None,
|
|
338
338
|
undo: bool | None = None,
|
|
339
339
|
):
|
|
340
340
|
"""Set the mask's parenting
|
|
341
341
|
|
|
342
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
342
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
343
343
|
:type execution_context: int | str | None
|
|
344
344
|
:type undo: bool | None
|
|
345
345
|
"""
|
|
@@ -347,13 +347,13 @@ def parent_set(
|
|
|
347
347
|
...
|
|
348
348
|
|
|
349
349
|
def paste_splines(
|
|
350
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
350
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
351
351
|
execution_context: int | str | None = None,
|
|
352
352
|
undo: bool | None = None,
|
|
353
353
|
):
|
|
354
354
|
"""Paste splines from the internal clipboard
|
|
355
355
|
|
|
356
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
356
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
357
357
|
:type execution_context: int | str | None
|
|
358
358
|
:type undo: bool | None
|
|
359
359
|
"""
|
|
@@ -361,7 +361,7 @@ def paste_splines(
|
|
|
361
361
|
...
|
|
362
362
|
|
|
363
363
|
def primitive_circle_add(
|
|
364
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
364
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
365
365
|
execution_context: int | str | None = None,
|
|
366
366
|
undo: bool | None = None,
|
|
367
367
|
*,
|
|
@@ -370,7 +370,7 @@ def primitive_circle_add(
|
|
|
370
370
|
):
|
|
371
371
|
"""Add new circle-shaped spline
|
|
372
372
|
|
|
373
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
373
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
374
374
|
:type execution_context: int | str | None
|
|
375
375
|
:type undo: bool | None
|
|
376
376
|
:param size: Size, Size of new circle
|
|
@@ -382,7 +382,7 @@ def primitive_circle_add(
|
|
|
382
382
|
...
|
|
383
383
|
|
|
384
384
|
def primitive_square_add(
|
|
385
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
385
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
386
386
|
execution_context: int | str | None = None,
|
|
387
387
|
undo: bool | None = None,
|
|
388
388
|
*,
|
|
@@ -391,7 +391,7 @@ def primitive_square_add(
|
|
|
391
391
|
):
|
|
392
392
|
"""Add new square-shaped spline
|
|
393
393
|
|
|
394
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
394
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
395
395
|
:type execution_context: int | str | None
|
|
396
396
|
:type undo: bool | None
|
|
397
397
|
:param size: Size, Size of new circle
|
|
@@ -403,7 +403,7 @@ def primitive_square_add(
|
|
|
403
403
|
...
|
|
404
404
|
|
|
405
405
|
def select(
|
|
406
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
406
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
407
407
|
execution_context: int | str | None = None,
|
|
408
408
|
undo: bool | None = None,
|
|
409
409
|
*,
|
|
@@ -416,7 +416,7 @@ def select(
|
|
|
416
416
|
):
|
|
417
417
|
"""Select spline points
|
|
418
418
|
|
|
419
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
419
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
420
420
|
:type execution_context: int | str | None
|
|
421
421
|
:type undo: bool | None
|
|
422
422
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -436,7 +436,7 @@ def select(
|
|
|
436
436
|
...
|
|
437
437
|
|
|
438
438
|
def select_all(
|
|
439
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
439
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
440
440
|
execution_context: int | str | None = None,
|
|
441
441
|
undo: bool | None = None,
|
|
442
442
|
*,
|
|
@@ -444,7 +444,7 @@ def select_all(
|
|
|
444
444
|
):
|
|
445
445
|
"""Change selection of all curve points
|
|
446
446
|
|
|
447
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
447
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
448
448
|
:type execution_context: int | str | None
|
|
449
449
|
:type undo: bool | None
|
|
450
450
|
:param action: Action, Selection action to execute
|
|
@@ -466,7 +466,7 @@ def select_all(
|
|
|
466
466
|
...
|
|
467
467
|
|
|
468
468
|
def select_box(
|
|
469
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
469
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
470
470
|
execution_context: int | str | None = None,
|
|
471
471
|
undo: bool | None = None,
|
|
472
472
|
*,
|
|
@@ -479,7 +479,7 @@ def select_box(
|
|
|
479
479
|
):
|
|
480
480
|
"""Select curve points using box selection
|
|
481
481
|
|
|
482
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
482
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
483
483
|
:type execution_context: int | str | None
|
|
484
484
|
:type undo: bool | None
|
|
485
485
|
:param xmin: X Min
|
|
@@ -508,7 +508,7 @@ def select_box(
|
|
|
508
508
|
...
|
|
509
509
|
|
|
510
510
|
def select_circle(
|
|
511
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
511
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
512
512
|
execution_context: int | str | None = None,
|
|
513
513
|
undo: bool | None = None,
|
|
514
514
|
*,
|
|
@@ -520,7 +520,7 @@ def select_circle(
|
|
|
520
520
|
):
|
|
521
521
|
"""Select curve points using circle selection
|
|
522
522
|
|
|
523
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
523
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
524
524
|
:type execution_context: int | str | None
|
|
525
525
|
:type undo: bool | None
|
|
526
526
|
:param x: X
|
|
@@ -547,7 +547,7 @@ def select_circle(
|
|
|
547
547
|
...
|
|
548
548
|
|
|
549
549
|
def select_lasso(
|
|
550
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
550
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
551
551
|
execution_context: int | str | None = None,
|
|
552
552
|
undo: bool | None = None,
|
|
553
553
|
*,
|
|
@@ -559,7 +559,7 @@ def select_lasso(
|
|
|
559
559
|
):
|
|
560
560
|
"""Select curve points using lasso selection
|
|
561
561
|
|
|
562
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
562
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
563
563
|
:type execution_context: int | str | None
|
|
564
564
|
:type undo: bool | None
|
|
565
565
|
:param path: Path
|
|
@@ -586,13 +586,13 @@ def select_lasso(
|
|
|
586
586
|
...
|
|
587
587
|
|
|
588
588
|
def select_less(
|
|
589
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
589
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
590
590
|
execution_context: int | str | None = None,
|
|
591
591
|
undo: bool | None = None,
|
|
592
592
|
):
|
|
593
593
|
"""Deselect spline points at the boundary of each selection region
|
|
594
594
|
|
|
595
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
595
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
596
596
|
:type execution_context: int | str | None
|
|
597
597
|
:type undo: bool | None
|
|
598
598
|
"""
|
|
@@ -600,13 +600,13 @@ def select_less(
|
|
|
600
600
|
...
|
|
601
601
|
|
|
602
602
|
def select_linked(
|
|
603
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
603
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
604
604
|
execution_context: int | str | None = None,
|
|
605
605
|
undo: bool | None = None,
|
|
606
606
|
):
|
|
607
607
|
"""Select all curve points linked to already selected ones
|
|
608
608
|
|
|
609
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
609
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
610
610
|
:type execution_context: int | str | None
|
|
611
611
|
:type undo: bool | None
|
|
612
612
|
"""
|
|
@@ -614,7 +614,7 @@ def select_linked(
|
|
|
614
614
|
...
|
|
615
615
|
|
|
616
616
|
def select_linked_pick(
|
|
617
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
617
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
618
618
|
execution_context: int | str | None = None,
|
|
619
619
|
undo: bool | None = None,
|
|
620
620
|
*,
|
|
@@ -622,7 +622,7 @@ def select_linked_pick(
|
|
|
622
622
|
):
|
|
623
623
|
"""(De)select all points linked to the curve under the mouse cursor
|
|
624
624
|
|
|
625
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
625
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
626
626
|
:type execution_context: int | str | None
|
|
627
627
|
:type undo: bool | None
|
|
628
628
|
:param deselect: Deselect
|
|
@@ -632,13 +632,13 @@ def select_linked_pick(
|
|
|
632
632
|
...
|
|
633
633
|
|
|
634
634
|
def select_more(
|
|
635
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
635
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
636
636
|
execution_context: int | str | None = None,
|
|
637
637
|
undo: bool | None = None,
|
|
638
638
|
):
|
|
639
639
|
"""Select more spline points connected to initial selection
|
|
640
640
|
|
|
641
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
641
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
642
642
|
:type execution_context: int | str | None
|
|
643
643
|
:type undo: bool | None
|
|
644
644
|
"""
|
|
@@ -646,13 +646,13 @@ def select_more(
|
|
|
646
646
|
...
|
|
647
647
|
|
|
648
648
|
def shape_key_clear(
|
|
649
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
649
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
650
650
|
execution_context: int | str | None = None,
|
|
651
651
|
undo: bool | None = None,
|
|
652
652
|
):
|
|
653
653
|
"""Remove mask shape keyframe for active mask layer at the current frame
|
|
654
654
|
|
|
655
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
655
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
656
656
|
:type execution_context: int | str | None
|
|
657
657
|
:type undo: bool | None
|
|
658
658
|
"""
|
|
@@ -660,13 +660,13 @@ def shape_key_clear(
|
|
|
660
660
|
...
|
|
661
661
|
|
|
662
662
|
def shape_key_feather_reset(
|
|
663
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
663
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
664
664
|
execution_context: int | str | None = None,
|
|
665
665
|
undo: bool | None = None,
|
|
666
666
|
):
|
|
667
667
|
"""Reset feather weights on all selected points animation values
|
|
668
668
|
|
|
669
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
669
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
670
670
|
:type execution_context: int | str | None
|
|
671
671
|
:type undo: bool | None
|
|
672
672
|
"""
|
|
@@ -674,13 +674,13 @@ def shape_key_feather_reset(
|
|
|
674
674
|
...
|
|
675
675
|
|
|
676
676
|
def shape_key_insert(
|
|
677
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
677
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
678
678
|
execution_context: int | str | None = None,
|
|
679
679
|
undo: bool | None = None,
|
|
680
680
|
):
|
|
681
681
|
"""Insert mask shape keyframe for active mask layer at the current frame
|
|
682
682
|
|
|
683
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
683
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
684
684
|
:type execution_context: int | str | None
|
|
685
685
|
:type undo: bool | None
|
|
686
686
|
"""
|
|
@@ -688,7 +688,7 @@ def shape_key_insert(
|
|
|
688
688
|
...
|
|
689
689
|
|
|
690
690
|
def shape_key_rekey(
|
|
691
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
691
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
692
692
|
execution_context: int | str | None = None,
|
|
693
693
|
undo: bool | None = None,
|
|
694
694
|
*,
|
|
@@ -697,7 +697,7 @@ def shape_key_rekey(
|
|
|
697
697
|
):
|
|
698
698
|
"""Recalculate animation data on selected points for frames selected in the dopesheet
|
|
699
699
|
|
|
700
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
700
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
701
701
|
:type execution_context: int | str | None
|
|
702
702
|
:type undo: bool | None
|
|
703
703
|
:param location: Location
|
|
@@ -709,7 +709,7 @@ def shape_key_rekey(
|
|
|
709
709
|
...
|
|
710
710
|
|
|
711
711
|
def slide_point(
|
|
712
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
712
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
713
713
|
execution_context: int | str | None = None,
|
|
714
714
|
undo: bool | None = None,
|
|
715
715
|
*,
|
|
@@ -718,7 +718,7 @@ def slide_point(
|
|
|
718
718
|
):
|
|
719
719
|
"""Slide control points
|
|
720
720
|
|
|
721
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
721
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
722
722
|
:type execution_context: int | str | None
|
|
723
723
|
:type undo: bool | None
|
|
724
724
|
:param slide_feather: Slide Feather, First try to slide feather instead of vertex
|
|
@@ -730,13 +730,13 @@ def slide_point(
|
|
|
730
730
|
...
|
|
731
731
|
|
|
732
732
|
def slide_spline_curvature(
|
|
733
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
733
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
734
734
|
execution_context: int | str | None = None,
|
|
735
735
|
undo: bool | None = None,
|
|
736
736
|
):
|
|
737
737
|
"""Slide a point on the spline to define its curvature
|
|
738
738
|
|
|
739
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
739
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
740
740
|
:type execution_context: int | str | None
|
|
741
741
|
:type undo: bool | None
|
|
742
742
|
"""
|
|
@@ -744,13 +744,13 @@ def slide_spline_curvature(
|
|
|
744
744
|
...
|
|
745
745
|
|
|
746
746
|
def switch_direction(
|
|
747
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
747
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
748
748
|
execution_context: int | str | None = None,
|
|
749
749
|
undo: bool | None = None,
|
|
750
750
|
):
|
|
751
751
|
"""Switch direction of selected splines
|
|
752
752
|
|
|
753
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
753
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
754
754
|
:type execution_context: int | str | None
|
|
755
755
|
:type undo: bool | None
|
|
756
756
|
"""
|
bpy/ops/material/__init__.pyi
CHANGED
|
@@ -7,13 +7,13 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
def copy(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
10
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
):
|
|
14
14
|
"""Copy the material settings and nodes
|
|
15
15
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
16
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
17
17
|
:type execution_context: int | str | None
|
|
18
18
|
:type undo: bool | None
|
|
19
19
|
"""
|
|
@@ -21,13 +21,13 @@ def copy(
|
|
|
21
21
|
...
|
|
22
22
|
|
|
23
23
|
def new(
|
|
24
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
24
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
25
25
|
execution_context: int | str | None = None,
|
|
26
26
|
undo: bool | None = None,
|
|
27
27
|
):
|
|
28
28
|
"""Add a new material
|
|
29
29
|
|
|
30
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
30
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
31
31
|
:type execution_context: int | str | None
|
|
32
32
|
:type undo: bool | None
|
|
33
33
|
"""
|
|
@@ -35,13 +35,13 @@ def new(
|
|
|
35
35
|
...
|
|
36
36
|
|
|
37
37
|
def paste(
|
|
38
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
38
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
39
39
|
execution_context: int | str | None = None,
|
|
40
40
|
undo: bool | None = None,
|
|
41
41
|
):
|
|
42
42
|
"""Paste the material settings and nodes
|
|
43
43
|
|
|
44
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
44
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
45
45
|
:type execution_context: int | str | None
|
|
46
46
|
:type undo: bool | None
|
|
47
47
|
"""
|