fake-bpy-module 20240928__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
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +124 -124
- 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 +202 -202
- 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 +254 -219
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240929.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240929.dist-info}/RECORD +84 -84
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240929.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240929.dist-info}/top_level.txt +0 -0
bpy/ops/mask/__init__.pyi
CHANGED
|
@@ -6,7 +6,7 @@ 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,
|
|
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
|
*,
|
|
@@ -14,7 +14,7 @@ def add_feather_vertex(
|
|
|
14
14
|
):
|
|
15
15
|
"""Add vertex to feather
|
|
16
16
|
|
|
17
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
17
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
18
18
|
:type execution_context: int | str | None
|
|
19
19
|
:type undo: bool | None
|
|
20
20
|
:param location: Location, Location of vertex in normalized space
|
|
@@ -22,7 +22,7 @@ def add_feather_vertex(
|
|
|
22
22
|
"""
|
|
23
23
|
|
|
24
24
|
def add_feather_vertex_slide(
|
|
25
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
25
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
26
26
|
execution_context: int | str | None = None,
|
|
27
27
|
undo: bool | None = None,
|
|
28
28
|
*,
|
|
@@ -31,7 +31,7 @@ def add_feather_vertex_slide(
|
|
|
31
31
|
):
|
|
32
32
|
"""Add new vertex to feather and slide it
|
|
33
33
|
|
|
34
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
34
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
35
35
|
:type execution_context: int | str | None
|
|
36
36
|
:type undo: bool | None
|
|
37
37
|
:param MASK_OT_add_feather_vertex: Add Feather Vertex, Add vertex to feather
|
|
@@ -41,7 +41,7 @@ def add_feather_vertex_slide(
|
|
|
41
41
|
"""
|
|
42
42
|
|
|
43
43
|
def add_vertex(
|
|
44
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
44
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
45
45
|
execution_context: int | str | None = None,
|
|
46
46
|
undo: bool | None = None,
|
|
47
47
|
*,
|
|
@@ -49,7 +49,7 @@ def add_vertex(
|
|
|
49
49
|
):
|
|
50
50
|
"""Add vertex to active spline
|
|
51
51
|
|
|
52
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
52
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
53
53
|
:type execution_context: int | str | None
|
|
54
54
|
:type undo: bool | None
|
|
55
55
|
:param location: Location, Location of vertex in normalized space
|
|
@@ -57,7 +57,7 @@ def add_vertex(
|
|
|
57
57
|
"""
|
|
58
58
|
|
|
59
59
|
def add_vertex_slide(
|
|
60
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
60
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
61
61
|
execution_context: int | str | None = None,
|
|
62
62
|
undo: bool | None = None,
|
|
63
63
|
*,
|
|
@@ -66,7 +66,7 @@ def add_vertex_slide(
|
|
|
66
66
|
):
|
|
67
67
|
"""Add new vertex and slide it
|
|
68
68
|
|
|
69
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
69
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
70
70
|
:type execution_context: int | str | None
|
|
71
71
|
:type undo: bool | None
|
|
72
72
|
:param MASK_OT_add_vertex: Add Vertex, Add vertex to active spline
|
|
@@ -76,31 +76,31 @@ def add_vertex_slide(
|
|
|
76
76
|
"""
|
|
77
77
|
|
|
78
78
|
def copy_splines(
|
|
79
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
79
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
80
80
|
execution_context: int | str | None = None,
|
|
81
81
|
undo: bool | None = None,
|
|
82
82
|
):
|
|
83
83
|
"""Copy the selected splines to the internal clipboard
|
|
84
84
|
|
|
85
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
85
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
86
86
|
:type execution_context: int | str | None
|
|
87
87
|
:type undo: bool | None
|
|
88
88
|
"""
|
|
89
89
|
|
|
90
90
|
def cyclic_toggle(
|
|
91
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
91
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
92
92
|
execution_context: int | str | None = None,
|
|
93
93
|
undo: bool | None = None,
|
|
94
94
|
):
|
|
95
95
|
"""Toggle cyclic for selected splines
|
|
96
96
|
|
|
97
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
97
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
98
98
|
:type execution_context: int | str | None
|
|
99
99
|
:type undo: bool | None
|
|
100
100
|
"""
|
|
101
101
|
|
|
102
102
|
def delete(
|
|
103
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
103
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
104
104
|
execution_context: int | str | None = None,
|
|
105
105
|
undo: bool | None = None,
|
|
106
106
|
*,
|
|
@@ -108,7 +108,7 @@ def delete(
|
|
|
108
108
|
):
|
|
109
109
|
"""Delete selected control points or splines
|
|
110
110
|
|
|
111
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
111
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
112
112
|
:type execution_context: int | str | None
|
|
113
113
|
:type undo: bool | None
|
|
114
114
|
:param confirm: Confirm, Prompt for confirmation
|
|
@@ -116,19 +116,19 @@ def delete(
|
|
|
116
116
|
"""
|
|
117
117
|
|
|
118
118
|
def duplicate(
|
|
119
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
119
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
120
120
|
execution_context: int | str | None = None,
|
|
121
121
|
undo: bool | None = None,
|
|
122
122
|
):
|
|
123
123
|
"""Duplicate selected control points and segments between them
|
|
124
124
|
|
|
125
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
125
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
126
126
|
:type execution_context: int | str | None
|
|
127
127
|
:type undo: bool | None
|
|
128
128
|
"""
|
|
129
129
|
|
|
130
130
|
def duplicate_move(
|
|
131
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
131
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
132
132
|
execution_context: int | str | None = None,
|
|
133
133
|
undo: bool | None = None,
|
|
134
134
|
*,
|
|
@@ -137,7 +137,7 @@ def duplicate_move(
|
|
|
137
137
|
):
|
|
138
138
|
"""Duplicate mask and move
|
|
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 MASK_OT_duplicate: Duplicate Mask, Duplicate selected control points and segments between them
|
|
@@ -147,19 +147,19 @@ def duplicate_move(
|
|
|
147
147
|
"""
|
|
148
148
|
|
|
149
149
|
def feather_weight_clear(
|
|
150
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
150
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
151
151
|
execution_context: int | str | None = None,
|
|
152
152
|
undo: bool | None = None,
|
|
153
153
|
):
|
|
154
154
|
"""Reset the feather weight to zero
|
|
155
155
|
|
|
156
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
156
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
157
157
|
:type execution_context: int | str | None
|
|
158
158
|
:type undo: bool | None
|
|
159
159
|
"""
|
|
160
160
|
|
|
161
161
|
def handle_type_set(
|
|
162
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
162
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
163
163
|
execution_context: int | str | None = None,
|
|
164
164
|
undo: bool | None = None,
|
|
165
165
|
*,
|
|
@@ -168,7 +168,7 @@ def handle_type_set(
|
|
|
168
168
|
):
|
|
169
169
|
"""Set type of handles for selected control points
|
|
170
170
|
|
|
171
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
171
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
172
172
|
:type execution_context: int | str | None
|
|
173
173
|
:type undo: bool | None
|
|
174
174
|
:param type: Type, Spline type
|
|
@@ -176,7 +176,7 @@ def handle_type_set(
|
|
|
176
176
|
"""
|
|
177
177
|
|
|
178
178
|
def hide_view_clear(
|
|
179
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
179
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
180
180
|
execution_context: int | str | None = None,
|
|
181
181
|
undo: bool | None = None,
|
|
182
182
|
*,
|
|
@@ -184,7 +184,7 @@ def hide_view_clear(
|
|
|
184
184
|
):
|
|
185
185
|
"""Reveal temporarily hidden mask layers
|
|
186
186
|
|
|
187
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
187
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
188
188
|
:type execution_context: int | str | None
|
|
189
189
|
:type undo: bool | None
|
|
190
190
|
:param select: Select
|
|
@@ -192,7 +192,7 @@ def hide_view_clear(
|
|
|
192
192
|
"""
|
|
193
193
|
|
|
194
194
|
def hide_view_set(
|
|
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 hide_view_set(
|
|
|
200
200
|
):
|
|
201
201
|
"""Temporarily hide mask layers
|
|
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 unselected: Unselected, Hide unselected rather than selected layers
|
|
@@ -208,7 +208,7 @@ def hide_view_set(
|
|
|
208
208
|
"""
|
|
209
209
|
|
|
210
210
|
def layer_move(
|
|
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 layer_move(
|
|
|
216
216
|
):
|
|
217
217
|
"""Move the active layer up/down in the list
|
|
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 direction: Direction, Direction to move the active layer
|
|
@@ -224,7 +224,7 @@ def layer_move(
|
|
|
224
224
|
"""
|
|
225
225
|
|
|
226
226
|
def layer_new(
|
|
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 layer_new(
|
|
|
232
232
|
):
|
|
233
233
|
"""Add new mask layer for masking
|
|
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 name: Name, Name of new mask layer
|
|
@@ -240,19 +240,19 @@ def layer_new(
|
|
|
240
240
|
"""
|
|
241
241
|
|
|
242
242
|
def layer_remove(
|
|
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
|
):
|
|
247
247
|
"""Remove mask layer
|
|
248
248
|
|
|
249
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
249
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
250
250
|
:type execution_context: int | str | None
|
|
251
251
|
:type undo: bool | None
|
|
252
252
|
"""
|
|
253
253
|
|
|
254
254
|
def new(
|
|
255
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
255
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
256
256
|
execution_context: int | str | None = None,
|
|
257
257
|
undo: bool | None = None,
|
|
258
258
|
*,
|
|
@@ -260,7 +260,7 @@ def new(
|
|
|
260
260
|
):
|
|
261
261
|
"""Create new mask
|
|
262
262
|
|
|
263
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
263
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
264
264
|
:type execution_context: int | str | None
|
|
265
265
|
:type undo: bool | None
|
|
266
266
|
:param name: Name, Name of new mask
|
|
@@ -268,55 +268,55 @@ def new(
|
|
|
268
268
|
"""
|
|
269
269
|
|
|
270
270
|
def normals_make_consistent(
|
|
271
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
271
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
272
272
|
execution_context: int | str | None = None,
|
|
273
273
|
undo: bool | None = None,
|
|
274
274
|
):
|
|
275
275
|
"""Recalculate the direction of selected handles
|
|
276
276
|
|
|
277
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
277
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
278
278
|
:type execution_context: int | str | None
|
|
279
279
|
:type undo: bool | None
|
|
280
280
|
"""
|
|
281
281
|
|
|
282
282
|
def parent_clear(
|
|
283
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
283
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
284
284
|
execution_context: int | str | None = None,
|
|
285
285
|
undo: bool | None = None,
|
|
286
286
|
):
|
|
287
287
|
"""Clear the mask's parenting
|
|
288
288
|
|
|
289
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
289
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
290
290
|
:type execution_context: int | str | None
|
|
291
291
|
:type undo: bool | None
|
|
292
292
|
"""
|
|
293
293
|
|
|
294
294
|
def parent_set(
|
|
295
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
295
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
296
296
|
execution_context: int | str | None = None,
|
|
297
297
|
undo: bool | None = None,
|
|
298
298
|
):
|
|
299
299
|
"""Set the mask's parenting
|
|
300
300
|
|
|
301
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
301
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
302
302
|
:type execution_context: int | str | None
|
|
303
303
|
:type undo: bool | None
|
|
304
304
|
"""
|
|
305
305
|
|
|
306
306
|
def paste_splines(
|
|
307
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
307
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
308
308
|
execution_context: int | str | None = None,
|
|
309
309
|
undo: bool | None = None,
|
|
310
310
|
):
|
|
311
311
|
"""Paste splines from the internal clipboard
|
|
312
312
|
|
|
313
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
313
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
314
314
|
:type execution_context: int | str | None
|
|
315
315
|
:type undo: bool | None
|
|
316
316
|
"""
|
|
317
317
|
|
|
318
318
|
def primitive_circle_add(
|
|
319
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
319
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
320
320
|
execution_context: int | str | None = None,
|
|
321
321
|
undo: bool | None = None,
|
|
322
322
|
*,
|
|
@@ -325,7 +325,7 @@ def primitive_circle_add(
|
|
|
325
325
|
):
|
|
326
326
|
"""Add new circle-shaped spline
|
|
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 size: Size, Size of new circle
|
|
@@ -335,7 +335,7 @@ def primitive_circle_add(
|
|
|
335
335
|
"""
|
|
336
336
|
|
|
337
337
|
def primitive_square_add(
|
|
338
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
338
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
339
339
|
execution_context: int | str | None = None,
|
|
340
340
|
undo: bool | None = None,
|
|
341
341
|
*,
|
|
@@ -344,7 +344,7 @@ def primitive_square_add(
|
|
|
344
344
|
):
|
|
345
345
|
"""Add new square-shaped spline
|
|
346
346
|
|
|
347
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
347
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
348
348
|
:type execution_context: int | str | None
|
|
349
349
|
:type undo: bool | None
|
|
350
350
|
:param size: Size, Size of new circle
|
|
@@ -354,7 +354,7 @@ def primitive_square_add(
|
|
|
354
354
|
"""
|
|
355
355
|
|
|
356
356
|
def select(
|
|
357
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
357
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
358
358
|
execution_context: int | str | None = None,
|
|
359
359
|
undo: bool | None = None,
|
|
360
360
|
*,
|
|
@@ -367,7 +367,7 @@ def select(
|
|
|
367
367
|
):
|
|
368
368
|
"""Select spline points
|
|
369
369
|
|
|
370
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
370
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
371
371
|
:type execution_context: int | str | None
|
|
372
372
|
:type undo: bool | None
|
|
373
373
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -385,7 +385,7 @@ def select(
|
|
|
385
385
|
"""
|
|
386
386
|
|
|
387
387
|
def select_all(
|
|
388
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
388
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
389
389
|
execution_context: int | str | None = None,
|
|
390
390
|
undo: bool | None = None,
|
|
391
391
|
*,
|
|
@@ -393,7 +393,7 @@ def select_all(
|
|
|
393
393
|
):
|
|
394
394
|
"""Change selection of all curve points
|
|
395
395
|
|
|
396
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
396
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
397
397
|
:type execution_context: int | str | None
|
|
398
398
|
:type undo: bool | None
|
|
399
399
|
:param action: Action, Selection action to execute
|
|
@@ -413,7 +413,7 @@ def select_all(
|
|
|
413
413
|
"""
|
|
414
414
|
|
|
415
415
|
def select_box(
|
|
416
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
416
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
417
417
|
execution_context: int | str | None = None,
|
|
418
418
|
undo: bool | None = None,
|
|
419
419
|
*,
|
|
@@ -426,7 +426,7 @@ def select_box(
|
|
|
426
426
|
):
|
|
427
427
|
"""Select curve points using box selection
|
|
428
428
|
|
|
429
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
429
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
430
430
|
:type execution_context: int | str | None
|
|
431
431
|
:type undo: bool | None
|
|
432
432
|
:param xmin: X Min
|
|
@@ -453,7 +453,7 @@ def select_box(
|
|
|
453
453
|
"""
|
|
454
454
|
|
|
455
455
|
def select_circle(
|
|
456
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
456
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
457
457
|
execution_context: int | str | None = None,
|
|
458
458
|
undo: bool | None = None,
|
|
459
459
|
*,
|
|
@@ -465,7 +465,7 @@ def select_circle(
|
|
|
465
465
|
):
|
|
466
466
|
"""Select curve points using circle selection
|
|
467
467
|
|
|
468
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
468
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
469
469
|
:type execution_context: int | str | None
|
|
470
470
|
:type undo: bool | None
|
|
471
471
|
:param x: X
|
|
@@ -490,7 +490,7 @@ def select_circle(
|
|
|
490
490
|
"""
|
|
491
491
|
|
|
492
492
|
def select_lasso(
|
|
493
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
493
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
494
494
|
execution_context: int | str | None = None,
|
|
495
495
|
undo: bool | None = None,
|
|
496
496
|
*,
|
|
@@ -502,7 +502,7 @@ def select_lasso(
|
|
|
502
502
|
):
|
|
503
503
|
"""Select curve points using lasso selection
|
|
504
504
|
|
|
505
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
505
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
506
506
|
:type execution_context: int | str | None
|
|
507
507
|
:type undo: bool | None
|
|
508
508
|
:param path: Path
|
|
@@ -527,31 +527,31 @@ def select_lasso(
|
|
|
527
527
|
"""
|
|
528
528
|
|
|
529
529
|
def select_less(
|
|
530
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
530
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
531
531
|
execution_context: int | str | None = None,
|
|
532
532
|
undo: bool | None = None,
|
|
533
533
|
):
|
|
534
534
|
"""Deselect spline points at the boundary of each selection region
|
|
535
535
|
|
|
536
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
536
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
537
537
|
:type execution_context: int | str | None
|
|
538
538
|
:type undo: bool | None
|
|
539
539
|
"""
|
|
540
540
|
|
|
541
541
|
def select_linked(
|
|
542
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
542
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
543
543
|
execution_context: int | str | None = None,
|
|
544
544
|
undo: bool | None = None,
|
|
545
545
|
):
|
|
546
546
|
"""Select all curve points linked to already selected ones
|
|
547
547
|
|
|
548
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
548
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
549
549
|
:type execution_context: int | str | None
|
|
550
550
|
:type undo: bool | None
|
|
551
551
|
"""
|
|
552
552
|
|
|
553
553
|
def select_linked_pick(
|
|
554
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
554
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
555
555
|
execution_context: int | str | None = None,
|
|
556
556
|
undo: bool | None = None,
|
|
557
557
|
*,
|
|
@@ -559,7 +559,7 @@ def select_linked_pick(
|
|
|
559
559
|
):
|
|
560
560
|
"""(De)select all points linked to the curve under the mouse cursor
|
|
561
561
|
|
|
562
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
562
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
563
563
|
:type execution_context: int | str | None
|
|
564
564
|
:type undo: bool | None
|
|
565
565
|
:param deselect: Deselect
|
|
@@ -567,55 +567,55 @@ def select_linked_pick(
|
|
|
567
567
|
"""
|
|
568
568
|
|
|
569
569
|
def select_more(
|
|
570
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
570
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
571
571
|
execution_context: int | str | None = None,
|
|
572
572
|
undo: bool | None = None,
|
|
573
573
|
):
|
|
574
574
|
"""Select more spline points connected to initial selection
|
|
575
575
|
|
|
576
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
576
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
577
577
|
:type execution_context: int | str | None
|
|
578
578
|
:type undo: bool | None
|
|
579
579
|
"""
|
|
580
580
|
|
|
581
581
|
def shape_key_clear(
|
|
582
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
582
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
583
583
|
execution_context: int | str | None = None,
|
|
584
584
|
undo: bool | None = None,
|
|
585
585
|
):
|
|
586
586
|
"""Remove mask shape keyframe for active mask layer at the current frame
|
|
587
587
|
|
|
588
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
588
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
589
589
|
:type execution_context: int | str | None
|
|
590
590
|
:type undo: bool | None
|
|
591
591
|
"""
|
|
592
592
|
|
|
593
593
|
def shape_key_feather_reset(
|
|
594
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
594
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
595
595
|
execution_context: int | str | None = None,
|
|
596
596
|
undo: bool | None = None,
|
|
597
597
|
):
|
|
598
598
|
"""Reset feather weights on all selected points animation values
|
|
599
599
|
|
|
600
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
600
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
601
601
|
:type execution_context: int | str | None
|
|
602
602
|
:type undo: bool | None
|
|
603
603
|
"""
|
|
604
604
|
|
|
605
605
|
def shape_key_insert(
|
|
606
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
606
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
607
607
|
execution_context: int | str | None = None,
|
|
608
608
|
undo: bool | None = None,
|
|
609
609
|
):
|
|
610
610
|
"""Insert mask shape keyframe for active mask layer at the current frame
|
|
611
611
|
|
|
612
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
612
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
613
613
|
:type execution_context: int | str | None
|
|
614
614
|
:type undo: bool | None
|
|
615
615
|
"""
|
|
616
616
|
|
|
617
617
|
def shape_key_rekey(
|
|
618
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
618
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
619
619
|
execution_context: int | str | None = None,
|
|
620
620
|
undo: bool | None = None,
|
|
621
621
|
*,
|
|
@@ -624,7 +624,7 @@ def shape_key_rekey(
|
|
|
624
624
|
):
|
|
625
625
|
"""Recalculate animation data on selected points for frames selected in the dopesheet
|
|
626
626
|
|
|
627
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
627
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
628
628
|
:type execution_context: int | str | None
|
|
629
629
|
:type undo: bool | None
|
|
630
630
|
:param location: Location
|
|
@@ -634,7 +634,7 @@ def shape_key_rekey(
|
|
|
634
634
|
"""
|
|
635
635
|
|
|
636
636
|
def slide_point(
|
|
637
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
637
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
638
638
|
execution_context: int | str | None = None,
|
|
639
639
|
undo: bool | None = None,
|
|
640
640
|
*,
|
|
@@ -643,7 +643,7 @@ def slide_point(
|
|
|
643
643
|
):
|
|
644
644
|
"""Slide control points
|
|
645
645
|
|
|
646
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
646
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
647
647
|
:type execution_context: int | str | None
|
|
648
648
|
:type undo: bool | None
|
|
649
649
|
:param slide_feather: Slide Feather, First try to slide feather instead of vertex
|
|
@@ -653,25 +653,25 @@ def slide_point(
|
|
|
653
653
|
"""
|
|
654
654
|
|
|
655
655
|
def slide_spline_curvature(
|
|
656
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
656
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
657
657
|
execution_context: int | str | None = None,
|
|
658
658
|
undo: bool | None = None,
|
|
659
659
|
):
|
|
660
660
|
"""Slide a point on the spline to define its curvature
|
|
661
661
|
|
|
662
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
662
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
663
663
|
:type execution_context: int | str | None
|
|
664
664
|
:type undo: bool | None
|
|
665
665
|
"""
|
|
666
666
|
|
|
667
667
|
def switch_direction(
|
|
668
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
668
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
669
669
|
execution_context: int | str | None = None,
|
|
670
670
|
undo: bool | None = None,
|
|
671
671
|
):
|
|
672
672
|
"""Switch direction of selected splines
|
|
673
673
|
|
|
674
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
674
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
675
675
|
:type execution_context: int | str | None
|
|
676
676
|
:type undo: bool | None
|
|
677
677
|
"""
|
bpy/ops/material/__init__.pyi
CHANGED
|
@@ -4,37 +4,37 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def copy(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
7
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
8
|
execution_context: int | str | None = None,
|
|
9
9
|
undo: bool | None = None,
|
|
10
10
|
):
|
|
11
11
|
"""Copy the material settings and nodes
|
|
12
12
|
|
|
13
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
13
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
14
14
|
:type execution_context: int | str | None
|
|
15
15
|
:type undo: bool | None
|
|
16
16
|
"""
|
|
17
17
|
|
|
18
18
|
def new(
|
|
19
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
19
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
20
20
|
execution_context: int | str | None = None,
|
|
21
21
|
undo: bool | None = None,
|
|
22
22
|
):
|
|
23
23
|
"""Add a new material
|
|
24
24
|
|
|
25
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
25
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
26
26
|
:type execution_context: int | str | None
|
|
27
27
|
:type undo: bool | None
|
|
28
28
|
"""
|
|
29
29
|
|
|
30
30
|
def paste(
|
|
31
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
31
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
32
32
|
execution_context: int | str | None = None,
|
|
33
33
|
undo: bool | None = None,
|
|
34
34
|
):
|
|
35
35
|
"""Paste the material settings and nodes
|
|
36
36
|
|
|
37
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
37
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
38
38
|
:type execution_context: int | str | None
|
|
39
39
|
:type undo: bool | None
|
|
40
40
|
"""
|