fake-bpy-module 20240507__py3-none-any.whl → 20240509__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 +152 -76
- bpy/ops/anim/__init__.pyi +212 -106
- bpy/ops/armature/__init__.pyi +192 -96
- bpy/ops/asset/__init__.pyi +64 -32
- bpy/ops/boid/__init__.pyi +32 -16
- bpy/ops/brush/__init__.pyi +36 -18
- bpy/ops/buttons/__init__.pyi +24 -12
- bpy/ops/cachefile/__init__.pyi +20 -10
- bpy/ops/camera/__init__.pyi +8 -4
- bpy/ops/clip/__init__.pyi +368 -184
- bpy/ops/cloth/__init__.pyi +4 -2
- bpy/ops/collection/__init__.pyi +36 -18
- bpy/ops/console/__init__.pyi +84 -42
- bpy/ops/constraint/__init__.pyi +72 -36
- bpy/ops/curve/__init__.pyi +204 -102
- bpy/ops/curves/__init__.pyi +108 -54
- bpy/ops/cycles/__init__.pyi +12 -6
- bpy/ops/dpaint/__init__.pyi +20 -10
- bpy/ops/ed/__init__.pyi +48 -24
- bpy/ops/export_anim/__init__.pyi +4 -2
- bpy/ops/export_mesh/__init__.pyi +4 -2
- bpy/ops/export_scene/__init__.pyi +14 -8
- bpy/ops/file/__init__.pyi +160 -80
- bpy/ops/fluid/__init__.pyi +56 -28
- bpy/ops/font/__init__.pyi +92 -46
- bpy/ops/geometry/__init__.pyi +40 -20
- bpy/ops/gizmogroup/__init__.pyi +8 -4
- bpy/ops/gpencil/__init__.pyi +600 -300
- bpy/ops/graph/__init__.pyi +260 -130
- bpy/ops/grease_pencil/__init__.pyi +268 -134
- bpy/ops/image/__init__.pyi +188 -94
- bpy/ops/import_anim/__init__.pyi +4 -2
- bpy/ops/import_curve/__init__.pyi +4 -2
- bpy/ops/import_mesh/__init__.pyi +4 -2
- bpy/ops/import_scene/__init__.pyi +12 -6
- bpy/ops/info/__init__.pyi +28 -14
- bpy/ops/lattice/__init__.pyi +32 -16
- bpy/ops/marker/__init__.pyi +44 -22
- bpy/ops/mask/__init__.pyi +156 -78
- bpy/ops/material/__init__.pyi +12 -6
- bpy/ops/mball/__init__.pyi +32 -16
- bpy/ops/mesh/__init__.pyi +652 -326
- bpy/ops/nla/__init__.pyi +158 -80
- bpy/ops/node/__init__.pyi +404 -202
- bpy/ops/object/__init__.pyi +1002 -490
- bpy/ops/outliner/__init__.pyi +276 -138
- bpy/ops/paint/__init__.pyi +212 -106
- bpy/ops/paintcurve/__init__.pyi +32 -16
- bpy/ops/palette/__init__.pyi +28 -14
- bpy/ops/particle/__init__.pyi +144 -72
- bpy/ops/pose/__init__.pyi +156 -78
- bpy/ops/poselib/__init__.pyi +36 -18
- bpy/ops/preferences/__init__.pyi +152 -76
- bpy/ops/ptcache/__init__.pyi +28 -14
- bpy/ops/render/__init__.pyi +48 -24
- bpy/ops/rigidbody/__init__.pyi +52 -26
- bpy/ops/scene/__init__.pyi +156 -78
- bpy/ops/screen/__init__.pyi +156 -78
- bpy/ops/script/__init__.pyi +12 -6
- bpy/ops/sculpt/__init__.pyi +134 -68
- bpy/ops/sculpt_curves/__init__.pyi +16 -8
- bpy/ops/sequencer/__init__.pyi +340 -170
- bpy/ops/sound/__init__.pyi +28 -14
- bpy/ops/spreadsheet/__init__.pyi +16 -8
- bpy/ops/surface/__init__.pyi +24 -12
- bpy/ops/text/__init__.pyi +172 -86
- bpy/ops/text_editor/__init__.pyi +4 -2
- bpy/ops/texture/__init__.pyi +16 -8
- bpy/ops/transform/__init__.pyi +108 -54
- bpy/ops/ui/__init__.pyi +132 -66
- bpy/ops/uilist/__init__.pyi +12 -6
- bpy/ops/uv/__init__.pyi +196 -98
- bpy/ops/view2d/__init__.pyi +56 -28
- bpy/ops/view3d/__init__.pyi +268 -134
- bpy/ops/wm/__init__.pyi +493 -224
- bpy/ops/workspace/__init__.pyi +28 -14
- bpy/ops/world/__init__.pyi +4 -2
- bpy/types/__init__.pyi +1250 -631
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/RECORD +83 -83
- mathutils/__init__.pyi +20 -0
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/top_level.txt +0 -0
bpy/ops/text_editor/__init__.pyi
CHANGED
|
@@ -4,7 +4,9 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def preset_add(
|
|
7
|
-
override_context: typing.Optional[
|
|
7
|
+
override_context: typing.Optional[
|
|
8
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
9
|
+
] = None,
|
|
8
10
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
9
11
|
undo: typing.Optional[bool] = None,
|
|
10
12
|
name: typing.Union[str, typing.Any] = "",
|
|
@@ -13,7 +15,7 @@ def preset_add(
|
|
|
13
15
|
):
|
|
14
16
|
"""Add or remove a Text Editor Preset
|
|
15
17
|
|
|
16
|
-
:type override_context: typing.Optional[typing.Union[
|
|
18
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
17
19
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
18
20
|
:type undo: typing.Optional[bool]
|
|
19
21
|
:param name: Name, Name of the preset, used to make the path name
|
bpy/ops/texture/__init__.pyi
CHANGED
|
@@ -4,13 +4,15 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def new(
|
|
7
|
-
override_context: typing.Optional[
|
|
7
|
+
override_context: typing.Optional[
|
|
8
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
9
|
+
] = None,
|
|
8
10
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
9
11
|
undo: typing.Optional[bool] = None,
|
|
10
12
|
):
|
|
11
13
|
"""Add a new texture
|
|
12
14
|
|
|
13
|
-
:type override_context: typing.Optional[typing.Union[
|
|
15
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
14
16
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
15
17
|
:type undo: typing.Optional[bool]
|
|
16
18
|
"""
|
|
@@ -18,13 +20,15 @@ def new(
|
|
|
18
20
|
...
|
|
19
21
|
|
|
20
22
|
def slot_copy(
|
|
21
|
-
override_context: typing.Optional[
|
|
23
|
+
override_context: typing.Optional[
|
|
24
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
25
|
+
] = None,
|
|
22
26
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
23
27
|
undo: typing.Optional[bool] = None,
|
|
24
28
|
):
|
|
25
29
|
"""Copy the material texture settings and nodes
|
|
26
30
|
|
|
27
|
-
:type override_context: typing.Optional[typing.Union[
|
|
31
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
28
32
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
29
33
|
:type undo: typing.Optional[bool]
|
|
30
34
|
"""
|
|
@@ -32,14 +36,16 @@ def slot_copy(
|
|
|
32
36
|
...
|
|
33
37
|
|
|
34
38
|
def slot_move(
|
|
35
|
-
override_context: typing.Optional[
|
|
39
|
+
override_context: typing.Optional[
|
|
40
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
41
|
+
] = None,
|
|
36
42
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
37
43
|
undo: typing.Optional[bool] = None,
|
|
38
44
|
type: typing.Optional[typing.Any] = "UP",
|
|
39
45
|
):
|
|
40
46
|
"""Move texture slots up and down
|
|
41
47
|
|
|
42
|
-
:type override_context: typing.Optional[typing.Union[
|
|
48
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
43
49
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
44
50
|
:type undo: typing.Optional[bool]
|
|
45
51
|
:param type: Type
|
|
@@ -49,13 +55,15 @@ def slot_move(
|
|
|
49
55
|
...
|
|
50
56
|
|
|
51
57
|
def slot_paste(
|
|
52
|
-
override_context: typing.Optional[
|
|
58
|
+
override_context: typing.Optional[
|
|
59
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
60
|
+
] = None,
|
|
53
61
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
54
62
|
undo: typing.Optional[bool] = None,
|
|
55
63
|
):
|
|
56
64
|
"""Copy the texture settings and nodes
|
|
57
65
|
|
|
58
|
-
:type override_context: typing.Optional[typing.Union[
|
|
66
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
59
67
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
60
68
|
:type undo: typing.Optional[bool]
|
|
61
69
|
"""
|
bpy/ops/transform/__init__.pyi
CHANGED
|
@@ -4,7 +4,9 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def bbone_resize(
|
|
7
|
-
override_context: typing.Optional[
|
|
7
|
+
override_context: typing.Optional[
|
|
8
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
9
|
+
] = None,
|
|
8
10
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
9
11
|
undo: typing.Optional[bool] = None,
|
|
10
12
|
value: typing.Optional[typing.Any] = (1.0, 1.0, 1.0),
|
|
@@ -26,7 +28,7 @@ def bbone_resize(
|
|
|
26
28
|
):
|
|
27
29
|
"""Scale selected bendy bones display size
|
|
28
30
|
|
|
29
|
-
:type override_context: typing.Optional[typing.Union[
|
|
31
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
30
32
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
31
33
|
:type undo: typing.Optional[bool]
|
|
32
34
|
:param value: Display Size
|
|
@@ -50,7 +52,9 @@ def bbone_resize(
|
|
|
50
52
|
...
|
|
51
53
|
|
|
52
54
|
def bend(
|
|
53
|
-
override_context: typing.Optional[
|
|
55
|
+
override_context: typing.Optional[
|
|
56
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
57
|
+
] = None,
|
|
54
58
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
55
59
|
undo: typing.Optional[bool] = None,
|
|
56
60
|
value: typing.Optional[typing.Any] = 0.0,
|
|
@@ -68,7 +72,7 @@ def bend(
|
|
|
68
72
|
):
|
|
69
73
|
"""Bend selected items between the 3D cursor and the mouse
|
|
70
74
|
|
|
71
|
-
:type override_context: typing.Optional[typing.Union[
|
|
75
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
72
76
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
73
77
|
:type undo: typing.Optional[bool]
|
|
74
78
|
:param value: Angle
|
|
@@ -100,7 +104,9 @@ def bend(
|
|
|
100
104
|
...
|
|
101
105
|
|
|
102
106
|
def create_orientation(
|
|
103
|
-
override_context: typing.Optional[
|
|
107
|
+
override_context: typing.Optional[
|
|
108
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
109
|
+
] = None,
|
|
104
110
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
105
111
|
undo: typing.Optional[bool] = None,
|
|
106
112
|
name: typing.Union[str, typing.Any] = "",
|
|
@@ -110,7 +116,7 @@ def create_orientation(
|
|
|
110
116
|
):
|
|
111
117
|
"""Create transformation orientation from selection
|
|
112
118
|
|
|
113
|
-
:type override_context: typing.Optional[typing.Union[
|
|
119
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
114
120
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
115
121
|
:type undo: typing.Optional[bool]
|
|
116
122
|
:param name: Name, Name of the new custom orientation
|
|
@@ -126,13 +132,15 @@ def create_orientation(
|
|
|
126
132
|
...
|
|
127
133
|
|
|
128
134
|
def delete_orientation(
|
|
129
|
-
override_context: typing.Optional[
|
|
135
|
+
override_context: typing.Optional[
|
|
136
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
137
|
+
] = None,
|
|
130
138
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
131
139
|
undo: typing.Optional[bool] = None,
|
|
132
140
|
):
|
|
133
141
|
"""Delete transformation orientation
|
|
134
142
|
|
|
135
|
-
:type override_context: typing.Optional[typing.Union[
|
|
143
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
136
144
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
137
145
|
:type undo: typing.Optional[bool]
|
|
138
146
|
"""
|
|
@@ -140,7 +148,9 @@ def delete_orientation(
|
|
|
140
148
|
...
|
|
141
149
|
|
|
142
150
|
def edge_bevelweight(
|
|
143
|
-
override_context: typing.Optional[
|
|
151
|
+
override_context: typing.Optional[
|
|
152
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
153
|
+
] = None,
|
|
144
154
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
145
155
|
undo: typing.Optional[bool] = None,
|
|
146
156
|
value: typing.Optional[typing.Any] = 0.0,
|
|
@@ -150,7 +160,7 @@ def edge_bevelweight(
|
|
|
150
160
|
):
|
|
151
161
|
"""Change the bevel weight of edges
|
|
152
162
|
|
|
153
|
-
:type override_context: typing.Optional[typing.Union[
|
|
163
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
154
164
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
155
165
|
:type undo: typing.Optional[bool]
|
|
156
166
|
:param value: Factor
|
|
@@ -166,7 +176,9 @@ def edge_bevelweight(
|
|
|
166
176
|
...
|
|
167
177
|
|
|
168
178
|
def edge_crease(
|
|
169
|
-
override_context: typing.Optional[
|
|
179
|
+
override_context: typing.Optional[
|
|
180
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
181
|
+
] = None,
|
|
170
182
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
171
183
|
undo: typing.Optional[bool] = None,
|
|
172
184
|
value: typing.Optional[typing.Any] = 0.0,
|
|
@@ -176,7 +188,7 @@ def edge_crease(
|
|
|
176
188
|
):
|
|
177
189
|
"""Change the crease of edges
|
|
178
190
|
|
|
179
|
-
:type override_context: typing.Optional[typing.Union[
|
|
191
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
180
192
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
181
193
|
:type undo: typing.Optional[bool]
|
|
182
194
|
:param value: Factor
|
|
@@ -192,7 +204,9 @@ def edge_crease(
|
|
|
192
204
|
...
|
|
193
205
|
|
|
194
206
|
def edge_slide(
|
|
195
|
-
override_context: typing.Optional[
|
|
207
|
+
override_context: typing.Optional[
|
|
208
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
209
|
+
] = None,
|
|
196
210
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
197
211
|
undo: typing.Optional[bool] = None,
|
|
198
212
|
value: typing.Optional[typing.Any] = 0.0,
|
|
@@ -216,7 +230,7 @@ def edge_slide(
|
|
|
216
230
|
):
|
|
217
231
|
"""Slide an edge loop along a mesh
|
|
218
232
|
|
|
219
|
-
:type override_context: typing.Optional[typing.Union[
|
|
233
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
220
234
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
221
235
|
:type undo: typing.Optional[bool]
|
|
222
236
|
:param value: Factor
|
|
@@ -260,13 +274,15 @@ def edge_slide(
|
|
|
260
274
|
...
|
|
261
275
|
|
|
262
276
|
def from_gizmo(
|
|
263
|
-
override_context: typing.Optional[
|
|
277
|
+
override_context: typing.Optional[
|
|
278
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
279
|
+
] = None,
|
|
264
280
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
265
281
|
undo: typing.Optional[bool] = None,
|
|
266
282
|
):
|
|
267
283
|
"""Transform selected items by mode type
|
|
268
284
|
|
|
269
|
-
:type override_context: typing.Optional[typing.Union[
|
|
285
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
270
286
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
271
287
|
:type undo: typing.Optional[bool]
|
|
272
288
|
"""
|
|
@@ -274,7 +290,9 @@ def from_gizmo(
|
|
|
274
290
|
...
|
|
275
291
|
|
|
276
292
|
def mirror(
|
|
277
|
-
override_context: typing.Optional[
|
|
293
|
+
override_context: typing.Optional[
|
|
294
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
295
|
+
] = None,
|
|
278
296
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
279
297
|
undo: typing.Optional[bool] = None,
|
|
280
298
|
orient_type: typing.Optional[typing.Union[str, int, typing.Any]] = "GLOBAL",
|
|
@@ -296,7 +314,7 @@ def mirror(
|
|
|
296
314
|
):
|
|
297
315
|
"""Mirror selected items around one or more axes
|
|
298
316
|
|
|
299
|
-
:type override_context: typing.Optional[typing.Union[
|
|
317
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
300
318
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
301
319
|
:type undo: typing.Optional[bool]
|
|
302
320
|
:param orient_type: Orientation, Transformation orientation
|
|
@@ -320,7 +338,9 @@ def mirror(
|
|
|
320
338
|
...
|
|
321
339
|
|
|
322
340
|
def push_pull(
|
|
323
|
-
override_context: typing.Optional[
|
|
341
|
+
override_context: typing.Optional[
|
|
342
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
343
|
+
] = None,
|
|
324
344
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
325
345
|
undo: typing.Optional[bool] = None,
|
|
326
346
|
value: typing.Optional[typing.Any] = 0.0,
|
|
@@ -337,7 +357,7 @@ def push_pull(
|
|
|
337
357
|
):
|
|
338
358
|
"""Push/Pull selected items
|
|
339
359
|
|
|
340
|
-
:type override_context: typing.Optional[typing.Union[
|
|
360
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
341
361
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
342
362
|
:type undo: typing.Optional[bool]
|
|
343
363
|
:param value: Distance
|
|
@@ -367,7 +387,9 @@ def push_pull(
|
|
|
367
387
|
...
|
|
368
388
|
|
|
369
389
|
def resize(
|
|
370
|
-
override_context: typing.Optional[
|
|
390
|
+
override_context: typing.Optional[
|
|
391
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
392
|
+
] = None,
|
|
371
393
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
372
394
|
undo: typing.Optional[bool] = None,
|
|
373
395
|
value: typing.Optional[typing.Any] = (1.0, 1.0, 1.0),
|
|
@@ -409,7 +431,7 @@ def resize(
|
|
|
409
431
|
):
|
|
410
432
|
"""Scale (resize) selected items
|
|
411
433
|
|
|
412
|
-
:type override_context: typing.Optional[typing.Union[
|
|
434
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
413
435
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
414
436
|
:type undo: typing.Optional[bool]
|
|
415
437
|
:param value: Scale
|
|
@@ -473,7 +495,9 @@ def resize(
|
|
|
473
495
|
...
|
|
474
496
|
|
|
475
497
|
def rotate(
|
|
476
|
-
override_context: typing.Optional[
|
|
498
|
+
override_context: typing.Optional[
|
|
499
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
500
|
+
] = None,
|
|
477
501
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
478
502
|
undo: typing.Optional[bool] = None,
|
|
479
503
|
value: typing.Optional[typing.Any] = 0.0,
|
|
@@ -512,7 +536,7 @@ def rotate(
|
|
|
512
536
|
):
|
|
513
537
|
"""Rotate selected items
|
|
514
538
|
|
|
515
|
-
:type override_context: typing.Optional[typing.Union[
|
|
539
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
516
540
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
517
541
|
:type undo: typing.Optional[bool]
|
|
518
542
|
:param value: Angle
|
|
@@ -570,7 +594,9 @@ def rotate(
|
|
|
570
594
|
...
|
|
571
595
|
|
|
572
596
|
def rotate_normal(
|
|
573
|
-
override_context: typing.Optional[
|
|
597
|
+
override_context: typing.Optional[
|
|
598
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
599
|
+
] = None,
|
|
574
600
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
575
601
|
undo: typing.Optional[bool] = None,
|
|
576
602
|
value: typing.Optional[typing.Any] = 0.0,
|
|
@@ -593,7 +619,7 @@ def rotate_normal(
|
|
|
593
619
|
):
|
|
594
620
|
"""Rotate split normal of selected items
|
|
595
621
|
|
|
596
|
-
:type override_context: typing.Optional[typing.Union[
|
|
622
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
597
623
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
598
624
|
:type undo: typing.Optional[bool]
|
|
599
625
|
:param value: Angle
|
|
@@ -619,14 +645,16 @@ def rotate_normal(
|
|
|
619
645
|
...
|
|
620
646
|
|
|
621
647
|
def select_orientation(
|
|
622
|
-
override_context: typing.Optional[
|
|
648
|
+
override_context: typing.Optional[
|
|
649
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
650
|
+
] = None,
|
|
623
651
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
624
652
|
undo: typing.Optional[bool] = None,
|
|
625
653
|
orientation: typing.Optional[typing.Union[str, int, typing.Any]] = "GLOBAL",
|
|
626
654
|
):
|
|
627
655
|
"""Select transformation orientation
|
|
628
656
|
|
|
629
|
-
:type override_context: typing.Optional[typing.Union[
|
|
657
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
630
658
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
631
659
|
:type undo: typing.Optional[bool]
|
|
632
660
|
:param orientation: Orientation, Transformation orientation
|
|
@@ -636,7 +664,9 @@ def select_orientation(
|
|
|
636
664
|
...
|
|
637
665
|
|
|
638
666
|
def seq_slide(
|
|
639
|
-
override_context: typing.Optional[
|
|
667
|
+
override_context: typing.Optional[
|
|
668
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
669
|
+
] = None,
|
|
640
670
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
641
671
|
undo: typing.Optional[bool] = None,
|
|
642
672
|
value: typing.Optional[typing.Any] = (0.0, 0.0),
|
|
@@ -647,7 +677,7 @@ def seq_slide(
|
|
|
647
677
|
):
|
|
648
678
|
"""Slide a sequence strip in time
|
|
649
679
|
|
|
650
|
-
:type override_context: typing.Optional[typing.Union[
|
|
680
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
651
681
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
652
682
|
:type undo: typing.Optional[bool]
|
|
653
683
|
:param value: Offset
|
|
@@ -665,7 +695,9 @@ def seq_slide(
|
|
|
665
695
|
...
|
|
666
696
|
|
|
667
697
|
def shear(
|
|
668
|
-
override_context: typing.Optional[
|
|
698
|
+
override_context: typing.Optional[
|
|
699
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
700
|
+
] = None,
|
|
669
701
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
670
702
|
undo: typing.Optional[bool] = None,
|
|
671
703
|
value: typing.Optional[typing.Any] = 0.0,
|
|
@@ -691,7 +723,7 @@ def shear(
|
|
|
691
723
|
):
|
|
692
724
|
"""Shear selected items along the given axis
|
|
693
725
|
|
|
694
|
-
:type override_context: typing.Optional[typing.Union[
|
|
726
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
695
727
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
696
728
|
:type undo: typing.Optional[bool]
|
|
697
729
|
:param value: Offset
|
|
@@ -731,7 +763,9 @@ def shear(
|
|
|
731
763
|
...
|
|
732
764
|
|
|
733
765
|
def shrink_fatten(
|
|
734
|
-
override_context: typing.Optional[
|
|
766
|
+
override_context: typing.Optional[
|
|
767
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
768
|
+
] = None,
|
|
735
769
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
736
770
|
undo: typing.Optional[bool] = None,
|
|
737
771
|
value: typing.Optional[typing.Any] = 0.0,
|
|
@@ -748,7 +782,7 @@ def shrink_fatten(
|
|
|
748
782
|
):
|
|
749
783
|
"""Shrink/fatten selected vertices along normals
|
|
750
784
|
|
|
751
|
-
:type override_context: typing.Optional[typing.Union[
|
|
785
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
752
786
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
753
787
|
:type undo: typing.Optional[bool]
|
|
754
788
|
:param value: Offset
|
|
@@ -778,7 +812,9 @@ def shrink_fatten(
|
|
|
778
812
|
...
|
|
779
813
|
|
|
780
814
|
def skin_resize(
|
|
781
|
-
override_context: typing.Optional[
|
|
815
|
+
override_context: typing.Optional[
|
|
816
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
817
|
+
] = None,
|
|
782
818
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
783
819
|
undo: typing.Optional[bool] = None,
|
|
784
820
|
value: typing.Optional[typing.Any] = (1.0, 1.0, 1.0),
|
|
@@ -814,7 +850,7 @@ def skin_resize(
|
|
|
814
850
|
):
|
|
815
851
|
"""Scale selected vertices' skin radii
|
|
816
852
|
|
|
817
|
-
:type override_context: typing.Optional[typing.Union[
|
|
853
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
818
854
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
819
855
|
:type undo: typing.Optional[bool]
|
|
820
856
|
:param value: Scale
|
|
@@ -866,7 +902,9 @@ def skin_resize(
|
|
|
866
902
|
...
|
|
867
903
|
|
|
868
904
|
def tilt(
|
|
869
|
-
override_context: typing.Optional[
|
|
905
|
+
override_context: typing.Optional[
|
|
906
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
907
|
+
] = None,
|
|
870
908
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
871
909
|
undo: typing.Optional[bool] = None,
|
|
872
910
|
value: typing.Optional[typing.Any] = 0.0,
|
|
@@ -882,7 +920,7 @@ def tilt(
|
|
|
882
920
|
):
|
|
883
921
|
"""Tilt selected control vertices of 3D curve
|
|
884
922
|
|
|
885
|
-
:type override_context: typing.Optional[typing.Union[
|
|
923
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
886
924
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
887
925
|
:type undo: typing.Optional[bool]
|
|
888
926
|
:param value: Angle
|
|
@@ -910,7 +948,9 @@ def tilt(
|
|
|
910
948
|
...
|
|
911
949
|
|
|
912
950
|
def tosphere(
|
|
913
|
-
override_context: typing.Optional[
|
|
951
|
+
override_context: typing.Optional[
|
|
952
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
953
|
+
] = None,
|
|
914
954
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
915
955
|
undo: typing.Optional[bool] = None,
|
|
916
956
|
value: typing.Optional[typing.Any] = 0.0,
|
|
@@ -928,7 +968,7 @@ def tosphere(
|
|
|
928
968
|
):
|
|
929
969
|
"""Move selected items outward in a spherical shape around geometric center
|
|
930
970
|
|
|
931
|
-
:type override_context: typing.Optional[typing.Union[
|
|
971
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
932
972
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
933
973
|
:type undo: typing.Optional[bool]
|
|
934
974
|
:param value: Factor
|
|
@@ -960,7 +1000,9 @@ def tosphere(
|
|
|
960
1000
|
...
|
|
961
1001
|
|
|
962
1002
|
def trackball(
|
|
963
|
-
override_context: typing.Optional[
|
|
1003
|
+
override_context: typing.Optional[
|
|
1004
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1005
|
+
] = None,
|
|
964
1006
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
965
1007
|
undo: typing.Optional[bool] = None,
|
|
966
1008
|
value: typing.Optional[typing.Any] = (0.0, 0.0),
|
|
@@ -978,7 +1020,7 @@ def trackball(
|
|
|
978
1020
|
):
|
|
979
1021
|
"""Trackball style rotation of selected items
|
|
980
1022
|
|
|
981
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1023
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
982
1024
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
983
1025
|
:type undo: typing.Optional[bool]
|
|
984
1026
|
:param value: Angle
|
|
@@ -1010,7 +1052,9 @@ def trackball(
|
|
|
1010
1052
|
...
|
|
1011
1053
|
|
|
1012
1054
|
def transform(
|
|
1013
|
-
override_context: typing.Optional[
|
|
1055
|
+
override_context: typing.Optional[
|
|
1056
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1057
|
+
] = None,
|
|
1014
1058
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1015
1059
|
undo: typing.Optional[bool] = None,
|
|
1016
1060
|
mode: typing.Optional[typing.Union[str, int]] = "TRANSLATION",
|
|
@@ -1056,7 +1100,7 @@ def transform(
|
|
|
1056
1100
|
):
|
|
1057
1101
|
"""Transform selected items by mode type
|
|
1058
1102
|
|
|
1059
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1103
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1060
1104
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1061
1105
|
:type undo: typing.Optional[bool]
|
|
1062
1106
|
:param mode: Mode
|
|
@@ -1128,7 +1172,9 @@ def transform(
|
|
|
1128
1172
|
...
|
|
1129
1173
|
|
|
1130
1174
|
def translate(
|
|
1131
|
-
override_context: typing.Optional[
|
|
1175
|
+
override_context: typing.Optional[
|
|
1176
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1177
|
+
] = None,
|
|
1132
1178
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1133
1179
|
undo: typing.Optional[bool] = None,
|
|
1134
1180
|
value: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
|
|
@@ -1173,7 +1219,7 @@ def translate(
|
|
|
1173
1219
|
):
|
|
1174
1220
|
"""Move selected items
|
|
1175
1221
|
|
|
1176
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1222
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1177
1223
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1178
1224
|
:type undo: typing.Optional[bool]
|
|
1179
1225
|
:param value: Move
|
|
@@ -1243,7 +1289,9 @@ def translate(
|
|
|
1243
1289
|
...
|
|
1244
1290
|
|
|
1245
1291
|
def vert_crease(
|
|
1246
|
-
override_context: typing.Optional[
|
|
1292
|
+
override_context: typing.Optional[
|
|
1293
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1294
|
+
] = None,
|
|
1247
1295
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1248
1296
|
undo: typing.Optional[bool] = None,
|
|
1249
1297
|
value: typing.Optional[typing.Any] = 0.0,
|
|
@@ -1253,7 +1301,7 @@ def vert_crease(
|
|
|
1253
1301
|
):
|
|
1254
1302
|
"""Change the crease of vertices
|
|
1255
1303
|
|
|
1256
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1304
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1257
1305
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1258
1306
|
:type undo: typing.Optional[bool]
|
|
1259
1307
|
:param value: Factor
|
|
@@ -1269,7 +1317,9 @@ def vert_crease(
|
|
|
1269
1317
|
...
|
|
1270
1318
|
|
|
1271
1319
|
def vert_slide(
|
|
1272
|
-
override_context: typing.Optional[
|
|
1320
|
+
override_context: typing.Optional[
|
|
1321
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1322
|
+
] = None,
|
|
1273
1323
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1274
1324
|
undo: typing.Optional[bool] = None,
|
|
1275
1325
|
value: typing.Optional[typing.Any] = 0.0,
|
|
@@ -1292,7 +1342,7 @@ def vert_slide(
|
|
|
1292
1342
|
):
|
|
1293
1343
|
"""Slide a vertex along a mesh
|
|
1294
1344
|
|
|
1295
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1345
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1296
1346
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1297
1347
|
:type undo: typing.Optional[bool]
|
|
1298
1348
|
:param value: Factor
|
|
@@ -1334,7 +1384,9 @@ def vert_slide(
|
|
|
1334
1384
|
...
|
|
1335
1385
|
|
|
1336
1386
|
def vertex_random(
|
|
1337
|
-
override_context: typing.Optional[
|
|
1387
|
+
override_context: typing.Optional[
|
|
1388
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1389
|
+
] = None,
|
|
1338
1390
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1339
1391
|
undo: typing.Optional[bool] = None,
|
|
1340
1392
|
offset: typing.Optional[typing.Any] = 0.0,
|
|
@@ -1345,7 +1397,7 @@ def vertex_random(
|
|
|
1345
1397
|
):
|
|
1346
1398
|
"""Randomize vertices
|
|
1347
1399
|
|
|
1348
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1400
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1349
1401
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1350
1402
|
:type undo: typing.Optional[bool]
|
|
1351
1403
|
:param offset: Amount, Distance to offset
|
|
@@ -1363,7 +1415,9 @@ def vertex_random(
|
|
|
1363
1415
|
...
|
|
1364
1416
|
|
|
1365
1417
|
def vertex_warp(
|
|
1366
|
-
override_context: typing.Optional[
|
|
1418
|
+
override_context: typing.Optional[
|
|
1419
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1420
|
+
] = None,
|
|
1367
1421
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1368
1422
|
undo: typing.Optional[bool] = None,
|
|
1369
1423
|
warp_angle: typing.Optional[typing.Any] = 6.28319,
|
|
@@ -1380,7 +1434,7 @@ def vertex_warp(
|
|
|
1380
1434
|
):
|
|
1381
1435
|
"""Warp vertices around the cursor
|
|
1382
1436
|
|
|
1383
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1437
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1384
1438
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1385
1439
|
:type undo: typing.Optional[bool]
|
|
1386
1440
|
:param warp_angle: Warp Angle, Amount to warp about the cursor
|