fake-bpy-module 20240928__py3-none-any.whl → 20240930__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
- bmesh/types/__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 +333 -298
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/RECORD +85 -85
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/top_level.txt +0 -0
bpy/ops/constraint/__init__.pyi
CHANGED
|
@@ -4,19 +4,19 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def add_target(
|
|
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
|
"""Add a target to the constraint
|
|
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 apply(
|
|
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
|
*,
|
|
@@ -26,7 +26,7 @@ def apply(
|
|
|
26
26
|
):
|
|
27
27
|
"""Apply constraint and remove from the stack
|
|
28
28
|
|
|
29
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
29
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
30
30
|
:type execution_context: int | str | None
|
|
31
31
|
:type undo: bool | None
|
|
32
32
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -44,7 +44,7 @@ def apply(
|
|
|
44
44
|
"""
|
|
45
45
|
|
|
46
46
|
def childof_clear_inverse(
|
|
47
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
47
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
48
48
|
execution_context: int | str | None = None,
|
|
49
49
|
undo: bool | None = None,
|
|
50
50
|
*,
|
|
@@ -53,7 +53,7 @@ def childof_clear_inverse(
|
|
|
53
53
|
):
|
|
54
54
|
"""Clear inverse correction for Child Of constraint
|
|
55
55
|
|
|
56
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
56
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
57
57
|
:type execution_context: int | str | None
|
|
58
58
|
:type undo: bool | None
|
|
59
59
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -69,7 +69,7 @@ def childof_clear_inverse(
|
|
|
69
69
|
"""
|
|
70
70
|
|
|
71
71
|
def childof_set_inverse(
|
|
72
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
72
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
73
73
|
execution_context: int | str | None = None,
|
|
74
74
|
undo: bool | None = None,
|
|
75
75
|
*,
|
|
@@ -78,7 +78,7 @@ def childof_set_inverse(
|
|
|
78
78
|
):
|
|
79
79
|
"""Set inverse correction for Child Of constraint
|
|
80
80
|
|
|
81
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
81
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
82
82
|
:type execution_context: int | str | None
|
|
83
83
|
:type undo: bool | None
|
|
84
84
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -94,7 +94,7 @@ def childof_set_inverse(
|
|
|
94
94
|
"""
|
|
95
95
|
|
|
96
96
|
def copy(
|
|
97
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
97
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
98
98
|
execution_context: int | str | None = None,
|
|
99
99
|
undo: bool | None = None,
|
|
100
100
|
*,
|
|
@@ -104,7 +104,7 @@ def copy(
|
|
|
104
104
|
):
|
|
105
105
|
"""Duplicate constraint at the same position in the stack
|
|
106
106
|
|
|
107
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
107
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
108
108
|
:type execution_context: int | str | None
|
|
109
109
|
:type undo: bool | None
|
|
110
110
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -122,7 +122,7 @@ def copy(
|
|
|
122
122
|
"""
|
|
123
123
|
|
|
124
124
|
def copy_to_selected(
|
|
125
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
125
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
126
126
|
execution_context: int | str | None = None,
|
|
127
127
|
undo: bool | None = None,
|
|
128
128
|
*,
|
|
@@ -131,7 +131,7 @@ def copy_to_selected(
|
|
|
131
131
|
):
|
|
132
132
|
"""Copy constraint to other selected objects/bones
|
|
133
133
|
|
|
134
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
134
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
135
135
|
:type execution_context: int | str | None
|
|
136
136
|
:type undo: bool | None
|
|
137
137
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -147,7 +147,7 @@ def copy_to_selected(
|
|
|
147
147
|
"""
|
|
148
148
|
|
|
149
149
|
def delete(
|
|
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
|
*,
|
|
@@ -157,7 +157,7 @@ def delete(
|
|
|
157
157
|
):
|
|
158
158
|
"""Remove constraint from constraint stack
|
|
159
159
|
|
|
160
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
160
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
161
161
|
:type execution_context: int | str | None
|
|
162
162
|
:type undo: bool | None
|
|
163
163
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -175,19 +175,19 @@ def delete(
|
|
|
175
175
|
"""
|
|
176
176
|
|
|
177
177
|
def disable_keep_transform(
|
|
178
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
178
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
179
179
|
execution_context: int | str | None = None,
|
|
180
180
|
undo: bool | None = None,
|
|
181
181
|
):
|
|
182
182
|
"""Set the influence of this constraint to zero while trying to maintain the object's transformation. Other active constraints can still influence the final transformation
|
|
183
183
|
|
|
184
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
184
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
185
185
|
:type execution_context: int | str | None
|
|
186
186
|
:type undo: bool | None
|
|
187
187
|
"""
|
|
188
188
|
|
|
189
189
|
def followpath_path_animate(
|
|
190
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
190
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
191
191
|
execution_context: int | str | None = None,
|
|
192
192
|
undo: bool | None = None,
|
|
193
193
|
*,
|
|
@@ -198,7 +198,7 @@ def followpath_path_animate(
|
|
|
198
198
|
):
|
|
199
199
|
"""Add default animation for path used by constraint if it isn't animated already
|
|
200
200
|
|
|
201
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
201
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
202
202
|
:type execution_context: int | str | None
|
|
203
203
|
:type undo: bool | None
|
|
204
204
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -218,7 +218,7 @@ def followpath_path_animate(
|
|
|
218
218
|
"""
|
|
219
219
|
|
|
220
220
|
def limitdistance_reset(
|
|
221
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
221
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
222
222
|
execution_context: int | str | None = None,
|
|
223
223
|
undo: bool | None = None,
|
|
224
224
|
*,
|
|
@@ -227,7 +227,7 @@ def limitdistance_reset(
|
|
|
227
227
|
):
|
|
228
228
|
"""Reset limiting distance for Limit Distance Constraint
|
|
229
229
|
|
|
230
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
230
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
231
231
|
:type execution_context: int | str | None
|
|
232
232
|
:type undo: bool | None
|
|
233
233
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -243,7 +243,7 @@ def limitdistance_reset(
|
|
|
243
243
|
"""
|
|
244
244
|
|
|
245
245
|
def move_down(
|
|
246
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
246
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
247
247
|
execution_context: int | str | None = None,
|
|
248
248
|
undo: bool | None = None,
|
|
249
249
|
*,
|
|
@@ -252,7 +252,7 @@ def move_down(
|
|
|
252
252
|
):
|
|
253
253
|
"""Move constraint down in constraint stack
|
|
254
254
|
|
|
255
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
255
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
256
256
|
:type execution_context: int | str | None
|
|
257
257
|
:type undo: bool | None
|
|
258
258
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -268,7 +268,7 @@ def move_down(
|
|
|
268
268
|
"""
|
|
269
269
|
|
|
270
270
|
def move_to_index(
|
|
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
|
*,
|
|
@@ -278,7 +278,7 @@ def move_to_index(
|
|
|
278
278
|
):
|
|
279
279
|
"""Change the constraint's position in the list so it evaluates after the set number of others
|
|
280
280
|
|
|
281
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
281
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
282
282
|
:type execution_context: int | str | None
|
|
283
283
|
:type undo: bool | None
|
|
284
284
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -296,7 +296,7 @@ def move_to_index(
|
|
|
296
296
|
"""
|
|
297
297
|
|
|
298
298
|
def move_up(
|
|
299
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
299
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
300
300
|
execution_context: int | str | None = None,
|
|
301
301
|
undo: bool | None = None,
|
|
302
302
|
*,
|
|
@@ -305,7 +305,7 @@ def move_up(
|
|
|
305
305
|
):
|
|
306
306
|
"""Move constraint up in constraint stack
|
|
307
307
|
|
|
308
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
308
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
309
309
|
:type execution_context: int | str | None
|
|
310
310
|
:type undo: bool | None
|
|
311
311
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -321,19 +321,19 @@ def move_up(
|
|
|
321
321
|
"""
|
|
322
322
|
|
|
323
323
|
def normalize_target_weights(
|
|
324
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
324
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
325
325
|
execution_context: int | str | None = None,
|
|
326
326
|
undo: bool | None = None,
|
|
327
327
|
):
|
|
328
328
|
"""Normalize weights of all target bones
|
|
329
329
|
|
|
330
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
330
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
331
331
|
:type execution_context: int | str | None
|
|
332
332
|
:type undo: bool | None
|
|
333
333
|
"""
|
|
334
334
|
|
|
335
335
|
def objectsolver_clear_inverse(
|
|
336
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
336
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
337
337
|
execution_context: int | str | None = None,
|
|
338
338
|
undo: bool | None = None,
|
|
339
339
|
*,
|
|
@@ -342,7 +342,7 @@ def objectsolver_clear_inverse(
|
|
|
342
342
|
):
|
|
343
343
|
"""Clear inverse correction for Object Solver constraint
|
|
344
344
|
|
|
345
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
345
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
346
346
|
:type execution_context: int | str | None
|
|
347
347
|
:type undo: bool | None
|
|
348
348
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -358,7 +358,7 @@ def objectsolver_clear_inverse(
|
|
|
358
358
|
"""
|
|
359
359
|
|
|
360
360
|
def objectsolver_set_inverse(
|
|
361
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
361
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
362
362
|
execution_context: int | str | None = None,
|
|
363
363
|
undo: bool | None = None,
|
|
364
364
|
*,
|
|
@@ -367,7 +367,7 @@ def objectsolver_set_inverse(
|
|
|
367
367
|
):
|
|
368
368
|
"""Set inverse correction for Object Solver constraint
|
|
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 constraint: Constraint, Name of the constraint to edit
|
|
@@ -383,7 +383,7 @@ def objectsolver_set_inverse(
|
|
|
383
383
|
"""
|
|
384
384
|
|
|
385
385
|
def remove_target(
|
|
386
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
386
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
387
387
|
execution_context: int | str | None = None,
|
|
388
388
|
undo: bool | None = None,
|
|
389
389
|
*,
|
|
@@ -391,7 +391,7 @@ def remove_target(
|
|
|
391
391
|
):
|
|
392
392
|
"""Remove the target from the constraint
|
|
393
393
|
|
|
394
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
394
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
395
395
|
:type execution_context: int | str | None
|
|
396
396
|
:type undo: bool | None
|
|
397
397
|
:param index: index
|
|
@@ -399,7 +399,7 @@ def remove_target(
|
|
|
399
399
|
"""
|
|
400
400
|
|
|
401
401
|
def stretchto_reset(
|
|
402
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
402
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
403
403
|
execution_context: int | str | None = None,
|
|
404
404
|
undo: bool | None = None,
|
|
405
405
|
*,
|
|
@@ -408,7 +408,7 @@ def stretchto_reset(
|
|
|
408
408
|
):
|
|
409
409
|
"""Reset original length of bone for Stretch To Constraint
|
|
410
410
|
|
|
411
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
411
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
412
412
|
:type execution_context: int | str | None
|
|
413
413
|
:type undo: bool | None
|
|
414
414
|
:param constraint: Constraint, Name of the constraint to edit
|