fake-bpy-module 20240411__py3-none-any.whl → 20240418__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_internal/__init__.pyi +4 -0
- _bpy_internal/freedesktop/__init__.pyi +88 -0
- _bpy_internal/freedesktop/py.typed +0 -0
- _bpy_internal/py.typed +0 -0
- aud/__init__.pyi +121 -48
- bgl/__init__.pyi +2443 -1265
- bl_math/__init__.pyi +19 -3
- bl_operators/presets/__init__.pyi +7 -0
- bl_ui/node_add_menu/__init__.pyi +1 -1
- bl_ui/properties_data_lightprobe/__init__.pyi +1134 -0
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +3 -0
- bl_ui/properties_physics_fluid/__init__.pyi +3 -0
- bl_ui/space_toolsystem_toolbar/__init__.pyi +17 -0
- bl_ui/space_userpref/__init__.pyi +13 -4
- bl_ui/space_view3d/__init__.pyi +190 -0
- blf/__init__.pyi +63 -13
- bmesh/__init__.pyi +13 -0
- bmesh/geometry/__init__.pyi +5 -0
- bmesh/ops/__init__.pyi +157 -68
- bmesh/types/__init__.pyi +109 -62
- bmesh/utils/__init__.pyi +11 -2
- bpy/__init__.pyi +7 -0
- bpy/app/__init__.pyi +13 -0
- bpy/app/handlers/__init__.pyi +41 -0
- bpy/app/icons/__init__.pyi +4 -2
- bpy/app/timers/__init__.pyi +38 -2
- bpy/app/translations/__init__.pyi +59 -1
- bpy/msgbus/__init__.pyi +46 -0
- bpy/ops/__init__.pyi +151 -0
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +104 -104
- 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 +18 -18
- 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 +132 -50
- 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_mesh/__init__.pyi +2 -2
- bpy/ops/export_scene/__init__.pyi +11 -8
- 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 +300 -300
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +139 -110
- bpy/ops/image/__init__.pyi +92 -92
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_mesh/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +6 -6
- 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 +327 -327
- bpy/ops/nla/__init__.pyi +80 -80
- bpy/ops/node/__init__.pyi +203 -203
- bpy/ops/object/__init__.pyi +496 -508
- bpy/ops/outliner/__init__.pyi +139 -139
- bpy/ops/paint/__init__.pyi +104 -104
- 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 +78 -78
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +77 -77
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +24 -24
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +78 -78
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +68 -62
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +170 -170
- 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 +225 -225
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +2 -2
- bpy/path/__init__.pyi +6 -0
- bpy/props/__init__.pyi +141 -29
- bpy/types/__init__.pyi +101773 -5222
- bpy/utils/__init__.pyi +18 -3
- bpy/utils/previews/__init__.pyi +15 -0
- bpy/utils/units/__init__.pyi +11 -3
- bpy_extras/__init__.pyi +19 -0
- bpy_extras/asset_utils/__init__.pyi +5 -0
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240418.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240418.dist-info}/RECORD +145 -141
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240418.dist-info}/top_level.txt +1 -0
- freestyle/__init__.pyi +18 -0
- freestyle/chainingiterators/__init__.pyi +20 -5
- freestyle/functions/__init__.pyi +151 -155
- freestyle/predicates/__init__.pyi +53 -46
- freestyle/shaders/__init__.pyi +91 -32
- freestyle/types/__init__.pyi +362 -120
- freestyle/utils/ContextFunctions/__init__.pyi +32 -7
- freestyle/utils/__init__.pyi +13 -1
- gpu/__init__.pyi +225 -0
- gpu/capabilities/__init__.pyi +37 -15
- gpu/matrix/__init__.pyi +7 -1
- gpu/platform/__init__.pyi +5 -0
- gpu/select/__init__.pyi +5 -0
- gpu/shader/__init__.pyi +77 -0
- gpu/state/__init__.pyi +15 -4
- gpu/texture/__init__.pyi +5 -0
- gpu/types/__init__.pyi +91 -33
- gpu_extras/__init__.pyi +15 -0
- gpu_extras/presets/__init__.pyi +16 -4
- imbuf/__init__.pyi +13 -0
- imbuf/types/__init__.pyi +20 -5
- mathutils/__init__.pyi +349 -227
- mathutils/bvhtree/__init__.pyi +21 -8
- mathutils/geometry/__init__.pyi +23 -9
- mathutils/interpolate/__init__.pyi +5 -0
- mathutils/kdtree/__init__.pyi +19 -5
- mathutils/noise/__init__.pyi +87 -41
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240418.dist-info}/WHEEL +0 -0
bpy/ops/text_editor/__init__.pyi
CHANGED
|
@@ -5,7 +5,7 @@ GenericType = typing.TypeVar("GenericType")
|
|
|
5
5
|
|
|
6
6
|
def preset_add(
|
|
7
7
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
8
|
-
execution_context: str = None,
|
|
8
|
+
execution_context: typing.Union[str, int] = None,
|
|
9
9
|
undo: bool = None,
|
|
10
10
|
name: typing.Union[str, typing.Any] = "",
|
|
11
11
|
remove_name: typing.Union[bool, typing.Any] = False,
|
|
@@ -14,7 +14,7 @@ def preset_add(
|
|
|
14
14
|
"""Add or remove a Text Editor Preset
|
|
15
15
|
|
|
16
16
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
17
|
-
:type execution_context: str
|
|
17
|
+
:type execution_context: typing.Union[str, int]
|
|
18
18
|
:type undo: bool
|
|
19
19
|
:param name: Name, Name of the preset, used to make the path name
|
|
20
20
|
:type name: typing.Union[str, typing.Any]
|
bpy/ops/texture/__init__.pyi
CHANGED
|
@@ -5,13 +5,13 @@ GenericType = typing.TypeVar("GenericType")
|
|
|
5
5
|
|
|
6
6
|
def new(
|
|
7
7
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
8
|
-
execution_context: str = None,
|
|
8
|
+
execution_context: typing.Union[str, int] = None,
|
|
9
9
|
undo: bool = None,
|
|
10
10
|
):
|
|
11
11
|
"""Add a new texture
|
|
12
12
|
|
|
13
13
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
14
|
-
:type execution_context: str
|
|
14
|
+
:type execution_context: typing.Union[str, int]
|
|
15
15
|
:type undo: bool
|
|
16
16
|
"""
|
|
17
17
|
|
|
@@ -19,13 +19,13 @@ def new(
|
|
|
19
19
|
|
|
20
20
|
def slot_copy(
|
|
21
21
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
22
|
-
execution_context: str = None,
|
|
22
|
+
execution_context: typing.Union[str, int] = None,
|
|
23
23
|
undo: bool = None,
|
|
24
24
|
):
|
|
25
25
|
"""Copy the material texture settings and nodes
|
|
26
26
|
|
|
27
27
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
28
|
-
:type execution_context: str
|
|
28
|
+
:type execution_context: typing.Union[str, int]
|
|
29
29
|
:type undo: bool
|
|
30
30
|
"""
|
|
31
31
|
|
|
@@ -33,14 +33,14 @@ def slot_copy(
|
|
|
33
33
|
|
|
34
34
|
def slot_move(
|
|
35
35
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
36
|
-
execution_context: str = None,
|
|
36
|
+
execution_context: typing.Union[str, int] = None,
|
|
37
37
|
undo: bool = None,
|
|
38
38
|
type: typing.Any = "UP",
|
|
39
39
|
):
|
|
40
40
|
"""Move texture slots up and down
|
|
41
41
|
|
|
42
42
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
43
|
-
:type execution_context: str
|
|
43
|
+
:type execution_context: typing.Union[str, int]
|
|
44
44
|
:type undo: bool
|
|
45
45
|
:param type: Type
|
|
46
46
|
:type type: typing.Any
|
|
@@ -50,13 +50,13 @@ def slot_move(
|
|
|
50
50
|
|
|
51
51
|
def slot_paste(
|
|
52
52
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
53
|
-
execution_context: str = None,
|
|
53
|
+
execution_context: typing.Union[str, int] = None,
|
|
54
54
|
undo: bool = None,
|
|
55
55
|
):
|
|
56
56
|
"""Copy the texture settings and nodes
|
|
57
57
|
|
|
58
58
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
59
|
-
:type execution_context: str
|
|
59
|
+
:type execution_context: typing.Union[str, int]
|
|
60
60
|
:type undo: bool
|
|
61
61
|
"""
|
|
62
62
|
|
bpy/ops/transform/__init__.pyi
CHANGED
|
@@ -5,7 +5,7 @@ GenericType = typing.TypeVar("GenericType")
|
|
|
5
5
|
|
|
6
6
|
def bbone_resize(
|
|
7
7
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
8
|
-
execution_context: str = None,
|
|
8
|
+
execution_context: typing.Union[str, int] = None,
|
|
9
9
|
undo: bool = None,
|
|
10
10
|
value: typing.Any = (1.0, 1.0, 1.0),
|
|
11
11
|
orient_type: typing.Union[str, int, typing.Any] = "GLOBAL",
|
|
@@ -23,7 +23,7 @@ def bbone_resize(
|
|
|
23
23
|
"""Scale selected bendy bones display size
|
|
24
24
|
|
|
25
25
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
26
|
-
:type execution_context: str
|
|
26
|
+
:type execution_context: typing.Union[str, int]
|
|
27
27
|
:type undo: bool
|
|
28
28
|
:param value: Display Size
|
|
29
29
|
:type value: typing.Any
|
|
@@ -47,7 +47,7 @@ def bbone_resize(
|
|
|
47
47
|
|
|
48
48
|
def bend(
|
|
49
49
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
50
|
-
execution_context: str = None,
|
|
50
|
+
execution_context: typing.Union[str, int] = None,
|
|
51
51
|
undo: bool = None,
|
|
52
52
|
value: typing.Any = 0.0,
|
|
53
53
|
mirror: typing.Union[bool, typing.Any] = False,
|
|
@@ -65,7 +65,7 @@ def bend(
|
|
|
65
65
|
"""Bend selected items between the 3D cursor and the mouse
|
|
66
66
|
|
|
67
67
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
68
|
-
:type execution_context: str
|
|
68
|
+
:type execution_context: typing.Union[str, int]
|
|
69
69
|
:type undo: bool
|
|
70
70
|
:param value: Angle
|
|
71
71
|
:type value: typing.Any
|
|
@@ -97,7 +97,7 @@ def bend(
|
|
|
97
97
|
|
|
98
98
|
def create_orientation(
|
|
99
99
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
100
|
-
execution_context: str = None,
|
|
100
|
+
execution_context: typing.Union[str, int] = None,
|
|
101
101
|
undo: bool = None,
|
|
102
102
|
name: typing.Union[str, typing.Any] = "",
|
|
103
103
|
use_view: typing.Union[bool, typing.Any] = False,
|
|
@@ -107,7 +107,7 @@ def create_orientation(
|
|
|
107
107
|
"""Create transformation orientation from selection
|
|
108
108
|
|
|
109
109
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
110
|
-
:type execution_context: str
|
|
110
|
+
:type execution_context: typing.Union[str, int]
|
|
111
111
|
:type undo: bool
|
|
112
112
|
:param name: Name, Name of the new custom orientation
|
|
113
113
|
:type name: typing.Union[str, typing.Any]
|
|
@@ -123,13 +123,13 @@ def create_orientation(
|
|
|
123
123
|
|
|
124
124
|
def delete_orientation(
|
|
125
125
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
126
|
-
execution_context: str = None,
|
|
126
|
+
execution_context: typing.Union[str, int] = None,
|
|
127
127
|
undo: bool = None,
|
|
128
128
|
):
|
|
129
129
|
"""Delete transformation orientation
|
|
130
130
|
|
|
131
131
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
132
|
-
:type execution_context: str
|
|
132
|
+
:type execution_context: typing.Union[str, int]
|
|
133
133
|
:type undo: bool
|
|
134
134
|
"""
|
|
135
135
|
|
|
@@ -137,7 +137,7 @@ def delete_orientation(
|
|
|
137
137
|
|
|
138
138
|
def edge_bevelweight(
|
|
139
139
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
140
|
-
execution_context: str = None,
|
|
140
|
+
execution_context: typing.Union[str, int] = None,
|
|
141
141
|
undo: bool = None,
|
|
142
142
|
value: typing.Any = 0.0,
|
|
143
143
|
snap: typing.Union[bool, typing.Any] = False,
|
|
@@ -147,7 +147,7 @@ def edge_bevelweight(
|
|
|
147
147
|
"""Change the bevel weight of edges
|
|
148
148
|
|
|
149
149
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
150
|
-
:type execution_context: str
|
|
150
|
+
:type execution_context: typing.Union[str, int]
|
|
151
151
|
:type undo: bool
|
|
152
152
|
:param value: Factor
|
|
153
153
|
:type value: typing.Any
|
|
@@ -163,7 +163,7 @@ def edge_bevelweight(
|
|
|
163
163
|
|
|
164
164
|
def edge_crease(
|
|
165
165
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
166
|
-
execution_context: str = None,
|
|
166
|
+
execution_context: typing.Union[str, int] = None,
|
|
167
167
|
undo: bool = None,
|
|
168
168
|
value: typing.Any = 0.0,
|
|
169
169
|
snap: typing.Union[bool, typing.Any] = False,
|
|
@@ -173,7 +173,7 @@ def edge_crease(
|
|
|
173
173
|
"""Change the crease of edges
|
|
174
174
|
|
|
175
175
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
176
|
-
:type execution_context: str
|
|
176
|
+
:type execution_context: typing.Union[str, int]
|
|
177
177
|
:type undo: bool
|
|
178
178
|
:param value: Factor
|
|
179
179
|
:type value: typing.Any
|
|
@@ -189,7 +189,7 @@ def edge_crease(
|
|
|
189
189
|
|
|
190
190
|
def edge_slide(
|
|
191
191
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
192
|
-
execution_context: str = None,
|
|
192
|
+
execution_context: typing.Union[str, int] = None,
|
|
193
193
|
undo: bool = None,
|
|
194
194
|
value: typing.Any = 0.0,
|
|
195
195
|
single_side: typing.Union[bool, typing.Any] = False,
|
|
@@ -213,7 +213,7 @@ def edge_slide(
|
|
|
213
213
|
"""Slide an edge loop along a mesh
|
|
214
214
|
|
|
215
215
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
216
|
-
:type execution_context: str
|
|
216
|
+
:type execution_context: typing.Union[str, int]
|
|
217
217
|
:type undo: bool
|
|
218
218
|
:param value: Factor
|
|
219
219
|
:type value: typing.Any
|
|
@@ -257,13 +257,13 @@ def edge_slide(
|
|
|
257
257
|
|
|
258
258
|
def from_gizmo(
|
|
259
259
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
260
|
-
execution_context: str = None,
|
|
260
|
+
execution_context: typing.Union[str, int] = None,
|
|
261
261
|
undo: bool = None,
|
|
262
262
|
):
|
|
263
263
|
"""Transform selected items by mode type
|
|
264
264
|
|
|
265
265
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
266
|
-
:type execution_context: str
|
|
266
|
+
:type execution_context: typing.Union[str, int]
|
|
267
267
|
:type undo: bool
|
|
268
268
|
"""
|
|
269
269
|
|
|
@@ -271,7 +271,7 @@ def from_gizmo(
|
|
|
271
271
|
|
|
272
272
|
def mirror(
|
|
273
273
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
274
|
-
execution_context: str = None,
|
|
274
|
+
execution_context: typing.Union[str, int] = None,
|
|
275
275
|
undo: bool = None,
|
|
276
276
|
orient_type: typing.Union[str, int, typing.Any] = "GLOBAL",
|
|
277
277
|
orient_matrix: typing.Any = ((0.0, 0.0, 0.0), (0.0, 0.0, 0.0), (0.0, 0.0, 0.0)),
|
|
@@ -289,7 +289,7 @@ def mirror(
|
|
|
289
289
|
"""Mirror selected items around one or more axes
|
|
290
290
|
|
|
291
291
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
292
|
-
:type execution_context: str
|
|
292
|
+
:type execution_context: typing.Union[str, int]
|
|
293
293
|
:type undo: bool
|
|
294
294
|
:param orient_type: Orientation, Transformation orientation
|
|
295
295
|
:type orient_type: typing.Union[str, int, typing.Any]
|
|
@@ -313,7 +313,7 @@ def mirror(
|
|
|
313
313
|
|
|
314
314
|
def push_pull(
|
|
315
315
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
316
|
-
execution_context: str = None,
|
|
316
|
+
execution_context: typing.Union[str, int] = None,
|
|
317
317
|
undo: bool = None,
|
|
318
318
|
value: typing.Any = 0.0,
|
|
319
319
|
mirror: typing.Union[bool, typing.Any] = False,
|
|
@@ -330,7 +330,7 @@ def push_pull(
|
|
|
330
330
|
"""Push/Pull selected items
|
|
331
331
|
|
|
332
332
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
333
|
-
:type execution_context: str
|
|
333
|
+
:type execution_context: typing.Union[str, int]
|
|
334
334
|
:type undo: bool
|
|
335
335
|
:param value: Distance
|
|
336
336
|
:type value: typing.Any
|
|
@@ -360,7 +360,7 @@ def push_pull(
|
|
|
360
360
|
|
|
361
361
|
def resize(
|
|
362
362
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
363
|
-
execution_context: str = None,
|
|
363
|
+
execution_context: typing.Union[str, int] = None,
|
|
364
364
|
undo: bool = None,
|
|
365
365
|
value: typing.Any = (1.0, 1.0, 1.0),
|
|
366
366
|
mouse_dir_constraint: typing.Any = (0.0, 0.0, 0.0),
|
|
@@ -398,7 +398,7 @@ def resize(
|
|
|
398
398
|
"""Scale (resize) selected items
|
|
399
399
|
|
|
400
400
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
401
|
-
:type execution_context: str
|
|
401
|
+
:type execution_context: typing.Union[str, int]
|
|
402
402
|
:type undo: bool
|
|
403
403
|
:param value: Scale
|
|
404
404
|
:type value: typing.Any
|
|
@@ -462,7 +462,7 @@ def resize(
|
|
|
462
462
|
|
|
463
463
|
def rotate(
|
|
464
464
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
465
|
-
execution_context: str = None,
|
|
465
|
+
execution_context: typing.Union[str, int] = None,
|
|
466
466
|
undo: bool = None,
|
|
467
467
|
value: typing.Any = 0.0,
|
|
468
468
|
orient_axis: typing.Union[str, int] = "Z",
|
|
@@ -497,7 +497,7 @@ def rotate(
|
|
|
497
497
|
"""Rotate selected items
|
|
498
498
|
|
|
499
499
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
500
|
-
:type execution_context: str
|
|
500
|
+
:type execution_context: typing.Union[str, int]
|
|
501
501
|
:type undo: bool
|
|
502
502
|
:param value: Angle
|
|
503
503
|
:type value: typing.Any
|
|
@@ -555,7 +555,7 @@ def rotate(
|
|
|
555
555
|
|
|
556
556
|
def rotate_normal(
|
|
557
557
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
558
|
-
execution_context: str = None,
|
|
558
|
+
execution_context: typing.Union[str, int] = None,
|
|
559
559
|
undo: bool = None,
|
|
560
560
|
value: typing.Any = 0.0,
|
|
561
561
|
orient_axis: typing.Union[str, int] = "Z",
|
|
@@ -574,7 +574,7 @@ def rotate_normal(
|
|
|
574
574
|
"""Rotate split normal of selected items
|
|
575
575
|
|
|
576
576
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
577
|
-
:type execution_context: str
|
|
577
|
+
:type execution_context: typing.Union[str, int]
|
|
578
578
|
:type undo: bool
|
|
579
579
|
:param value: Angle
|
|
580
580
|
:type value: typing.Any
|
|
@@ -600,14 +600,14 @@ def rotate_normal(
|
|
|
600
600
|
|
|
601
601
|
def select_orientation(
|
|
602
602
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
603
|
-
execution_context: str = None,
|
|
603
|
+
execution_context: typing.Union[str, int] = None,
|
|
604
604
|
undo: bool = None,
|
|
605
605
|
orientation: typing.Union[str, int, typing.Any] = "GLOBAL",
|
|
606
606
|
):
|
|
607
607
|
"""Select transformation orientation
|
|
608
608
|
|
|
609
609
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
610
|
-
:type execution_context: str
|
|
610
|
+
:type execution_context: typing.Union[str, int]
|
|
611
611
|
:type undo: bool
|
|
612
612
|
:param orientation: Orientation, Transformation orientation
|
|
613
613
|
:type orientation: typing.Union[str, int, typing.Any]
|
|
@@ -617,7 +617,7 @@ def select_orientation(
|
|
|
617
617
|
|
|
618
618
|
def seq_slide(
|
|
619
619
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
620
|
-
execution_context: str = None,
|
|
620
|
+
execution_context: typing.Union[str, int] = None,
|
|
621
621
|
undo: bool = None,
|
|
622
622
|
value: typing.Any = (0.0, 0.0),
|
|
623
623
|
snap: typing.Union[bool, typing.Any] = False,
|
|
@@ -628,7 +628,7 @@ def seq_slide(
|
|
|
628
628
|
"""Slide a sequence strip in time
|
|
629
629
|
|
|
630
630
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
631
|
-
:type execution_context: str
|
|
631
|
+
:type execution_context: typing.Union[str, int]
|
|
632
632
|
:type undo: bool
|
|
633
633
|
:param value: Offset
|
|
634
634
|
:type value: typing.Any
|
|
@@ -646,7 +646,7 @@ def seq_slide(
|
|
|
646
646
|
|
|
647
647
|
def shear(
|
|
648
648
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
649
|
-
execution_context: str = None,
|
|
649
|
+
execution_context: typing.Union[str, int] = None,
|
|
650
650
|
undo: bool = None,
|
|
651
651
|
value: typing.Any = 0.0,
|
|
652
652
|
orient_axis: typing.Union[str, int] = "Z",
|
|
@@ -668,7 +668,7 @@ def shear(
|
|
|
668
668
|
"""Shear selected items along the given axis
|
|
669
669
|
|
|
670
670
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
671
|
-
:type execution_context: str
|
|
671
|
+
:type execution_context: typing.Union[str, int]
|
|
672
672
|
:type undo: bool
|
|
673
673
|
:param value: Offset
|
|
674
674
|
:type value: typing.Any
|
|
@@ -708,7 +708,7 @@ def shear(
|
|
|
708
708
|
|
|
709
709
|
def shrink_fatten(
|
|
710
710
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
711
|
-
execution_context: str = None,
|
|
711
|
+
execution_context: typing.Union[str, int] = None,
|
|
712
712
|
undo: bool = None,
|
|
713
713
|
value: typing.Any = 0.0,
|
|
714
714
|
use_even_offset: typing.Union[bool, typing.Any] = False,
|
|
@@ -725,7 +725,7 @@ def shrink_fatten(
|
|
|
725
725
|
"""Shrink/fatten selected vertices along normals
|
|
726
726
|
|
|
727
727
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
728
|
-
:type execution_context: str
|
|
728
|
+
:type execution_context: typing.Union[str, int]
|
|
729
729
|
:type undo: bool
|
|
730
730
|
:param value: Offset
|
|
731
731
|
:type value: typing.Any
|
|
@@ -755,7 +755,7 @@ def shrink_fatten(
|
|
|
755
755
|
|
|
756
756
|
def skin_resize(
|
|
757
757
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
758
|
-
execution_context: str = None,
|
|
758
|
+
execution_context: typing.Union[str, int] = None,
|
|
759
759
|
undo: bool = None,
|
|
760
760
|
value: typing.Any = (1.0, 1.0, 1.0),
|
|
761
761
|
orient_type: typing.Union[str, int, typing.Any] = "GLOBAL",
|
|
@@ -787,7 +787,7 @@ def skin_resize(
|
|
|
787
787
|
"""Scale selected vertices' skin radii
|
|
788
788
|
|
|
789
789
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
790
|
-
:type execution_context: str
|
|
790
|
+
:type execution_context: typing.Union[str, int]
|
|
791
791
|
:type undo: bool
|
|
792
792
|
:param value: Scale
|
|
793
793
|
:type value: typing.Any
|
|
@@ -839,7 +839,7 @@ def skin_resize(
|
|
|
839
839
|
|
|
840
840
|
def tilt(
|
|
841
841
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
842
|
-
execution_context: str = None,
|
|
842
|
+
execution_context: typing.Union[str, int] = None,
|
|
843
843
|
undo: bool = None,
|
|
844
844
|
value: typing.Any = 0.0,
|
|
845
845
|
mirror: typing.Union[bool, typing.Any] = False,
|
|
@@ -855,7 +855,7 @@ def tilt(
|
|
|
855
855
|
"""Tilt selected control vertices of 3D curve
|
|
856
856
|
|
|
857
857
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
858
|
-
:type execution_context: str
|
|
858
|
+
:type execution_context: typing.Union[str, int]
|
|
859
859
|
:type undo: bool
|
|
860
860
|
:param value: Angle
|
|
861
861
|
:type value: typing.Any
|
|
@@ -883,7 +883,7 @@ def tilt(
|
|
|
883
883
|
|
|
884
884
|
def tosphere(
|
|
885
885
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
886
|
-
execution_context: str = None,
|
|
886
|
+
execution_context: typing.Union[str, int] = None,
|
|
887
887
|
undo: bool = None,
|
|
888
888
|
value: typing.Any = 0.0,
|
|
889
889
|
mirror: typing.Union[bool, typing.Any] = False,
|
|
@@ -901,7 +901,7 @@ def tosphere(
|
|
|
901
901
|
"""Move selected items outward in a spherical shape around geometric center
|
|
902
902
|
|
|
903
903
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
904
|
-
:type execution_context: str
|
|
904
|
+
:type execution_context: typing.Union[str, int]
|
|
905
905
|
:type undo: bool
|
|
906
906
|
:param value: Factor
|
|
907
907
|
:type value: typing.Any
|
|
@@ -933,7 +933,7 @@ def tosphere(
|
|
|
933
933
|
|
|
934
934
|
def trackball(
|
|
935
935
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
936
|
-
execution_context: str = None,
|
|
936
|
+
execution_context: typing.Union[str, int] = None,
|
|
937
937
|
undo: bool = None,
|
|
938
938
|
value: typing.Any = (0.0, 0.0),
|
|
939
939
|
mirror: typing.Union[bool, typing.Any] = False,
|
|
@@ -951,7 +951,7 @@ def trackball(
|
|
|
951
951
|
"""Trackball style rotation of selected items
|
|
952
952
|
|
|
953
953
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
954
|
-
:type execution_context: str
|
|
954
|
+
:type execution_context: typing.Union[str, int]
|
|
955
955
|
:type undo: bool
|
|
956
956
|
:param value: Angle
|
|
957
957
|
:type value: typing.Any
|
|
@@ -983,7 +983,7 @@ def trackball(
|
|
|
983
983
|
|
|
984
984
|
def transform(
|
|
985
985
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
986
|
-
execution_context: str = None,
|
|
986
|
+
execution_context: typing.Union[str, int] = None,
|
|
987
987
|
undo: bool = None,
|
|
988
988
|
mode: typing.Union[str, int] = "TRANSLATION",
|
|
989
989
|
value: typing.Any = (0.0, 0.0, 0.0, 0.0),
|
|
@@ -1025,7 +1025,7 @@ def transform(
|
|
|
1025
1025
|
"""Transform selected items by mode type
|
|
1026
1026
|
|
|
1027
1027
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1028
|
-
:type execution_context: str
|
|
1028
|
+
:type execution_context: typing.Union[str, int]
|
|
1029
1029
|
:type undo: bool
|
|
1030
1030
|
:param mode: Mode
|
|
1031
1031
|
:type mode: typing.Union[str, int]
|
|
@@ -1097,7 +1097,7 @@ def transform(
|
|
|
1097
1097
|
|
|
1098
1098
|
def translate(
|
|
1099
1099
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1100
|
-
execution_context: str = None,
|
|
1100
|
+
execution_context: typing.Union[str, int] = None,
|
|
1101
1101
|
undo: bool = None,
|
|
1102
1102
|
value: typing.Any = (0.0, 0.0, 0.0),
|
|
1103
1103
|
orient_type: typing.Union[str, int] = "GLOBAL",
|
|
@@ -1138,7 +1138,7 @@ def translate(
|
|
|
1138
1138
|
"""Move selected items
|
|
1139
1139
|
|
|
1140
1140
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1141
|
-
:type execution_context: str
|
|
1141
|
+
:type execution_context: typing.Union[str, int]
|
|
1142
1142
|
:type undo: bool
|
|
1143
1143
|
:param value: Move
|
|
1144
1144
|
:type value: typing.Any
|
|
@@ -1208,7 +1208,7 @@ def translate(
|
|
|
1208
1208
|
|
|
1209
1209
|
def vert_crease(
|
|
1210
1210
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1211
|
-
execution_context: str = None,
|
|
1211
|
+
execution_context: typing.Union[str, int] = None,
|
|
1212
1212
|
undo: bool = None,
|
|
1213
1213
|
value: typing.Any = 0.0,
|
|
1214
1214
|
snap: typing.Union[bool, typing.Any] = False,
|
|
@@ -1218,7 +1218,7 @@ def vert_crease(
|
|
|
1218
1218
|
"""Change the crease of vertices
|
|
1219
1219
|
|
|
1220
1220
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1221
|
-
:type execution_context: str
|
|
1221
|
+
:type execution_context: typing.Union[str, int]
|
|
1222
1222
|
:type undo: bool
|
|
1223
1223
|
:param value: Factor
|
|
1224
1224
|
:type value: typing.Any
|
|
@@ -1234,7 +1234,7 @@ def vert_crease(
|
|
|
1234
1234
|
|
|
1235
1235
|
def vert_slide(
|
|
1236
1236
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1237
|
-
execution_context: str = None,
|
|
1237
|
+
execution_context: typing.Union[str, int] = None,
|
|
1238
1238
|
undo: bool = None,
|
|
1239
1239
|
value: typing.Any = 0.0,
|
|
1240
1240
|
use_even: typing.Union[bool, typing.Any] = False,
|
|
@@ -1257,7 +1257,7 @@ def vert_slide(
|
|
|
1257
1257
|
"""Slide a vertex along a mesh
|
|
1258
1258
|
|
|
1259
1259
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1260
|
-
:type execution_context: str
|
|
1260
|
+
:type execution_context: typing.Union[str, int]
|
|
1261
1261
|
:type undo: bool
|
|
1262
1262
|
:param value: Factor
|
|
1263
1263
|
:type value: typing.Any
|
|
@@ -1299,7 +1299,7 @@ def vert_slide(
|
|
|
1299
1299
|
|
|
1300
1300
|
def vertex_random(
|
|
1301
1301
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1302
|
-
execution_context: str = None,
|
|
1302
|
+
execution_context: typing.Union[str, int] = None,
|
|
1303
1303
|
undo: bool = None,
|
|
1304
1304
|
offset: typing.Any = 0.0,
|
|
1305
1305
|
uniform: typing.Any = 0.0,
|
|
@@ -1310,7 +1310,7 @@ def vertex_random(
|
|
|
1310
1310
|
"""Randomize vertices
|
|
1311
1311
|
|
|
1312
1312
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1313
|
-
:type execution_context: str
|
|
1313
|
+
:type execution_context: typing.Union[str, int]
|
|
1314
1314
|
:type undo: bool
|
|
1315
1315
|
:param offset: Amount, Distance to offset
|
|
1316
1316
|
:type offset: typing.Any
|
|
@@ -1328,7 +1328,7 @@ def vertex_random(
|
|
|
1328
1328
|
|
|
1329
1329
|
def vertex_warp(
|
|
1330
1330
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1331
|
-
execution_context: str = None,
|
|
1331
|
+
execution_context: typing.Union[str, int] = None,
|
|
1332
1332
|
undo: bool = None,
|
|
1333
1333
|
warp_angle: typing.Any = 6.28319,
|
|
1334
1334
|
offset_angle: typing.Any = 0.0,
|
|
@@ -1345,7 +1345,7 @@ def vertex_warp(
|
|
|
1345
1345
|
"""Warp vertices around the cursor
|
|
1346
1346
|
|
|
1347
1347
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1348
|
-
:type execution_context: str
|
|
1348
|
+
:type execution_context: typing.Union[str, int]
|
|
1349
1349
|
:type undo: bool
|
|
1350
1350
|
:param warp_angle: Warp Angle, Amount to warp about the cursor
|
|
1351
1351
|
:type warp_angle: typing.Any
|