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/constraint/__init__.pyi
CHANGED
|
@@ -1,24 +1,18 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.types
|
|
5
4
|
|
|
6
|
-
def add_target(
|
|
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 add_target(execution_context: int | str | None = None, undo: bool | None = None):
|
|
11
6
|
"""Add a target to the constraint
|
|
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
12
|
def apply(
|
|
19
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
20
13
|
execution_context: int | str | None = None,
|
|
21
14
|
undo: bool | None = None,
|
|
15
|
+
/,
|
|
22
16
|
*,
|
|
23
17
|
constraint: str = "",
|
|
24
18
|
owner: typing.Literal["OBJECT", "BONE"] | None = "OBJECT",
|
|
@@ -26,7 +20,6 @@ def apply(
|
|
|
26
20
|
):
|
|
27
21
|
"""Apply constraint and remove from the stack
|
|
28
22
|
|
|
29
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
30
23
|
:type execution_context: int | str | None
|
|
31
24
|
:type undo: bool | None
|
|
32
25
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -44,16 +37,15 @@ def apply(
|
|
|
44
37
|
"""
|
|
45
38
|
|
|
46
39
|
def childof_clear_inverse(
|
|
47
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
48
40
|
execution_context: int | str | None = None,
|
|
49
41
|
undo: bool | None = None,
|
|
42
|
+
/,
|
|
50
43
|
*,
|
|
51
44
|
constraint: str = "",
|
|
52
45
|
owner: typing.Literal["OBJECT", "BONE"] | None = "OBJECT",
|
|
53
46
|
):
|
|
54
47
|
"""Clear inverse correction for Child Of constraint
|
|
55
48
|
|
|
56
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
57
49
|
:type execution_context: int | str | None
|
|
58
50
|
:type undo: bool | None
|
|
59
51
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -69,16 +61,15 @@ def childof_clear_inverse(
|
|
|
69
61
|
"""
|
|
70
62
|
|
|
71
63
|
def childof_set_inverse(
|
|
72
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
73
64
|
execution_context: int | str | None = None,
|
|
74
65
|
undo: bool | None = None,
|
|
66
|
+
/,
|
|
75
67
|
*,
|
|
76
68
|
constraint: str = "",
|
|
77
69
|
owner: typing.Literal["OBJECT", "BONE"] | None = "OBJECT",
|
|
78
70
|
):
|
|
79
71
|
"""Set inverse correction for Child Of constraint
|
|
80
72
|
|
|
81
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
82
73
|
:type execution_context: int | str | None
|
|
83
74
|
:type undo: bool | None
|
|
84
75
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -94,9 +85,9 @@ def childof_set_inverse(
|
|
|
94
85
|
"""
|
|
95
86
|
|
|
96
87
|
def copy(
|
|
97
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
98
88
|
execution_context: int | str | None = None,
|
|
99
89
|
undo: bool | None = None,
|
|
90
|
+
/,
|
|
100
91
|
*,
|
|
101
92
|
constraint: str = "",
|
|
102
93
|
owner: typing.Literal["OBJECT", "BONE"] | None = "OBJECT",
|
|
@@ -104,7 +95,6 @@ def copy(
|
|
|
104
95
|
):
|
|
105
96
|
"""Duplicate constraint at the same position in the stack
|
|
106
97
|
|
|
107
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
108
98
|
:type execution_context: int | str | None
|
|
109
99
|
:type undo: bool | None
|
|
110
100
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -122,16 +112,15 @@ def copy(
|
|
|
122
112
|
"""
|
|
123
113
|
|
|
124
114
|
def copy_to_selected(
|
|
125
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
126
115
|
execution_context: int | str | None = None,
|
|
127
116
|
undo: bool | None = None,
|
|
117
|
+
/,
|
|
128
118
|
*,
|
|
129
119
|
constraint: str = "",
|
|
130
120
|
owner: typing.Literal["OBJECT", "BONE"] | None = "OBJECT",
|
|
131
121
|
):
|
|
132
122
|
"""Copy constraint to other selected objects/bones
|
|
133
123
|
|
|
134
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
135
124
|
:type execution_context: int | str | None
|
|
136
125
|
:type undo: bool | None
|
|
137
126
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -147,9 +136,9 @@ def copy_to_selected(
|
|
|
147
136
|
"""
|
|
148
137
|
|
|
149
138
|
def delete(
|
|
150
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
151
139
|
execution_context: int | str | None = None,
|
|
152
140
|
undo: bool | None = None,
|
|
141
|
+
/,
|
|
153
142
|
*,
|
|
154
143
|
constraint: str = "",
|
|
155
144
|
owner: typing.Literal["OBJECT", "BONE"] | None = "OBJECT",
|
|
@@ -157,7 +146,6 @@ def delete(
|
|
|
157
146
|
):
|
|
158
147
|
"""Remove constraint from constraint stack
|
|
159
148
|
|
|
160
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
161
149
|
:type execution_context: int | str | None
|
|
162
150
|
:type undo: bool | None
|
|
163
151
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -175,21 +163,18 @@ def delete(
|
|
|
175
163
|
"""
|
|
176
164
|
|
|
177
165
|
def disable_keep_transform(
|
|
178
|
-
|
|
179
|
-
execution_context: int | str | None = None,
|
|
180
|
-
undo: bool | None = None,
|
|
166
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
181
167
|
):
|
|
182
168
|
"""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
169
|
|
|
184
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
185
170
|
:type execution_context: int | str | None
|
|
186
171
|
:type undo: bool | None
|
|
187
172
|
"""
|
|
188
173
|
|
|
189
174
|
def followpath_path_animate(
|
|
190
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
191
175
|
execution_context: int | str | None = None,
|
|
192
176
|
undo: bool | None = None,
|
|
177
|
+
/,
|
|
193
178
|
*,
|
|
194
179
|
constraint: str = "",
|
|
195
180
|
owner: typing.Literal["OBJECT", "BONE"] | None = "OBJECT",
|
|
@@ -198,7 +183,6 @@ def followpath_path_animate(
|
|
|
198
183
|
):
|
|
199
184
|
"""Add default animation for path used by constraint if it isn't animated already
|
|
200
185
|
|
|
201
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
202
186
|
:type execution_context: int | str | None
|
|
203
187
|
:type undo: bool | None
|
|
204
188
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -218,16 +202,15 @@ def followpath_path_animate(
|
|
|
218
202
|
"""
|
|
219
203
|
|
|
220
204
|
def limitdistance_reset(
|
|
221
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
222
205
|
execution_context: int | str | None = None,
|
|
223
206
|
undo: bool | None = None,
|
|
207
|
+
/,
|
|
224
208
|
*,
|
|
225
209
|
constraint: str = "",
|
|
226
210
|
owner: typing.Literal["OBJECT", "BONE"] | None = "OBJECT",
|
|
227
211
|
):
|
|
228
212
|
"""Reset limiting distance for Limit Distance Constraint
|
|
229
213
|
|
|
230
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
231
214
|
:type execution_context: int | str | None
|
|
232
215
|
:type undo: bool | None
|
|
233
216
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -243,16 +226,15 @@ def limitdistance_reset(
|
|
|
243
226
|
"""
|
|
244
227
|
|
|
245
228
|
def move_down(
|
|
246
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
247
229
|
execution_context: int | str | None = None,
|
|
248
230
|
undo: bool | None = None,
|
|
231
|
+
/,
|
|
249
232
|
*,
|
|
250
233
|
constraint: str = "",
|
|
251
234
|
owner: typing.Literal["OBJECT", "BONE"] | None = "OBJECT",
|
|
252
235
|
):
|
|
253
236
|
"""Move constraint down in constraint stack
|
|
254
237
|
|
|
255
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
256
238
|
:type execution_context: int | str | None
|
|
257
239
|
:type undo: bool | None
|
|
258
240
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -268,9 +250,9 @@ def move_down(
|
|
|
268
250
|
"""
|
|
269
251
|
|
|
270
252
|
def move_to_index(
|
|
271
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
272
253
|
execution_context: int | str | None = None,
|
|
273
254
|
undo: bool | None = None,
|
|
255
|
+
/,
|
|
274
256
|
*,
|
|
275
257
|
constraint: str = "",
|
|
276
258
|
owner: typing.Literal["OBJECT", "BONE"] | None = "OBJECT",
|
|
@@ -278,7 +260,6 @@ def move_to_index(
|
|
|
278
260
|
):
|
|
279
261
|
"""Change the constraint's position in the list so it evaluates after the set number of others
|
|
280
262
|
|
|
281
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
282
263
|
:type execution_context: int | str | None
|
|
283
264
|
:type undo: bool | None
|
|
284
265
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -296,16 +277,15 @@ def move_to_index(
|
|
|
296
277
|
"""
|
|
297
278
|
|
|
298
279
|
def move_up(
|
|
299
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
300
280
|
execution_context: int | str | None = None,
|
|
301
281
|
undo: bool | None = None,
|
|
282
|
+
/,
|
|
302
283
|
*,
|
|
303
284
|
constraint: str = "",
|
|
304
285
|
owner: typing.Literal["OBJECT", "BONE"] | None = "OBJECT",
|
|
305
286
|
):
|
|
306
287
|
"""Move constraint up in constraint stack
|
|
307
288
|
|
|
308
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
309
289
|
:type execution_context: int | str | None
|
|
310
290
|
:type undo: bool | None
|
|
311
291
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -321,28 +301,24 @@ def move_up(
|
|
|
321
301
|
"""
|
|
322
302
|
|
|
323
303
|
def normalize_target_weights(
|
|
324
|
-
|
|
325
|
-
execution_context: int | str | None = None,
|
|
326
|
-
undo: bool | None = None,
|
|
304
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
327
305
|
):
|
|
328
306
|
"""Normalize weights of all target bones
|
|
329
307
|
|
|
330
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
331
308
|
:type execution_context: int | str | None
|
|
332
309
|
:type undo: bool | None
|
|
333
310
|
"""
|
|
334
311
|
|
|
335
312
|
def objectsolver_clear_inverse(
|
|
336
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
337
313
|
execution_context: int | str | None = None,
|
|
338
314
|
undo: bool | None = None,
|
|
315
|
+
/,
|
|
339
316
|
*,
|
|
340
317
|
constraint: str = "",
|
|
341
318
|
owner: typing.Literal["OBJECT", "BONE"] | None = "OBJECT",
|
|
342
319
|
):
|
|
343
320
|
"""Clear inverse correction for Object Solver constraint
|
|
344
321
|
|
|
345
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
346
322
|
:type execution_context: int | str | None
|
|
347
323
|
:type undo: bool | None
|
|
348
324
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -358,16 +334,15 @@ def objectsolver_clear_inverse(
|
|
|
358
334
|
"""
|
|
359
335
|
|
|
360
336
|
def objectsolver_set_inverse(
|
|
361
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
362
337
|
execution_context: int | str | None = None,
|
|
363
338
|
undo: bool | None = None,
|
|
339
|
+
/,
|
|
364
340
|
*,
|
|
365
341
|
constraint: str = "",
|
|
366
342
|
owner: typing.Literal["OBJECT", "BONE"] | None = "OBJECT",
|
|
367
343
|
):
|
|
368
344
|
"""Set inverse correction for Object Solver constraint
|
|
369
345
|
|
|
370
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
371
346
|
:type execution_context: int | str | None
|
|
372
347
|
:type undo: bool | None
|
|
373
348
|
:param constraint: Constraint, Name of the constraint to edit
|
|
@@ -383,15 +358,14 @@ def objectsolver_set_inverse(
|
|
|
383
358
|
"""
|
|
384
359
|
|
|
385
360
|
def remove_target(
|
|
386
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
387
361
|
execution_context: int | str | None = None,
|
|
388
362
|
undo: bool | None = None,
|
|
363
|
+
/,
|
|
389
364
|
*,
|
|
390
365
|
index: int | None = 0,
|
|
391
366
|
):
|
|
392
367
|
"""Remove the target from the constraint
|
|
393
368
|
|
|
394
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
395
369
|
:type execution_context: int | str | None
|
|
396
370
|
:type undo: bool | None
|
|
397
371
|
:param index: index
|
|
@@ -399,16 +373,15 @@ def remove_target(
|
|
|
399
373
|
"""
|
|
400
374
|
|
|
401
375
|
def stretchto_reset(
|
|
402
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
403
376
|
execution_context: int | str | None = None,
|
|
404
377
|
undo: bool | None = None,
|
|
378
|
+
/,
|
|
405
379
|
*,
|
|
406
380
|
constraint: str = "",
|
|
407
381
|
owner: typing.Literal["OBJECT", "BONE"] | None = "OBJECT",
|
|
408
382
|
):
|
|
409
383
|
"""Reset original length of bone for Stretch To Constraint
|
|
410
384
|
|
|
411
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
412
385
|
:type execution_context: int | str | None
|
|
413
386
|
:type undo: bool | None
|
|
414
387
|
:param constraint: Constraint, Name of the constraint to edit
|