fake-bpy-module 20241208__py3-none-any.whl → 20241209__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bpy/ops/action/__init__.pyi +38 -138
- bpy/ops/anim/__init__.pyi +61 -179
- bpy/ops/armature/__init__.pyi +48 -147
- bpy/ops/asset/__init__.pyi +16 -71
- bpy/ops/boid/__init__.pyi +8 -41
- bpy/ops/brush/__init__.pyi +13 -39
- bpy/ops/buttons/__init__.pyi +6 -29
- bpy/ops/cachefile/__init__.pyi +5 -19
- bpy/ops/camera/__init__.pyi +2 -5
- bpy/ops/clip/__init__.pyi +92 -290
- bpy/ops/cloth/__init__.pyi +1 -3
- bpy/ops/collection/__init__.pyi +9 -25
- bpy/ops/console/__init__.pyi +21 -79
- bpy/ops/constraint/__init__.pyi +18 -45
- bpy/ops/curve/__init__.pyi +51 -180
- bpy/ops/curves/__init__.pyi +28 -100
- bpy/ops/cycles/__init__.pyi +3 -9
- bpy/ops/dpaint/__init__.pyi +5 -19
- bpy/ops/ed/__init__.pyi +12 -53
- bpy/ops/export_anim/__init__.pyi +1 -3
- bpy/ops/export_scene/__init__.pyi +2 -5
- bpy/ops/extensions/__init__.pyi +34 -110
- bpy/ops/file/__init__.pyi +40 -167
- bpy/ops/fluid/__init__.pyi +14 -77
- bpy/ops/font/__init__.pyi +23 -85
- bpy/ops/geometry/__init__.pyi +10 -27
- bpy/ops/gizmogroup/__init__.pyi +2 -9
- bpy/ops/gpencil/__init__.pyi +8 -32
- bpy/ops/graph/__init__.pyi +65 -184
- bpy/ops/grease_pencil/__init__.pyi +108 -290
- bpy/ops/image/__init__.pyi +49 -154
- bpy/ops/import_anim/__init__.pyi +1 -3
- bpy/ops/import_curve/__init__.pyi +1 -3
- bpy/ops/import_scene/__init__.pyi +2 -4
- bpy/ops/info/__init__.pyi +7 -29
- bpy/ops/lattice/__init__.pyi +8 -29
- bpy/ops/marker/__init__.pyi +11 -31
- bpy/ops/mask/__init__.pyi +39 -132
- bpy/ops/material/__init__.pyi +3 -19
- bpy/ops/mball/__init__.pyi +8 -19
- bpy/ops/mesh/__init__.pyi +164 -401
- bpy/ops/nla/__init__.pyi +39 -147
- bpy/ops/node/__init__.pyi +115 -390
- bpy/ops/object/__init__.pyi +237 -630
- bpy/ops/outliner/__init__.pyi +71 -263
- bpy/ops/paint/__init__.pyi +54 -140
- bpy/ops/paintcurve/__init__.pyi +8 -33
- bpy/ops/palette/__init__.pyi +7 -27
- bpy/ops/particle/__init__.pyi +36 -134
- bpy/ops/pose/__init__.pyi +51 -169
- bpy/ops/poselib/__init__.pyi +9 -33
- bpy/ops/preferences/__init__.pyi +35 -94
- bpy/ops/ptcache/__init__.pyi +7 -33
- bpy/ops/render/__init__.pyi +13 -37
- bpy/ops/rigidbody/__init__.pyi +13 -45
- bpy/ops/scene/__init__.pyi +37 -121
- bpy/ops/screen/__init__.pyi +39 -137
- bpy/ops/script/__init__.pyi +3 -11
- bpy/ops/sculpt/__init__.pyi +37 -94
- bpy/ops/sculpt_curves/__init__.pyi +4 -10
- bpy/ops/sequencer/__init__.pyi +89 -284
- bpy/ops/sound/__init__.pyi +7 -23
- bpy/ops/spreadsheet/__init__.pyi +4 -15
- bpy/ops/surface/__init__.pyi +6 -13
- bpy/ops/text/__init__.pyi +43 -175
- bpy/ops/text_editor/__init__.pyi +1 -3
- bpy/ops/texture/__init__.pyi +4 -21
- bpy/ops/transform/__init__.pyi +27 -61
- bpy/ops/ui/__init__.pyi +34 -117
- bpy/ops/uilist/__init__.pyi +3 -7
- bpy/ops/uv/__init__.pyi +49 -134
- bpy/ops/view2d/__init__.pyi +14 -39
- bpy/ops/view3d/__init__.pyi +67 -232
- bpy/ops/wm/__init__.pyi +114 -298
- bpy/ops/workspace/__init__.pyi +7 -33
- bpy/ops/world/__init__.pyi +2 -11
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/RECORD +80 -80
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/top_level.txt +0 -0
bpy/ops/mask/__init__.pyi
CHANGED
|
@@ -6,15 +6,14 @@ import bpy.types
|
|
|
6
6
|
import mathutils
|
|
7
7
|
|
|
8
8
|
def add_feather_vertex(
|
|
9
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
10
9
|
execution_context: int | str | None = None,
|
|
11
10
|
undo: bool | None = None,
|
|
11
|
+
/,
|
|
12
12
|
*,
|
|
13
13
|
location: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
14
14
|
):
|
|
15
15
|
"""Add vertex to feather
|
|
16
16
|
|
|
17
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
18
17
|
:type execution_context: int | str | None
|
|
19
18
|
:type undo: bool | None
|
|
20
19
|
:param location: Location, Location of vertex in normalized space
|
|
@@ -22,16 +21,15 @@ def add_feather_vertex(
|
|
|
22
21
|
"""
|
|
23
22
|
|
|
24
23
|
def add_feather_vertex_slide(
|
|
25
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
26
24
|
execution_context: int | str | None = None,
|
|
27
25
|
undo: bool | None = None,
|
|
26
|
+
/,
|
|
28
27
|
*,
|
|
29
28
|
MASK_OT_add_feather_vertex: add_feather_vertex | None = None,
|
|
30
29
|
MASK_OT_slide_point: slide_point | None = None,
|
|
31
30
|
):
|
|
32
31
|
"""Add new vertex to feather and slide it
|
|
33
32
|
|
|
34
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
35
33
|
:type execution_context: int | str | None
|
|
36
34
|
:type undo: bool | None
|
|
37
35
|
:param MASK_OT_add_feather_vertex: Add Feather Vertex, Add vertex to feather
|
|
@@ -41,15 +39,14 @@ def add_feather_vertex_slide(
|
|
|
41
39
|
"""
|
|
42
40
|
|
|
43
41
|
def add_vertex(
|
|
44
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
45
42
|
execution_context: int | str | None = None,
|
|
46
43
|
undo: bool | None = None,
|
|
44
|
+
/,
|
|
47
45
|
*,
|
|
48
46
|
location: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
49
47
|
):
|
|
50
48
|
"""Add vertex to active spline
|
|
51
49
|
|
|
52
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
53
50
|
:type execution_context: int | str | None
|
|
54
51
|
:type undo: bool | None
|
|
55
52
|
:param location: Location, Location of vertex in normalized space
|
|
@@ -57,16 +54,15 @@ def add_vertex(
|
|
|
57
54
|
"""
|
|
58
55
|
|
|
59
56
|
def add_vertex_slide(
|
|
60
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
61
57
|
execution_context: int | str | None = None,
|
|
62
58
|
undo: bool | None = None,
|
|
59
|
+
/,
|
|
63
60
|
*,
|
|
64
61
|
MASK_OT_add_vertex: add_vertex | None = None,
|
|
65
62
|
MASK_OT_slide_point: slide_point | None = None,
|
|
66
63
|
):
|
|
67
64
|
"""Add new vertex and slide it
|
|
68
65
|
|
|
69
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
70
66
|
:type execution_context: int | str | None
|
|
71
67
|
:type undo: bool | None
|
|
72
68
|
:param MASK_OT_add_vertex: Add Vertex, Add vertex to active spline
|
|
@@ -75,69 +71,52 @@ def add_vertex_slide(
|
|
|
75
71
|
:type MASK_OT_slide_point: slide_point | None
|
|
76
72
|
"""
|
|
77
73
|
|
|
78
|
-
def copy_splines(
|
|
79
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
80
|
-
execution_context: int | str | None = None,
|
|
81
|
-
undo: bool | None = None,
|
|
82
|
-
):
|
|
74
|
+
def copy_splines(execution_context: int | str | None = None, undo: bool | None = None):
|
|
83
75
|
"""Copy the selected splines to the internal clipboard
|
|
84
76
|
|
|
85
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
86
77
|
:type execution_context: int | str | None
|
|
87
78
|
:type undo: bool | None
|
|
88
79
|
"""
|
|
89
80
|
|
|
90
|
-
def cyclic_toggle(
|
|
91
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
92
|
-
execution_context: int | str | None = None,
|
|
93
|
-
undo: bool | None = None,
|
|
94
|
-
):
|
|
81
|
+
def cyclic_toggle(execution_context: int | str | None = None, undo: bool | None = None):
|
|
95
82
|
"""Toggle cyclic for selected splines
|
|
96
83
|
|
|
97
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
98
84
|
:type execution_context: int | str | None
|
|
99
85
|
:type undo: bool | None
|
|
100
86
|
"""
|
|
101
87
|
|
|
102
88
|
def delete(
|
|
103
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
104
89
|
execution_context: int | str | None = None,
|
|
105
90
|
undo: bool | None = None,
|
|
91
|
+
/,
|
|
106
92
|
*,
|
|
107
93
|
confirm: bool | None = True,
|
|
108
94
|
):
|
|
109
95
|
"""Delete selected control points or splines
|
|
110
96
|
|
|
111
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
112
97
|
:type execution_context: int | str | None
|
|
113
98
|
:type undo: bool | None
|
|
114
99
|
:param confirm: Confirm, Prompt for confirmation
|
|
115
100
|
:type confirm: bool | None
|
|
116
101
|
"""
|
|
117
102
|
|
|
118
|
-
def duplicate(
|
|
119
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
120
|
-
execution_context: int | str | None = None,
|
|
121
|
-
undo: bool | None = None,
|
|
122
|
-
):
|
|
103
|
+
def duplicate(execution_context: int | str | None = None, undo: bool | None = None):
|
|
123
104
|
"""Duplicate selected control points and segments between them
|
|
124
105
|
|
|
125
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
126
106
|
:type execution_context: int | str | None
|
|
127
107
|
:type undo: bool | None
|
|
128
108
|
"""
|
|
129
109
|
|
|
130
110
|
def duplicate_move(
|
|
131
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
132
111
|
execution_context: int | str | None = None,
|
|
133
112
|
undo: bool | None = None,
|
|
113
|
+
/,
|
|
134
114
|
*,
|
|
135
115
|
MASK_OT_duplicate: duplicate | None = None,
|
|
136
116
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
137
117
|
):
|
|
138
118
|
"""Duplicate mask and move
|
|
139
119
|
|
|
140
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
141
120
|
:type execution_context: int | str | None
|
|
142
121
|
:type undo: bool | None
|
|
143
122
|
:param MASK_OT_duplicate: Duplicate Mask, Duplicate selected control points and segments between them
|
|
@@ -147,28 +126,24 @@ def duplicate_move(
|
|
|
147
126
|
"""
|
|
148
127
|
|
|
149
128
|
def feather_weight_clear(
|
|
150
|
-
|
|
151
|
-
execution_context: int | str | None = None,
|
|
152
|
-
undo: bool | None = None,
|
|
129
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
153
130
|
):
|
|
154
131
|
"""Reset the feather weight to zero
|
|
155
132
|
|
|
156
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
157
133
|
:type execution_context: int | str | None
|
|
158
134
|
:type undo: bool | None
|
|
159
135
|
"""
|
|
160
136
|
|
|
161
137
|
def handle_type_set(
|
|
162
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
163
138
|
execution_context: int | str | None = None,
|
|
164
139
|
undo: bool | None = None,
|
|
140
|
+
/,
|
|
165
141
|
*,
|
|
166
142
|
type: typing.Literal["AUTO", "VECTOR", "ALIGNED", "ALIGNED_DOUBLESIDE", "FREE"]
|
|
167
143
|
| None = "AUTO",
|
|
168
144
|
):
|
|
169
145
|
"""Set type of handles for selected control points
|
|
170
146
|
|
|
171
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
172
147
|
:type execution_context: int | str | None
|
|
173
148
|
:type undo: bool | None
|
|
174
149
|
:param type: Type, Spline type
|
|
@@ -176,15 +151,14 @@ def handle_type_set(
|
|
|
176
151
|
"""
|
|
177
152
|
|
|
178
153
|
def hide_view_clear(
|
|
179
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
180
154
|
execution_context: int | str | None = None,
|
|
181
155
|
undo: bool | None = None,
|
|
156
|
+
/,
|
|
182
157
|
*,
|
|
183
158
|
select: bool | None = True,
|
|
184
159
|
):
|
|
185
160
|
"""Reveal temporarily hidden mask layers
|
|
186
161
|
|
|
187
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
188
162
|
:type execution_context: int | str | None
|
|
189
163
|
:type undo: bool | None
|
|
190
164
|
:param select: Select
|
|
@@ -192,15 +166,14 @@ def hide_view_clear(
|
|
|
192
166
|
"""
|
|
193
167
|
|
|
194
168
|
def hide_view_set(
|
|
195
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
196
169
|
execution_context: int | str | None = None,
|
|
197
170
|
undo: bool | None = None,
|
|
171
|
+
/,
|
|
198
172
|
*,
|
|
199
173
|
unselected: bool | None = False,
|
|
200
174
|
):
|
|
201
175
|
"""Temporarily hide mask layers
|
|
202
176
|
|
|
203
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
204
177
|
:type execution_context: int | str | None
|
|
205
178
|
:type undo: bool | None
|
|
206
179
|
:param unselected: Unselected, Hide unselected rather than selected layers
|
|
@@ -208,15 +181,14 @@ def hide_view_set(
|
|
|
208
181
|
"""
|
|
209
182
|
|
|
210
183
|
def layer_move(
|
|
211
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
212
184
|
execution_context: int | str | None = None,
|
|
213
185
|
undo: bool | None = None,
|
|
186
|
+
/,
|
|
214
187
|
*,
|
|
215
188
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
216
189
|
):
|
|
217
190
|
"""Move the active layer up/down in the list
|
|
218
191
|
|
|
219
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
220
192
|
:type execution_context: int | str | None
|
|
221
193
|
:type undo: bool | None
|
|
222
194
|
:param direction: Direction, Direction to move the active layer
|
|
@@ -224,43 +196,36 @@ def layer_move(
|
|
|
224
196
|
"""
|
|
225
197
|
|
|
226
198
|
def layer_new(
|
|
227
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
228
199
|
execution_context: int | str | None = None,
|
|
229
200
|
undo: bool | None = None,
|
|
201
|
+
/,
|
|
230
202
|
*,
|
|
231
203
|
name: str = "",
|
|
232
204
|
):
|
|
233
205
|
"""Add new mask layer for masking
|
|
234
206
|
|
|
235
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
236
207
|
:type execution_context: int | str | None
|
|
237
208
|
:type undo: bool | None
|
|
238
209
|
:param name: Name, Name of new mask layer
|
|
239
210
|
:type name: str
|
|
240
211
|
"""
|
|
241
212
|
|
|
242
|
-
def layer_remove(
|
|
243
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
244
|
-
execution_context: int | str | None = None,
|
|
245
|
-
undo: bool | None = None,
|
|
246
|
-
):
|
|
213
|
+
def layer_remove(execution_context: int | str | None = None, undo: bool | None = None):
|
|
247
214
|
"""Remove mask layer
|
|
248
215
|
|
|
249
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
250
216
|
:type execution_context: int | str | None
|
|
251
217
|
:type undo: bool | None
|
|
252
218
|
"""
|
|
253
219
|
|
|
254
220
|
def new(
|
|
255
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
256
221
|
execution_context: int | str | None = None,
|
|
257
222
|
undo: bool | None = None,
|
|
223
|
+
/,
|
|
258
224
|
*,
|
|
259
225
|
name: str = "",
|
|
260
226
|
):
|
|
261
227
|
"""Create new mask
|
|
262
228
|
|
|
263
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
264
229
|
:type execution_context: int | str | None
|
|
265
230
|
:type undo: bool | None
|
|
266
231
|
:param name: Name, Name of new mask
|
|
@@ -268,64 +233,45 @@ def new(
|
|
|
268
233
|
"""
|
|
269
234
|
|
|
270
235
|
def normals_make_consistent(
|
|
271
|
-
|
|
272
|
-
execution_context: int | str | None = None,
|
|
273
|
-
undo: bool | None = None,
|
|
236
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
274
237
|
):
|
|
275
238
|
"""Recalculate the direction of selected handles
|
|
276
239
|
|
|
277
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
278
240
|
:type execution_context: int | str | None
|
|
279
241
|
:type undo: bool | None
|
|
280
242
|
"""
|
|
281
243
|
|
|
282
|
-
def parent_clear(
|
|
283
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
284
|
-
execution_context: int | str | None = None,
|
|
285
|
-
undo: bool | None = None,
|
|
286
|
-
):
|
|
244
|
+
def parent_clear(execution_context: int | str | None = None, undo: bool | None = None):
|
|
287
245
|
"""Clear the mask's parenting
|
|
288
246
|
|
|
289
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
290
247
|
:type execution_context: int | str | None
|
|
291
248
|
:type undo: bool | None
|
|
292
249
|
"""
|
|
293
250
|
|
|
294
|
-
def parent_set(
|
|
295
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
296
|
-
execution_context: int | str | None = None,
|
|
297
|
-
undo: bool | None = None,
|
|
298
|
-
):
|
|
251
|
+
def parent_set(execution_context: int | str | None = None, undo: bool | None = None):
|
|
299
252
|
"""Set the mask's parenting
|
|
300
253
|
|
|
301
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
302
254
|
:type execution_context: int | str | None
|
|
303
255
|
:type undo: bool | None
|
|
304
256
|
"""
|
|
305
257
|
|
|
306
|
-
def paste_splines(
|
|
307
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
308
|
-
execution_context: int | str | None = None,
|
|
309
|
-
undo: bool | None = None,
|
|
310
|
-
):
|
|
258
|
+
def paste_splines(execution_context: int | str | None = None, undo: bool | None = None):
|
|
311
259
|
"""Paste splines from the internal clipboard
|
|
312
260
|
|
|
313
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
314
261
|
:type execution_context: int | str | None
|
|
315
262
|
:type undo: bool | None
|
|
316
263
|
"""
|
|
317
264
|
|
|
318
265
|
def primitive_circle_add(
|
|
319
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
320
266
|
execution_context: int | str | None = None,
|
|
321
267
|
undo: bool | None = None,
|
|
268
|
+
/,
|
|
322
269
|
*,
|
|
323
270
|
size: float | None = 100.0,
|
|
324
271
|
location: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
325
272
|
):
|
|
326
273
|
"""Add new circle-shaped spline
|
|
327
274
|
|
|
328
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
329
275
|
:type execution_context: int | str | None
|
|
330
276
|
:type undo: bool | None
|
|
331
277
|
:param size: Size, Size of new circle
|
|
@@ -335,16 +281,15 @@ def primitive_circle_add(
|
|
|
335
281
|
"""
|
|
336
282
|
|
|
337
283
|
def primitive_square_add(
|
|
338
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
339
284
|
execution_context: int | str | None = None,
|
|
340
285
|
undo: bool | None = None,
|
|
286
|
+
/,
|
|
341
287
|
*,
|
|
342
288
|
size: float | None = 100.0,
|
|
343
289
|
location: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
344
290
|
):
|
|
345
291
|
"""Add new square-shaped spline
|
|
346
292
|
|
|
347
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
348
293
|
:type execution_context: int | str | None
|
|
349
294
|
:type undo: bool | None
|
|
350
295
|
:param size: Size, Size of new circle
|
|
@@ -354,9 +299,9 @@ def primitive_square_add(
|
|
|
354
299
|
"""
|
|
355
300
|
|
|
356
301
|
def select(
|
|
357
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
358
302
|
execution_context: int | str | None = None,
|
|
359
303
|
undo: bool | None = None,
|
|
304
|
+
/,
|
|
360
305
|
*,
|
|
361
306
|
extend: bool | None = False,
|
|
362
307
|
deselect: bool | None = False,
|
|
@@ -367,7 +312,6 @@ def select(
|
|
|
367
312
|
):
|
|
368
313
|
"""Select spline points
|
|
369
314
|
|
|
370
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
371
315
|
:type execution_context: int | str | None
|
|
372
316
|
:type undo: bool | None
|
|
373
317
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -385,15 +329,14 @@ def select(
|
|
|
385
329
|
"""
|
|
386
330
|
|
|
387
331
|
def select_all(
|
|
388
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
389
332
|
execution_context: int | str | None = None,
|
|
390
333
|
undo: bool | None = None,
|
|
334
|
+
/,
|
|
391
335
|
*,
|
|
392
336
|
action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
|
|
393
337
|
):
|
|
394
338
|
"""Change selection of all curve points
|
|
395
339
|
|
|
396
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
397
340
|
:type execution_context: int | str | None
|
|
398
341
|
:type undo: bool | None
|
|
399
342
|
:param action: Action, Selection action to execute
|
|
@@ -413,9 +356,9 @@ def select_all(
|
|
|
413
356
|
"""
|
|
414
357
|
|
|
415
358
|
def select_box(
|
|
416
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
417
359
|
execution_context: int | str | None = None,
|
|
418
360
|
undo: bool | None = None,
|
|
361
|
+
/,
|
|
419
362
|
*,
|
|
420
363
|
xmin: int | None = 0,
|
|
421
364
|
xmax: int | None = 0,
|
|
@@ -426,7 +369,6 @@ def select_box(
|
|
|
426
369
|
):
|
|
427
370
|
"""Select curve points using box selection
|
|
428
371
|
|
|
429
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
430
372
|
:type execution_context: int | str | None
|
|
431
373
|
:type undo: bool | None
|
|
432
374
|
:param xmin: X Min
|
|
@@ -453,9 +395,9 @@ def select_box(
|
|
|
453
395
|
"""
|
|
454
396
|
|
|
455
397
|
def select_circle(
|
|
456
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
457
398
|
execution_context: int | str | None = None,
|
|
458
399
|
undo: bool | None = None,
|
|
400
|
+
/,
|
|
459
401
|
*,
|
|
460
402
|
x: int | None = 0,
|
|
461
403
|
y: int | None = 0,
|
|
@@ -465,7 +407,6 @@ def select_circle(
|
|
|
465
407
|
):
|
|
466
408
|
"""Select curve points using circle selection
|
|
467
409
|
|
|
468
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
469
410
|
:type execution_context: int | str | None
|
|
470
411
|
:type undo: bool | None
|
|
471
412
|
:param x: X
|
|
@@ -490,9 +431,9 @@ def select_circle(
|
|
|
490
431
|
"""
|
|
491
432
|
|
|
492
433
|
def select_lasso(
|
|
493
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
494
434
|
execution_context: int | str | None = None,
|
|
495
435
|
undo: bool | None = None,
|
|
436
|
+
/,
|
|
496
437
|
*,
|
|
497
438
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
498
439
|
use_smooth_stroke: bool | None = False,
|
|
@@ -502,7 +443,6 @@ def select_lasso(
|
|
|
502
443
|
):
|
|
503
444
|
"""Select curve points using lasso selection
|
|
504
445
|
|
|
505
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
506
446
|
:type execution_context: int | str | None
|
|
507
447
|
:type undo: bool | None
|
|
508
448
|
:param path: Path
|
|
@@ -526,105 +466,79 @@ def select_lasso(
|
|
|
526
466
|
:type mode: typing.Literal['SET','ADD','SUB'] | None
|
|
527
467
|
"""
|
|
528
468
|
|
|
529
|
-
def select_less(
|
|
530
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
531
|
-
execution_context: int | str | None = None,
|
|
532
|
-
undo: bool | None = None,
|
|
533
|
-
):
|
|
469
|
+
def select_less(execution_context: int | str | None = None, undo: bool | None = None):
|
|
534
470
|
"""Deselect spline points at the boundary of each selection region
|
|
535
471
|
|
|
536
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
537
472
|
:type execution_context: int | str | None
|
|
538
473
|
:type undo: bool | None
|
|
539
474
|
"""
|
|
540
475
|
|
|
541
|
-
def select_linked(
|
|
542
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
543
|
-
execution_context: int | str | None = None,
|
|
544
|
-
undo: bool | None = None,
|
|
545
|
-
):
|
|
476
|
+
def select_linked(execution_context: int | str | None = None, undo: bool | None = None):
|
|
546
477
|
"""Select all curve points linked to already selected ones
|
|
547
478
|
|
|
548
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
549
479
|
:type execution_context: int | str | None
|
|
550
480
|
:type undo: bool | None
|
|
551
481
|
"""
|
|
552
482
|
|
|
553
483
|
def select_linked_pick(
|
|
554
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
555
484
|
execution_context: int | str | None = None,
|
|
556
485
|
undo: bool | None = None,
|
|
486
|
+
/,
|
|
557
487
|
*,
|
|
558
488
|
deselect: bool | None = False,
|
|
559
489
|
):
|
|
560
490
|
"""(De)select all points linked to the curve under the mouse cursor
|
|
561
491
|
|
|
562
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
563
492
|
:type execution_context: int | str | None
|
|
564
493
|
:type undo: bool | None
|
|
565
494
|
:param deselect: Deselect
|
|
566
495
|
:type deselect: bool | None
|
|
567
496
|
"""
|
|
568
497
|
|
|
569
|
-
def select_more(
|
|
570
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
571
|
-
execution_context: int | str | None = None,
|
|
572
|
-
undo: bool | None = None,
|
|
573
|
-
):
|
|
498
|
+
def select_more(execution_context: int | str | None = None, undo: bool | None = None):
|
|
574
499
|
"""Select more spline points connected to initial selection
|
|
575
500
|
|
|
576
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
577
501
|
:type execution_context: int | str | None
|
|
578
502
|
:type undo: bool | None
|
|
579
503
|
"""
|
|
580
504
|
|
|
581
505
|
def shape_key_clear(
|
|
582
|
-
|
|
583
|
-
execution_context: int | str | None = None,
|
|
584
|
-
undo: bool | None = None,
|
|
506
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
585
507
|
):
|
|
586
508
|
"""Remove mask shape keyframe for active mask layer at the current frame
|
|
587
509
|
|
|
588
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
589
510
|
:type execution_context: int | str | None
|
|
590
511
|
:type undo: bool | None
|
|
591
512
|
"""
|
|
592
513
|
|
|
593
514
|
def shape_key_feather_reset(
|
|
594
|
-
|
|
595
|
-
execution_context: int | str | None = None,
|
|
596
|
-
undo: bool | None = None,
|
|
515
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
597
516
|
):
|
|
598
517
|
"""Reset feather weights on all selected points animation values
|
|
599
518
|
|
|
600
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
601
519
|
:type execution_context: int | str | None
|
|
602
520
|
:type undo: bool | None
|
|
603
521
|
"""
|
|
604
522
|
|
|
605
523
|
def shape_key_insert(
|
|
606
|
-
|
|
607
|
-
execution_context: int | str | None = None,
|
|
608
|
-
undo: bool | None = None,
|
|
524
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
609
525
|
):
|
|
610
526
|
"""Insert mask shape keyframe for active mask layer at the current frame
|
|
611
527
|
|
|
612
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
613
528
|
:type execution_context: int | str | None
|
|
614
529
|
:type undo: bool | None
|
|
615
530
|
"""
|
|
616
531
|
|
|
617
532
|
def shape_key_rekey(
|
|
618
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
619
533
|
execution_context: int | str | None = None,
|
|
620
534
|
undo: bool | None = None,
|
|
535
|
+
/,
|
|
621
536
|
*,
|
|
622
537
|
location: bool | None = True,
|
|
623
538
|
feather: bool | None = True,
|
|
624
539
|
):
|
|
625
540
|
"""Recalculate animation data on selected points for frames selected in the dopesheet
|
|
626
541
|
|
|
627
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
628
542
|
:type execution_context: int | str | None
|
|
629
543
|
:type undo: bool | None
|
|
630
544
|
:param location: Location
|
|
@@ -634,16 +548,15 @@ def shape_key_rekey(
|
|
|
634
548
|
"""
|
|
635
549
|
|
|
636
550
|
def slide_point(
|
|
637
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
638
551
|
execution_context: int | str | None = None,
|
|
639
552
|
undo: bool | None = None,
|
|
553
|
+
/,
|
|
640
554
|
*,
|
|
641
555
|
slide_feather: bool | None = False,
|
|
642
556
|
is_new_point: bool | None = False,
|
|
643
557
|
):
|
|
644
558
|
"""Slide control points
|
|
645
559
|
|
|
646
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
647
560
|
:type execution_context: int | str | None
|
|
648
561
|
:type undo: bool | None
|
|
649
562
|
:param slide_feather: Slide Feather, First try to slide feather instead of vertex
|
|
@@ -653,25 +566,19 @@ def slide_point(
|
|
|
653
566
|
"""
|
|
654
567
|
|
|
655
568
|
def slide_spline_curvature(
|
|
656
|
-
|
|
657
|
-
execution_context: int | str | None = None,
|
|
658
|
-
undo: bool | None = None,
|
|
569
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
659
570
|
):
|
|
660
571
|
"""Slide a point on the spline to define its curvature
|
|
661
572
|
|
|
662
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
663
573
|
:type execution_context: int | str | None
|
|
664
574
|
:type undo: bool | None
|
|
665
575
|
"""
|
|
666
576
|
|
|
667
577
|
def switch_direction(
|
|
668
|
-
|
|
669
|
-
execution_context: int | str | None = None,
|
|
670
|
-
undo: bool | None = None,
|
|
578
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
671
579
|
):
|
|
672
580
|
"""Switch direction of selected splines
|
|
673
581
|
|
|
674
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
675
582
|
:type execution_context: int | str | None
|
|
676
583
|
:type undo: bool | None
|
|
677
584
|
"""
|
bpy/ops/material/__init__.pyi
CHANGED
|
@@ -1,40 +1,24 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.types
|
|
5
4
|
|
|
6
|
-
def copy(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
|
-
execution_context: int | str | None = None,
|
|
9
|
-
undo: bool | None = None,
|
|
10
|
-
):
|
|
5
|
+
def copy(execution_context: int | str | None = None, undo: bool | None = None):
|
|
11
6
|
"""Copy the material settings and nodes
|
|
12
7
|
|
|
13
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
14
8
|
:type execution_context: int | str | None
|
|
15
9
|
:type undo: bool | None
|
|
16
10
|
"""
|
|
17
11
|
|
|
18
|
-
def new(
|
|
19
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
20
|
-
execution_context: int | str | None = None,
|
|
21
|
-
undo: bool | None = None,
|
|
22
|
-
):
|
|
12
|
+
def new(execution_context: int | str | None = None, undo: bool | None = None):
|
|
23
13
|
"""Add a new material
|
|
24
14
|
|
|
25
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
26
15
|
:type execution_context: int | str | None
|
|
27
16
|
:type undo: bool | None
|
|
28
17
|
"""
|
|
29
18
|
|
|
30
|
-
def paste(
|
|
31
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
32
|
-
execution_context: int | str | None = None,
|
|
33
|
-
undo: bool | None = None,
|
|
34
|
-
):
|
|
19
|
+
def paste(execution_context: int | str | None = None, undo: bool | None = None):
|
|
35
20
|
"""Paste the material settings and nodes
|
|
36
21
|
|
|
37
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
38
22
|
:type execution_context: int | str | None
|
|
39
23
|
:type undo: bool | None
|
|
40
24
|
"""
|