fake-bpy-module 20240620__py3-none-any.whl → 20240621__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_userpref/__init__.pyi +225 -0
- bpy/ops/action/__init__.pyi +50 -50
- bpy/ops/anim/__init__.pyi +94 -94
- bpy/ops/armature/__init__.pyi +54 -54
- bpy/ops/asset/__init__.pyi +50 -50
- bpy/ops/brush/__init__.pyi +10 -10
- bpy/ops/buttons/__init__.pyi +88 -88
- bpy/ops/cachefile/__init__.pyi +88 -88
- bpy/ops/camera/__init__.pyi +14 -14
- bpy/ops/clip/__init__.pyi +175 -174
- bpy/ops/cloth/__init__.pyi +6 -6
- bpy/ops/collection/__init__.pyi +8 -8
- bpy/ops/console/__init__.pyi +26 -26
- bpy/ops/constraint/__init__.pyi +42 -42
- bpy/ops/curve/__init__.pyi +167 -122
- bpy/ops/curves/__init__.pyi +75 -58
- bpy/ops/cycles/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +50 -50
- bpy/ops/export_anim/__init__.pyi +14 -14
- bpy/ops/export_scene/__init__.pyi +250 -250
- bpy/ops/extensions/__init__.pyi +73 -73
- bpy/ops/file/__init__.pyi +94 -94
- bpy/ops/fluid/__init__.pyi +6 -6
- bpy/ops/font/__init__.pyi +100 -100
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +10 -10
- bpy/ops/gpencil/__init__.pyi +411 -410
- bpy/ops/graph/__init__.pyi +194 -194
- bpy/ops/grease_pencil/__init__.pyi +100 -100
- bpy/ops/image/__init__.pyi +399 -390
- bpy/ops/import_anim/__init__.pyi +16 -16
- bpy/ops/import_curve/__init__.pyi +4 -4
- bpy/ops/import_scene/__init__.pyi +56 -56
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +8 -8
- bpy/ops/marker/__init__.pyi +34 -34
- bpy/ops/mask/__init__.pyi +63 -62
- bpy/ops/mball/__init__.pyi +12 -12
- bpy/ops/mesh/__init__.pyi +893 -790
- bpy/ops/nla/__init__.pyi +70 -70
- bpy/ops/node/__init__.pyi +192 -192
- bpy/ops/object/__init__.pyi +1013 -840
- bpy/ops/outliner/__init__.pyi +44 -44
- bpy/ops/paint/__init__.pyi +169 -168
- bpy/ops/paintcurve/__init__.pyi +12 -12
- bpy/ops/palette/__init__.pyi +4 -4
- bpy/ops/particle/__init__.pyi +34 -34
- bpy/ops/pose/__init__.pyi +60 -60
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +150 -150
- bpy/ops/ptcache/__init__.pyi +4 -4
- bpy/ops/render/__init__.pyi +56 -56
- bpy/ops/rigidbody/__init__.pyi +8 -8
- bpy/ops/scene/__init__.pyi +20 -20
- bpy/ops/screen/__init__.pyi +128 -128
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +207 -202
- bpy/ops/sculpt_curves/__init__.pyi +12 -12
- bpy/ops/sequencer/__init__.pyi +465 -464
- bpy/ops/sound/__init__.pyi +154 -154
- bpy/ops/spreadsheet/__init__.pyi +6 -6
- bpy/ops/surface/__init__.pyi +109 -60
- bpy/ops/text/__init__.pyi +110 -110
- bpy/ops/text_editor/__init__.pyi +6 -6
- bpy/ops/transform/__init__.pyi +628 -566
- bpy/ops/ui/__init__.pyi +25 -24
- bpy/ops/uilist/__init__.pyi +12 -12
- bpy/ops/uv/__init__.pyi +235 -234
- bpy/ops/view2d/__init__.pyi +72 -72
- bpy/ops/view3d/__init__.pyi +144 -144
- bpy/ops/wm/__init__.pyi +1813 -1806
- bpy/ops/workspace/__init__.pyi +4 -4
- bpy/types/__init__.pyi +1611 -1802
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/RECORD +77 -77
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/top_level.txt +0 -0
bpy/ops/cloth/__init__.pyi
CHANGED
|
@@ -10,9 +10,9 @@ def preset_add(
|
|
|
10
10
|
execution_context: int | str | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
12
|
*,
|
|
13
|
-
name: str
|
|
14
|
-
remove_name: bool |
|
|
15
|
-
remove_active: bool |
|
|
13
|
+
name: str = "",
|
|
14
|
+
remove_name: bool | None = False,
|
|
15
|
+
remove_active: bool | None = False,
|
|
16
16
|
):
|
|
17
17
|
"""Add or remove a Cloth Preset
|
|
18
18
|
|
|
@@ -20,11 +20,11 @@ def preset_add(
|
|
|
20
20
|
:type execution_context: int | str | None
|
|
21
21
|
:type undo: bool | None
|
|
22
22
|
:param name: Name, Name of the preset, used to make the path name
|
|
23
|
-
:type name: str
|
|
23
|
+
:type name: str
|
|
24
24
|
:param remove_name: remove_name
|
|
25
|
-
:type remove_name: bool |
|
|
25
|
+
:type remove_name: bool | None
|
|
26
26
|
:param remove_active: remove_active
|
|
27
|
-
:type remove_active: bool |
|
|
27
|
+
:type remove_active: bool | None
|
|
28
28
|
"""
|
|
29
29
|
|
|
30
30
|
...
|
bpy/ops/collection/__init__.pyi
CHANGED
|
@@ -10,7 +10,7 @@ def create(
|
|
|
10
10
|
execution_context: int | str | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
12
|
*,
|
|
13
|
-
name: str
|
|
13
|
+
name: str = "Collection",
|
|
14
14
|
):
|
|
15
15
|
"""Create an object collection from selected objects
|
|
16
16
|
|
|
@@ -18,7 +18,7 @@ def create(
|
|
|
18
18
|
:type execution_context: int | str | None
|
|
19
19
|
:type undo: bool | None
|
|
20
20
|
:param name: Name, Name of the new collection
|
|
21
|
-
:type name: str
|
|
21
|
+
:type name: str
|
|
22
22
|
"""
|
|
23
23
|
|
|
24
24
|
...
|
|
@@ -42,7 +42,7 @@ def exporter_add(
|
|
|
42
42
|
execution_context: int | str | None = None,
|
|
43
43
|
undo: bool | None = None,
|
|
44
44
|
*,
|
|
45
|
-
name: str
|
|
45
|
+
name: str = "",
|
|
46
46
|
):
|
|
47
47
|
"""Add Exporter
|
|
48
48
|
|
|
@@ -50,7 +50,7 @@ def exporter_add(
|
|
|
50
50
|
:type execution_context: int | str | None
|
|
51
51
|
:type undo: bool | None
|
|
52
52
|
:param name: Name, FileHandler idname
|
|
53
|
-
:type name: str
|
|
53
|
+
:type name: str
|
|
54
54
|
"""
|
|
55
55
|
|
|
56
56
|
...
|
|
@@ -60,7 +60,7 @@ def exporter_export(
|
|
|
60
60
|
execution_context: int | str | None = None,
|
|
61
61
|
undo: bool | None = None,
|
|
62
62
|
*,
|
|
63
|
-
index:
|
|
63
|
+
index: int | None = 0,
|
|
64
64
|
):
|
|
65
65
|
"""Invoke the export operation
|
|
66
66
|
|
|
@@ -68,7 +68,7 @@ def exporter_export(
|
|
|
68
68
|
:type execution_context: int | str | None
|
|
69
69
|
:type undo: bool | None
|
|
70
70
|
:param index: Index, Exporter index
|
|
71
|
-
:type index:
|
|
71
|
+
:type index: int | None
|
|
72
72
|
"""
|
|
73
73
|
|
|
74
74
|
...
|
|
@@ -78,7 +78,7 @@ def exporter_remove(
|
|
|
78
78
|
execution_context: int | str | None = None,
|
|
79
79
|
undo: bool | None = None,
|
|
80
80
|
*,
|
|
81
|
-
index:
|
|
81
|
+
index: int | None = 0,
|
|
82
82
|
):
|
|
83
83
|
"""Remove Exporter
|
|
84
84
|
|
|
@@ -86,7 +86,7 @@ def exporter_remove(
|
|
|
86
86
|
:type execution_context: int | str | None
|
|
87
87
|
:type undo: bool | None
|
|
88
88
|
:param index: Index, Exporter index
|
|
89
|
-
:type index:
|
|
89
|
+
:type index: int | None
|
|
90
90
|
"""
|
|
91
91
|
|
|
92
92
|
...
|
bpy/ops/console/__init__.pyi
CHANGED
|
@@ -38,8 +38,8 @@ def clear(
|
|
|
38
38
|
execution_context: int | str | None = None,
|
|
39
39
|
undo: bool | None = None,
|
|
40
40
|
*,
|
|
41
|
-
scrollback: bool |
|
|
42
|
-
history: bool |
|
|
41
|
+
scrollback: bool | None = True,
|
|
42
|
+
history: bool | None = False,
|
|
43
43
|
):
|
|
44
44
|
"""Clear text by type
|
|
45
45
|
|
|
@@ -47,9 +47,9 @@ def clear(
|
|
|
47
47
|
:type execution_context: int | str | None
|
|
48
48
|
:type undo: bool | None
|
|
49
49
|
:param scrollback: Scrollback, Clear the scrollback history
|
|
50
|
-
:type scrollback: bool |
|
|
50
|
+
:type scrollback: bool | None
|
|
51
51
|
:param history: History, Clear the command history
|
|
52
|
-
:type history: bool |
|
|
52
|
+
:type history: bool | None
|
|
53
53
|
"""
|
|
54
54
|
|
|
55
55
|
...
|
|
@@ -73,7 +73,7 @@ def copy(
|
|
|
73
73
|
execution_context: int | str | None = None,
|
|
74
74
|
undo: bool | None = None,
|
|
75
75
|
*,
|
|
76
|
-
delete: bool |
|
|
76
|
+
delete: bool | None = False,
|
|
77
77
|
):
|
|
78
78
|
"""Copy selected text to clipboard
|
|
79
79
|
|
|
@@ -81,7 +81,7 @@ def copy(
|
|
|
81
81
|
:type execution_context: int | str | None
|
|
82
82
|
:type undo: bool | None
|
|
83
83
|
:param delete: Delete Selection, Whether to delete the selection after copying
|
|
84
|
-
:type delete: bool |
|
|
84
|
+
:type delete: bool | None
|
|
85
85
|
"""
|
|
86
86
|
|
|
87
87
|
...
|
|
@@ -123,7 +123,7 @@ def execute(
|
|
|
123
123
|
execution_context: int | str | None = None,
|
|
124
124
|
undo: bool | None = None,
|
|
125
125
|
*,
|
|
126
|
-
interactive: bool |
|
|
126
|
+
interactive: bool | None = False,
|
|
127
127
|
):
|
|
128
128
|
"""Execute the current console line as a Python expression
|
|
129
129
|
|
|
@@ -131,7 +131,7 @@ def execute(
|
|
|
131
131
|
:type execution_context: int | str | None
|
|
132
132
|
:type undo: bool | None
|
|
133
133
|
:param interactive: interactive
|
|
134
|
-
:type interactive: bool |
|
|
134
|
+
:type interactive: bool | None
|
|
135
135
|
"""
|
|
136
136
|
|
|
137
137
|
...
|
|
@@ -141,9 +141,9 @@ def history_append(
|
|
|
141
141
|
execution_context: int | str | None = None,
|
|
142
142
|
undo: bool | None = None,
|
|
143
143
|
*,
|
|
144
|
-
text: str
|
|
145
|
-
current_character:
|
|
146
|
-
remove_duplicates: bool |
|
|
144
|
+
text: str = "",
|
|
145
|
+
current_character: int | None = 0,
|
|
146
|
+
remove_duplicates: bool | None = False,
|
|
147
147
|
):
|
|
148
148
|
"""Append history at cursor position
|
|
149
149
|
|
|
@@ -151,11 +151,11 @@ def history_append(
|
|
|
151
151
|
:type execution_context: int | str | None
|
|
152
152
|
:type undo: bool | None
|
|
153
153
|
:param text: Text, Text to insert at the cursor position
|
|
154
|
-
:type text: str
|
|
154
|
+
:type text: str
|
|
155
155
|
:param current_character: Cursor, The index of the cursor
|
|
156
|
-
:type current_character:
|
|
156
|
+
:type current_character: int | None
|
|
157
157
|
:param remove_duplicates: Remove Duplicates, Remove duplicate items in the history
|
|
158
|
-
:type remove_duplicates: bool |
|
|
158
|
+
:type remove_duplicates: bool | None
|
|
159
159
|
"""
|
|
160
160
|
|
|
161
161
|
...
|
|
@@ -165,7 +165,7 @@ def history_cycle(
|
|
|
165
165
|
execution_context: int | str | None = None,
|
|
166
166
|
undo: bool | None = None,
|
|
167
167
|
*,
|
|
168
|
-
reverse: bool |
|
|
168
|
+
reverse: bool | None = False,
|
|
169
169
|
):
|
|
170
170
|
"""Cycle through history
|
|
171
171
|
|
|
@@ -173,7 +173,7 @@ def history_cycle(
|
|
|
173
173
|
:type execution_context: int | str | None
|
|
174
174
|
:type undo: bool | None
|
|
175
175
|
:param reverse: Reverse, Reverse cycle history
|
|
176
|
-
:type reverse: bool |
|
|
176
|
+
:type reverse: bool | None
|
|
177
177
|
"""
|
|
178
178
|
|
|
179
179
|
...
|
|
@@ -211,7 +211,7 @@ def insert(
|
|
|
211
211
|
execution_context: int | str | None = None,
|
|
212
212
|
undo: bool | None = None,
|
|
213
213
|
*,
|
|
214
|
-
text: str
|
|
214
|
+
text: str = "",
|
|
215
215
|
):
|
|
216
216
|
"""Insert text at cursor position
|
|
217
217
|
|
|
@@ -219,7 +219,7 @@ def insert(
|
|
|
219
219
|
:type execution_context: int | str | None
|
|
220
220
|
:type undo: bool | None
|
|
221
221
|
:param text: Text, Text to insert at the cursor position
|
|
222
|
-
:type text: str
|
|
222
|
+
:type text: str
|
|
223
223
|
"""
|
|
224
224
|
|
|
225
225
|
...
|
|
@@ -229,7 +229,7 @@ def language(
|
|
|
229
229
|
execution_context: int | str | None = None,
|
|
230
230
|
undo: bool | None = None,
|
|
231
231
|
*,
|
|
232
|
-
language: str
|
|
232
|
+
language: str = "",
|
|
233
233
|
):
|
|
234
234
|
"""Set the current language for this console
|
|
235
235
|
|
|
@@ -237,7 +237,7 @@ def language(
|
|
|
237
237
|
:type execution_context: int | str | None
|
|
238
238
|
:type undo: bool | None
|
|
239
239
|
:param language: Language
|
|
240
|
-
:type language: str
|
|
240
|
+
:type language: str
|
|
241
241
|
"""
|
|
242
242
|
|
|
243
243
|
...
|
|
@@ -248,7 +248,7 @@ def move(
|
|
|
248
248
|
undo: bool | None = None,
|
|
249
249
|
*,
|
|
250
250
|
type: str | None = "LINE_BEGIN",
|
|
251
|
-
select: bool |
|
|
251
|
+
select: bool | None = False,
|
|
252
252
|
):
|
|
253
253
|
"""Move cursor position
|
|
254
254
|
|
|
@@ -258,7 +258,7 @@ def move(
|
|
|
258
258
|
:param type: Type, Where to move cursor to
|
|
259
259
|
:type type: str | None
|
|
260
260
|
:param select: Select, Whether to select while moving
|
|
261
|
-
:type select: bool |
|
|
261
|
+
:type select: bool | None
|
|
262
262
|
"""
|
|
263
263
|
|
|
264
264
|
...
|
|
@@ -268,7 +268,7 @@ def paste(
|
|
|
268
268
|
execution_context: int | str | None = None,
|
|
269
269
|
undo: bool | None = None,
|
|
270
270
|
*,
|
|
271
|
-
selection: bool |
|
|
271
|
+
selection: bool | None = False,
|
|
272
272
|
):
|
|
273
273
|
"""Paste text from clipboard
|
|
274
274
|
|
|
@@ -276,7 +276,7 @@ def paste(
|
|
|
276
276
|
:type execution_context: int | str | None
|
|
277
277
|
:type undo: bool | None
|
|
278
278
|
:param selection: Selection, Paste text selected elsewhere rather than copied (X11/Wayland only)
|
|
279
|
-
:type selection: bool |
|
|
279
|
+
:type selection: bool | None
|
|
280
280
|
"""
|
|
281
281
|
|
|
282
282
|
...
|
|
@@ -286,7 +286,7 @@ def scrollback_append(
|
|
|
286
286
|
execution_context: int | str | None = None,
|
|
287
287
|
undo: bool | None = None,
|
|
288
288
|
*,
|
|
289
|
-
text: str
|
|
289
|
+
text: str = "",
|
|
290
290
|
type: str | None = "OUTPUT",
|
|
291
291
|
):
|
|
292
292
|
"""Append scrollback text by type
|
|
@@ -295,7 +295,7 @@ def scrollback_append(
|
|
|
295
295
|
:type execution_context: int | str | None
|
|
296
296
|
:type undo: bool | None
|
|
297
297
|
:param text: Text, Text to insert at the cursor position
|
|
298
|
-
:type text: str
|
|
298
|
+
:type text: str
|
|
299
299
|
:param type: Type, Console output type
|
|
300
300
|
:type type: str | None
|
|
301
301
|
"""
|
bpy/ops/constraint/__init__.pyi
CHANGED
|
@@ -24,9 +24,9 @@ def apply(
|
|
|
24
24
|
execution_context: int | str | None = None,
|
|
25
25
|
undo: bool | None = None,
|
|
26
26
|
*,
|
|
27
|
-
constraint: str
|
|
27
|
+
constraint: str = "",
|
|
28
28
|
owner: str | None = "OBJECT",
|
|
29
|
-
report: bool |
|
|
29
|
+
report: bool | None = False,
|
|
30
30
|
):
|
|
31
31
|
"""Apply constraint and remove from the stack
|
|
32
32
|
|
|
@@ -34,7 +34,7 @@ def apply(
|
|
|
34
34
|
:type execution_context: int | str | None
|
|
35
35
|
:type undo: bool | None
|
|
36
36
|
:param constraint: Constraint, Name of the constraint to edit
|
|
37
|
-
:type constraint: str
|
|
37
|
+
:type constraint: str
|
|
38
38
|
:param owner: Owner, The owner of this constraint
|
|
39
39
|
|
|
40
40
|
OBJECT
|
|
@@ -44,7 +44,7 @@ def apply(
|
|
|
44
44
|
Bone -- Edit a constraint on the active bone.
|
|
45
45
|
:type owner: str | None
|
|
46
46
|
:param report: Report, Create a notification after the operation
|
|
47
|
-
:type report: bool |
|
|
47
|
+
:type report: bool | None
|
|
48
48
|
"""
|
|
49
49
|
|
|
50
50
|
...
|
|
@@ -54,7 +54,7 @@ def childof_clear_inverse(
|
|
|
54
54
|
execution_context: int | str | None = None,
|
|
55
55
|
undo: bool | None = None,
|
|
56
56
|
*,
|
|
57
|
-
constraint: str
|
|
57
|
+
constraint: str = "",
|
|
58
58
|
owner: str | None = "OBJECT",
|
|
59
59
|
):
|
|
60
60
|
"""Clear inverse correction for Child Of constraint
|
|
@@ -63,7 +63,7 @@ def childof_clear_inverse(
|
|
|
63
63
|
:type execution_context: int | str | None
|
|
64
64
|
:type undo: bool | None
|
|
65
65
|
:param constraint: Constraint, Name of the constraint to edit
|
|
66
|
-
:type constraint: str
|
|
66
|
+
:type constraint: str
|
|
67
67
|
:param owner: Owner, The owner of this constraint
|
|
68
68
|
|
|
69
69
|
OBJECT
|
|
@@ -81,7 +81,7 @@ def childof_set_inverse(
|
|
|
81
81
|
execution_context: int | str | None = None,
|
|
82
82
|
undo: bool | None = None,
|
|
83
83
|
*,
|
|
84
|
-
constraint: str
|
|
84
|
+
constraint: str = "",
|
|
85
85
|
owner: str | None = "OBJECT",
|
|
86
86
|
):
|
|
87
87
|
"""Set inverse correction for Child Of constraint
|
|
@@ -90,7 +90,7 @@ def childof_set_inverse(
|
|
|
90
90
|
:type execution_context: int | str | None
|
|
91
91
|
:type undo: bool | None
|
|
92
92
|
:param constraint: Constraint, Name of the constraint to edit
|
|
93
|
-
:type constraint: str
|
|
93
|
+
:type constraint: str
|
|
94
94
|
:param owner: Owner, The owner of this constraint
|
|
95
95
|
|
|
96
96
|
OBJECT
|
|
@@ -108,9 +108,9 @@ def copy(
|
|
|
108
108
|
execution_context: int | str | None = None,
|
|
109
109
|
undo: bool | None = None,
|
|
110
110
|
*,
|
|
111
|
-
constraint: str
|
|
111
|
+
constraint: str = "",
|
|
112
112
|
owner: str | None = "OBJECT",
|
|
113
|
-
report: bool |
|
|
113
|
+
report: bool | None = False,
|
|
114
114
|
):
|
|
115
115
|
"""Duplicate constraint at the same position in the stack
|
|
116
116
|
|
|
@@ -118,7 +118,7 @@ def copy(
|
|
|
118
118
|
:type execution_context: int | str | None
|
|
119
119
|
:type undo: bool | None
|
|
120
120
|
:param constraint: Constraint, Name of the constraint to edit
|
|
121
|
-
:type constraint: str
|
|
121
|
+
:type constraint: str
|
|
122
122
|
:param owner: Owner, The owner of this constraint
|
|
123
123
|
|
|
124
124
|
OBJECT
|
|
@@ -128,7 +128,7 @@ def copy(
|
|
|
128
128
|
Bone -- Edit a constraint on the active bone.
|
|
129
129
|
:type owner: str | None
|
|
130
130
|
:param report: Report, Create a notification after the operation
|
|
131
|
-
:type report: bool |
|
|
131
|
+
:type report: bool | None
|
|
132
132
|
"""
|
|
133
133
|
|
|
134
134
|
...
|
|
@@ -138,7 +138,7 @@ def copy_to_selected(
|
|
|
138
138
|
execution_context: int | str | None = None,
|
|
139
139
|
undo: bool | None = None,
|
|
140
140
|
*,
|
|
141
|
-
constraint: str
|
|
141
|
+
constraint: str = "",
|
|
142
142
|
owner: str | None = "OBJECT",
|
|
143
143
|
):
|
|
144
144
|
"""Copy constraint to other selected objects/bones
|
|
@@ -147,7 +147,7 @@ def copy_to_selected(
|
|
|
147
147
|
:type execution_context: int | str | None
|
|
148
148
|
:type undo: bool | None
|
|
149
149
|
:param constraint: Constraint, Name of the constraint to edit
|
|
150
|
-
:type constraint: str
|
|
150
|
+
:type constraint: str
|
|
151
151
|
:param owner: Owner, The owner of this constraint
|
|
152
152
|
|
|
153
153
|
OBJECT
|
|
@@ -165,9 +165,9 @@ def delete(
|
|
|
165
165
|
execution_context: int | str | None = None,
|
|
166
166
|
undo: bool | None = None,
|
|
167
167
|
*,
|
|
168
|
-
constraint: str
|
|
168
|
+
constraint: str = "",
|
|
169
169
|
owner: str | None = "OBJECT",
|
|
170
|
-
report: bool |
|
|
170
|
+
report: bool | None = False,
|
|
171
171
|
):
|
|
172
172
|
"""Remove constraint from constraint stack
|
|
173
173
|
|
|
@@ -175,7 +175,7 @@ def delete(
|
|
|
175
175
|
:type execution_context: int | str | None
|
|
176
176
|
:type undo: bool | None
|
|
177
177
|
:param constraint: Constraint, Name of the constraint to edit
|
|
178
|
-
:type constraint: str
|
|
178
|
+
:type constraint: str
|
|
179
179
|
:param owner: Owner, The owner of this constraint
|
|
180
180
|
|
|
181
181
|
OBJECT
|
|
@@ -185,7 +185,7 @@ def delete(
|
|
|
185
185
|
Bone -- Edit a constraint on the active bone.
|
|
186
186
|
:type owner: str | None
|
|
187
187
|
:param report: Report, Create a notification after the operation
|
|
188
|
-
:type report: bool |
|
|
188
|
+
:type report: bool | None
|
|
189
189
|
"""
|
|
190
190
|
|
|
191
191
|
...
|
|
@@ -209,10 +209,10 @@ def followpath_path_animate(
|
|
|
209
209
|
execution_context: int | str | None = None,
|
|
210
210
|
undo: bool | None = None,
|
|
211
211
|
*,
|
|
212
|
-
constraint: str
|
|
212
|
+
constraint: str = "",
|
|
213
213
|
owner: str | None = "OBJECT",
|
|
214
|
-
frame_start:
|
|
215
|
-
length:
|
|
214
|
+
frame_start: int | None = 1,
|
|
215
|
+
length: int | None = 100,
|
|
216
216
|
):
|
|
217
217
|
"""Add default animation for path used by constraint if it isn't animated already
|
|
218
218
|
|
|
@@ -220,7 +220,7 @@ def followpath_path_animate(
|
|
|
220
220
|
:type execution_context: int | str | None
|
|
221
221
|
:type undo: bool | None
|
|
222
222
|
:param constraint: Constraint, Name of the constraint to edit
|
|
223
|
-
:type constraint: str
|
|
223
|
+
:type constraint: str
|
|
224
224
|
:param owner: Owner, The owner of this constraint
|
|
225
225
|
|
|
226
226
|
OBJECT
|
|
@@ -230,9 +230,9 @@ def followpath_path_animate(
|
|
|
230
230
|
Bone -- Edit a constraint on the active bone.
|
|
231
231
|
:type owner: str | None
|
|
232
232
|
:param frame_start: Start Frame, First frame of path animation
|
|
233
|
-
:type frame_start:
|
|
233
|
+
:type frame_start: int | None
|
|
234
234
|
:param length: Length, Number of frames that path animation should take
|
|
235
|
-
:type length:
|
|
235
|
+
:type length: int | None
|
|
236
236
|
"""
|
|
237
237
|
|
|
238
238
|
...
|
|
@@ -242,7 +242,7 @@ def limitdistance_reset(
|
|
|
242
242
|
execution_context: int | str | None = None,
|
|
243
243
|
undo: bool | None = None,
|
|
244
244
|
*,
|
|
245
|
-
constraint: str
|
|
245
|
+
constraint: str = "",
|
|
246
246
|
owner: str | None = "OBJECT",
|
|
247
247
|
):
|
|
248
248
|
"""Reset limiting distance for Limit Distance Constraint
|
|
@@ -251,7 +251,7 @@ def limitdistance_reset(
|
|
|
251
251
|
:type execution_context: int | str | None
|
|
252
252
|
:type undo: bool | None
|
|
253
253
|
:param constraint: Constraint, Name of the constraint to edit
|
|
254
|
-
:type constraint: str
|
|
254
|
+
:type constraint: str
|
|
255
255
|
:param owner: Owner, The owner of this constraint
|
|
256
256
|
|
|
257
257
|
OBJECT
|
|
@@ -269,7 +269,7 @@ def move_down(
|
|
|
269
269
|
execution_context: int | str | None = None,
|
|
270
270
|
undo: bool | None = None,
|
|
271
271
|
*,
|
|
272
|
-
constraint: str
|
|
272
|
+
constraint: str = "",
|
|
273
273
|
owner: str | None = "OBJECT",
|
|
274
274
|
):
|
|
275
275
|
"""Move constraint down in constraint stack
|
|
@@ -278,7 +278,7 @@ def move_down(
|
|
|
278
278
|
:type execution_context: int | str | None
|
|
279
279
|
:type undo: bool | None
|
|
280
280
|
:param constraint: Constraint, Name of the constraint to edit
|
|
281
|
-
:type constraint: str
|
|
281
|
+
:type constraint: str
|
|
282
282
|
:param owner: Owner, The owner of this constraint
|
|
283
283
|
|
|
284
284
|
OBJECT
|
|
@@ -296,9 +296,9 @@ def move_to_index(
|
|
|
296
296
|
execution_context: int | str | None = None,
|
|
297
297
|
undo: bool | None = None,
|
|
298
298
|
*,
|
|
299
|
-
constraint: str
|
|
299
|
+
constraint: str = "",
|
|
300
300
|
owner: str | None = "OBJECT",
|
|
301
|
-
index:
|
|
301
|
+
index: int | None = 0,
|
|
302
302
|
):
|
|
303
303
|
"""Change the constraint's position in the list so it evaluates after the set number of others
|
|
304
304
|
|
|
@@ -306,7 +306,7 @@ def move_to_index(
|
|
|
306
306
|
:type execution_context: int | str | None
|
|
307
307
|
:type undo: bool | None
|
|
308
308
|
:param constraint: Constraint, Name of the constraint to edit
|
|
309
|
-
:type constraint: str
|
|
309
|
+
:type constraint: str
|
|
310
310
|
:param owner: Owner, The owner of this constraint
|
|
311
311
|
|
|
312
312
|
OBJECT
|
|
@@ -316,7 +316,7 @@ def move_to_index(
|
|
|
316
316
|
Bone -- Edit a constraint on the active bone.
|
|
317
317
|
:type owner: str | None
|
|
318
318
|
:param index: Index, The index to move the constraint to
|
|
319
|
-
:type index:
|
|
319
|
+
:type index: int | None
|
|
320
320
|
"""
|
|
321
321
|
|
|
322
322
|
...
|
|
@@ -326,7 +326,7 @@ def move_up(
|
|
|
326
326
|
execution_context: int | str | None = None,
|
|
327
327
|
undo: bool | None = None,
|
|
328
328
|
*,
|
|
329
|
-
constraint: str
|
|
329
|
+
constraint: str = "",
|
|
330
330
|
owner: str | None = "OBJECT",
|
|
331
331
|
):
|
|
332
332
|
"""Move constraint up in constraint stack
|
|
@@ -335,7 +335,7 @@ def move_up(
|
|
|
335
335
|
:type execution_context: int | str | None
|
|
336
336
|
:type undo: bool | None
|
|
337
337
|
:param constraint: Constraint, Name of the constraint to edit
|
|
338
|
-
:type constraint: str
|
|
338
|
+
:type constraint: str
|
|
339
339
|
:param owner: Owner, The owner of this constraint
|
|
340
340
|
|
|
341
341
|
OBJECT
|
|
@@ -367,7 +367,7 @@ def objectsolver_clear_inverse(
|
|
|
367
367
|
execution_context: int | str | None = None,
|
|
368
368
|
undo: bool | None = None,
|
|
369
369
|
*,
|
|
370
|
-
constraint: str
|
|
370
|
+
constraint: str = "",
|
|
371
371
|
owner: str | None = "OBJECT",
|
|
372
372
|
):
|
|
373
373
|
"""Clear inverse correction for Object Solver constraint
|
|
@@ -376,7 +376,7 @@ def objectsolver_clear_inverse(
|
|
|
376
376
|
:type execution_context: int | str | None
|
|
377
377
|
:type undo: bool | None
|
|
378
378
|
:param constraint: Constraint, Name of the constraint to edit
|
|
379
|
-
:type constraint: str
|
|
379
|
+
:type constraint: str
|
|
380
380
|
:param owner: Owner, The owner of this constraint
|
|
381
381
|
|
|
382
382
|
OBJECT
|
|
@@ -394,7 +394,7 @@ def objectsolver_set_inverse(
|
|
|
394
394
|
execution_context: int | str | None = None,
|
|
395
395
|
undo: bool | None = None,
|
|
396
396
|
*,
|
|
397
|
-
constraint: str
|
|
397
|
+
constraint: str = "",
|
|
398
398
|
owner: str | None = "OBJECT",
|
|
399
399
|
):
|
|
400
400
|
"""Set inverse correction for Object Solver constraint
|
|
@@ -403,7 +403,7 @@ def objectsolver_set_inverse(
|
|
|
403
403
|
:type execution_context: int | str | None
|
|
404
404
|
:type undo: bool | None
|
|
405
405
|
:param constraint: Constraint, Name of the constraint to edit
|
|
406
|
-
:type constraint: str
|
|
406
|
+
:type constraint: str
|
|
407
407
|
:param owner: Owner, The owner of this constraint
|
|
408
408
|
|
|
409
409
|
OBJECT
|
|
@@ -421,7 +421,7 @@ def remove_target(
|
|
|
421
421
|
execution_context: int | str | None = None,
|
|
422
422
|
undo: bool | None = None,
|
|
423
423
|
*,
|
|
424
|
-
index:
|
|
424
|
+
index: int | None = 0,
|
|
425
425
|
):
|
|
426
426
|
"""Remove the target from the constraint
|
|
427
427
|
|
|
@@ -429,7 +429,7 @@ def remove_target(
|
|
|
429
429
|
:type execution_context: int | str | None
|
|
430
430
|
:type undo: bool | None
|
|
431
431
|
:param index: index
|
|
432
|
-
:type index:
|
|
432
|
+
:type index: int | None
|
|
433
433
|
"""
|
|
434
434
|
|
|
435
435
|
...
|
|
@@ -439,7 +439,7 @@ def stretchto_reset(
|
|
|
439
439
|
execution_context: int | str | None = None,
|
|
440
440
|
undo: bool | None = None,
|
|
441
441
|
*,
|
|
442
|
-
constraint: str
|
|
442
|
+
constraint: str = "",
|
|
443
443
|
owner: str | None = "OBJECT",
|
|
444
444
|
):
|
|
445
445
|
"""Reset original length of bone for Stretch To Constraint
|
|
@@ -448,7 +448,7 @@ def stretchto_reset(
|
|
|
448
448
|
:type execution_context: int | str | None
|
|
449
449
|
:type undo: bool | None
|
|
450
450
|
:param constraint: Constraint, Name of the constraint to edit
|
|
451
|
-
:type constraint: str
|
|
451
|
+
:type constraint: str
|
|
452
452
|
:param owner: Owner, The owner of this constraint
|
|
453
453
|
|
|
454
454
|
OBJECT
|