fake-bpy-module 20240812__py3-none-any.whl → 20240813__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 +44 -34
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240813.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240813.dist-info}/RECORD +83 -83
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240813.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240813.dist-info}/top_level.txt +0 -0
bpy/ops/constraint/__init__.pyi
CHANGED
|
@@ -7,13 +7,13 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
def add_target(
|
|
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
|
"""Add a target to the constraint
|
|
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,7 +21,7 @@ def add_target(
|
|
|
21
21
|
...
|
|
22
22
|
|
|
23
23
|
def apply(
|
|
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
|
*,
|
|
@@ -31,7 +31,7 @@ def apply(
|
|
|
31
31
|
):
|
|
32
32
|
"""Apply constraint and remove from the stack
|
|
33
33
|
|
|
34
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
34
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
35
35
|
:type execution_context: int | str | None
|
|
36
36
|
:type undo: bool | None
|
|
37
37
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -51,7 +51,7 @@ def apply(
|
|
|
51
51
|
...
|
|
52
52
|
|
|
53
53
|
def childof_clear_inverse(
|
|
54
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
54
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
55
55
|
execution_context: int | str | None = None,
|
|
56
56
|
undo: bool | None = None,
|
|
57
57
|
*,
|
|
@@ -60,7 +60,7 @@ def childof_clear_inverse(
|
|
|
60
60
|
):
|
|
61
61
|
"""Clear inverse correction for Child Of constraint
|
|
62
62
|
|
|
63
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
63
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
64
64
|
:type execution_context: int | str | None
|
|
65
65
|
:type undo: bool | None
|
|
66
66
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -78,7 +78,7 @@ def childof_clear_inverse(
|
|
|
78
78
|
...
|
|
79
79
|
|
|
80
80
|
def childof_set_inverse(
|
|
81
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
81
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
82
82
|
execution_context: int | str | None = None,
|
|
83
83
|
undo: bool | None = None,
|
|
84
84
|
*,
|
|
@@ -87,7 +87,7 @@ def childof_set_inverse(
|
|
|
87
87
|
):
|
|
88
88
|
"""Set inverse correction for Child Of constraint
|
|
89
89
|
|
|
90
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
90
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
91
91
|
:type execution_context: int | str | None
|
|
92
92
|
:type undo: bool | None
|
|
93
93
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -105,7 +105,7 @@ def childof_set_inverse(
|
|
|
105
105
|
...
|
|
106
106
|
|
|
107
107
|
def copy(
|
|
108
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
108
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
109
109
|
execution_context: int | str | None = None,
|
|
110
110
|
undo: bool | None = None,
|
|
111
111
|
*,
|
|
@@ -115,7 +115,7 @@ def copy(
|
|
|
115
115
|
):
|
|
116
116
|
"""Duplicate constraint at the same position in the stack
|
|
117
117
|
|
|
118
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
118
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
119
119
|
:type execution_context: int | str | None
|
|
120
120
|
:type undo: bool | None
|
|
121
121
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -135,7 +135,7 @@ def copy(
|
|
|
135
135
|
...
|
|
136
136
|
|
|
137
137
|
def copy_to_selected(
|
|
138
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
138
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
139
139
|
execution_context: int | str | None = None,
|
|
140
140
|
undo: bool | None = None,
|
|
141
141
|
*,
|
|
@@ -144,7 +144,7 @@ def copy_to_selected(
|
|
|
144
144
|
):
|
|
145
145
|
"""Copy constraint to other selected objects/bones
|
|
146
146
|
|
|
147
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
147
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
148
148
|
:type execution_context: int | str | None
|
|
149
149
|
:type undo: bool | None
|
|
150
150
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -162,7 +162,7 @@ def copy_to_selected(
|
|
|
162
162
|
...
|
|
163
163
|
|
|
164
164
|
def delete(
|
|
165
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
165
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
166
166
|
execution_context: int | str | None = None,
|
|
167
167
|
undo: bool | None = None,
|
|
168
168
|
*,
|
|
@@ -172,7 +172,7 @@ def delete(
|
|
|
172
172
|
):
|
|
173
173
|
"""Remove constraint from constraint stack
|
|
174
174
|
|
|
175
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
175
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
176
176
|
:type execution_context: int | str | None
|
|
177
177
|
:type undo: bool | None
|
|
178
178
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -192,13 +192,13 @@ def delete(
|
|
|
192
192
|
...
|
|
193
193
|
|
|
194
194
|
def disable_keep_transform(
|
|
195
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
195
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
196
196
|
execution_context: int | str | None = None,
|
|
197
197
|
undo: bool | None = None,
|
|
198
198
|
):
|
|
199
199
|
"""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
|
|
200
200
|
|
|
201
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
201
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
202
202
|
:type execution_context: int | str | None
|
|
203
203
|
:type undo: bool | None
|
|
204
204
|
"""
|
|
@@ -206,7 +206,7 @@ def disable_keep_transform(
|
|
|
206
206
|
...
|
|
207
207
|
|
|
208
208
|
def followpath_path_animate(
|
|
209
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
209
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
210
210
|
execution_context: int | str | None = None,
|
|
211
211
|
undo: bool | None = None,
|
|
212
212
|
*,
|
|
@@ -217,7 +217,7 @@ def followpath_path_animate(
|
|
|
217
217
|
):
|
|
218
218
|
"""Add default animation for path used by constraint if it isn't animated already
|
|
219
219
|
|
|
220
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
220
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
221
221
|
:type execution_context: int | str | None
|
|
222
222
|
:type undo: bool | None
|
|
223
223
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -239,7 +239,7 @@ def followpath_path_animate(
|
|
|
239
239
|
...
|
|
240
240
|
|
|
241
241
|
def limitdistance_reset(
|
|
242
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
242
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
243
243
|
execution_context: int | str | None = None,
|
|
244
244
|
undo: bool | None = None,
|
|
245
245
|
*,
|
|
@@ -248,7 +248,7 @@ def limitdistance_reset(
|
|
|
248
248
|
):
|
|
249
249
|
"""Reset limiting distance for Limit Distance Constraint
|
|
250
250
|
|
|
251
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
251
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
252
252
|
:type execution_context: int | str | None
|
|
253
253
|
:type undo: bool | None
|
|
254
254
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -266,7 +266,7 @@ def limitdistance_reset(
|
|
|
266
266
|
...
|
|
267
267
|
|
|
268
268
|
def move_down(
|
|
269
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
269
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
270
270
|
execution_context: int | str | None = None,
|
|
271
271
|
undo: bool | None = None,
|
|
272
272
|
*,
|
|
@@ -275,7 +275,7 @@ def move_down(
|
|
|
275
275
|
):
|
|
276
276
|
"""Move constraint down in constraint stack
|
|
277
277
|
|
|
278
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
278
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
279
279
|
:type execution_context: int | str | None
|
|
280
280
|
:type undo: bool | None
|
|
281
281
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -293,7 +293,7 @@ def move_down(
|
|
|
293
293
|
...
|
|
294
294
|
|
|
295
295
|
def move_to_index(
|
|
296
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
296
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
297
297
|
execution_context: int | str | None = None,
|
|
298
298
|
undo: bool | None = None,
|
|
299
299
|
*,
|
|
@@ -303,7 +303,7 @@ def move_to_index(
|
|
|
303
303
|
):
|
|
304
304
|
"""Change the constraint's position in the list so it evaluates after the set number of others
|
|
305
305
|
|
|
306
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
306
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
307
307
|
:type execution_context: int | str | None
|
|
308
308
|
:type undo: bool | None
|
|
309
309
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -323,7 +323,7 @@ def move_to_index(
|
|
|
323
323
|
...
|
|
324
324
|
|
|
325
325
|
def move_up(
|
|
326
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
326
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
327
327
|
execution_context: int | str | None = None,
|
|
328
328
|
undo: bool | None = None,
|
|
329
329
|
*,
|
|
@@ -332,7 +332,7 @@ def move_up(
|
|
|
332
332
|
):
|
|
333
333
|
"""Move constraint up in constraint stack
|
|
334
334
|
|
|
335
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
335
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
336
336
|
:type execution_context: int | str | None
|
|
337
337
|
:type undo: bool | None
|
|
338
338
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -350,13 +350,13 @@ def move_up(
|
|
|
350
350
|
...
|
|
351
351
|
|
|
352
352
|
def normalize_target_weights(
|
|
353
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
353
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
354
354
|
execution_context: int | str | None = None,
|
|
355
355
|
undo: bool | None = None,
|
|
356
356
|
):
|
|
357
357
|
"""Normalize weights of all target bones
|
|
358
358
|
|
|
359
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
359
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
360
360
|
:type execution_context: int | str | None
|
|
361
361
|
:type undo: bool | None
|
|
362
362
|
"""
|
|
@@ -364,7 +364,7 @@ def normalize_target_weights(
|
|
|
364
364
|
...
|
|
365
365
|
|
|
366
366
|
def objectsolver_clear_inverse(
|
|
367
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
367
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
368
368
|
execution_context: int | str | None = None,
|
|
369
369
|
undo: bool | None = None,
|
|
370
370
|
*,
|
|
@@ -373,7 +373,7 @@ def objectsolver_clear_inverse(
|
|
|
373
373
|
):
|
|
374
374
|
"""Clear inverse correction for Object Solver constraint
|
|
375
375
|
|
|
376
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
376
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
377
377
|
:type execution_context: int | str | None
|
|
378
378
|
:type undo: bool | None
|
|
379
379
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -391,7 +391,7 @@ def objectsolver_clear_inverse(
|
|
|
391
391
|
...
|
|
392
392
|
|
|
393
393
|
def objectsolver_set_inverse(
|
|
394
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
394
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
395
395
|
execution_context: int | str | None = None,
|
|
396
396
|
undo: bool | None = None,
|
|
397
397
|
*,
|
|
@@ -400,7 +400,7 @@ def objectsolver_set_inverse(
|
|
|
400
400
|
):
|
|
401
401
|
"""Set inverse correction for Object Solver constraint
|
|
402
402
|
|
|
403
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
403
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
404
404
|
:type execution_context: int | str | None
|
|
405
405
|
:type undo: bool | None
|
|
406
406
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -418,7 +418,7 @@ def objectsolver_set_inverse(
|
|
|
418
418
|
...
|
|
419
419
|
|
|
420
420
|
def remove_target(
|
|
421
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
421
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
422
422
|
execution_context: int | str | None = None,
|
|
423
423
|
undo: bool | None = None,
|
|
424
424
|
*,
|
|
@@ -426,7 +426,7 @@ def remove_target(
|
|
|
426
426
|
):
|
|
427
427
|
"""Remove the target from the constraint
|
|
428
428
|
|
|
429
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
429
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
430
430
|
:type execution_context: int | str | None
|
|
431
431
|
:type undo: bool | None
|
|
432
432
|
:param index: index
|
|
@@ -436,7 +436,7 @@ def remove_target(
|
|
|
436
436
|
...
|
|
437
437
|
|
|
438
438
|
def stretchto_reset(
|
|
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
|
*,
|
|
@@ -445,7 +445,7 @@ def stretchto_reset(
|
|
|
445
445
|
):
|
|
446
446
|
"""Reset original length of bone for Stretch To Constraint
|
|
447
447
|
|
|
448
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
448
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
449
449
|
:type execution_context: int | str | None
|
|
450
450
|
:type undo: bool | None
|
|
451
451
|
:param constraint: Constraint, Name of the constraint to edit
|