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/ed/__init__.pyi
CHANGED
|
@@ -5,13 +5,13 @@ GenericType = typing.TypeVar("GenericType")
|
|
|
5
5
|
|
|
6
6
|
def flush_edits(
|
|
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
|
"""Flush edit data from active editing modes
|
|
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 flush_edits(
|
|
|
19
19
|
|
|
20
20
|
def lib_id_fake_user_toggle(
|
|
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
|
"""Save this data-block even if it has no users
|
|
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,13 +33,13 @@ def lib_id_fake_user_toggle(
|
|
|
33
33
|
|
|
34
34
|
def lib_id_generate_preview(
|
|
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
|
):
|
|
39
39
|
"""Create an automatic preview for the selected data-block
|
|
40
40
|
|
|
41
41
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
42
|
-
:type execution_context: str
|
|
42
|
+
:type execution_context: typing.Union[str, int]
|
|
43
43
|
:type undo: bool
|
|
44
44
|
"""
|
|
45
45
|
|
|
@@ -47,13 +47,13 @@ def lib_id_generate_preview(
|
|
|
47
47
|
|
|
48
48
|
def lib_id_generate_preview_from_object(
|
|
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
|
):
|
|
53
53
|
"""Create a preview for this asset by rendering the active object
|
|
54
54
|
|
|
55
55
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
56
|
-
:type execution_context: str
|
|
56
|
+
:type execution_context: typing.Union[str, int]
|
|
57
57
|
:type undo: bool
|
|
58
58
|
"""
|
|
59
59
|
|
|
@@ -61,7 +61,7 @@ def lib_id_generate_preview_from_object(
|
|
|
61
61
|
|
|
62
62
|
def lib_id_load_custom_preview(
|
|
63
63
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
64
|
-
execution_context: str = None,
|
|
64
|
+
execution_context: typing.Union[str, int] = None,
|
|
65
65
|
undo: bool = None,
|
|
66
66
|
filepath: typing.Union[str, typing.Any] = "",
|
|
67
67
|
hide_props_region: typing.Union[bool, typing.Any] = True,
|
|
@@ -92,7 +92,7 @@ def lib_id_load_custom_preview(
|
|
|
92
92
|
"""Choose an image to help identify the data-block visually
|
|
93
93
|
|
|
94
94
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
95
|
-
:type execution_context: str
|
|
95
|
+
:type execution_context: typing.Union[str, int]
|
|
96
96
|
:type undo: bool
|
|
97
97
|
:param filepath: File Path, Path to file
|
|
98
98
|
:type filepath: typing.Union[str, typing.Any]
|
|
@@ -162,13 +162,13 @@ def lib_id_load_custom_preview(
|
|
|
162
162
|
|
|
163
163
|
def lib_id_override_editable_toggle(
|
|
164
164
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
165
|
-
execution_context: str = None,
|
|
165
|
+
execution_context: typing.Union[str, int] = None,
|
|
166
166
|
undo: bool = None,
|
|
167
167
|
):
|
|
168
168
|
"""Set if this library override data-block can be edited
|
|
169
169
|
|
|
170
170
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
171
|
-
:type execution_context: str
|
|
171
|
+
:type execution_context: typing.Union[str, int]
|
|
172
172
|
:type undo: bool
|
|
173
173
|
"""
|
|
174
174
|
|
|
@@ -176,13 +176,13 @@ def lib_id_override_editable_toggle(
|
|
|
176
176
|
|
|
177
177
|
def lib_id_unlink(
|
|
178
178
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
179
|
-
execution_context: str = None,
|
|
179
|
+
execution_context: typing.Union[str, int] = None,
|
|
180
180
|
undo: bool = None,
|
|
181
181
|
):
|
|
182
182
|
"""Remove a usage of a data-block, clearing the assignment
|
|
183
183
|
|
|
184
184
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
185
|
-
:type execution_context: str
|
|
185
|
+
:type execution_context: typing.Union[str, int]
|
|
186
186
|
:type undo: bool
|
|
187
187
|
"""
|
|
188
188
|
|
|
@@ -190,13 +190,13 @@ def lib_id_unlink(
|
|
|
190
190
|
|
|
191
191
|
def redo(
|
|
192
192
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
193
|
-
execution_context: str = None,
|
|
193
|
+
execution_context: typing.Union[str, int] = None,
|
|
194
194
|
undo: bool = None,
|
|
195
195
|
):
|
|
196
196
|
"""Redo previous action
|
|
197
197
|
|
|
198
198
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
199
|
-
:type execution_context: str
|
|
199
|
+
:type execution_context: typing.Union[str, int]
|
|
200
200
|
:type undo: bool
|
|
201
201
|
"""
|
|
202
202
|
|
|
@@ -204,13 +204,13 @@ def redo(
|
|
|
204
204
|
|
|
205
205
|
def undo(
|
|
206
206
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
207
|
-
execution_context: str = None,
|
|
207
|
+
execution_context: typing.Union[str, int] = None,
|
|
208
208
|
undo: bool = None,
|
|
209
209
|
):
|
|
210
210
|
"""Undo previous action
|
|
211
211
|
|
|
212
212
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
213
|
-
:type execution_context: str
|
|
213
|
+
:type execution_context: typing.Union[str, int]
|
|
214
214
|
:type undo: bool
|
|
215
215
|
"""
|
|
216
216
|
|
|
@@ -218,14 +218,14 @@ def undo(
|
|
|
218
218
|
|
|
219
219
|
def undo_history(
|
|
220
220
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
221
|
-
execution_context: str = None,
|
|
221
|
+
execution_context: typing.Union[str, int] = None,
|
|
222
222
|
undo: bool = None,
|
|
223
223
|
item: typing.Any = 0,
|
|
224
224
|
):
|
|
225
225
|
"""Redo specific action in history
|
|
226
226
|
|
|
227
227
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
228
|
-
:type execution_context: str
|
|
228
|
+
:type execution_context: typing.Union[str, int]
|
|
229
229
|
:type undo: bool
|
|
230
230
|
:param item: Item
|
|
231
231
|
:type item: typing.Any
|
|
@@ -235,14 +235,14 @@ def undo_history(
|
|
|
235
235
|
|
|
236
236
|
def undo_push(
|
|
237
237
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
238
|
-
execution_context: str = None,
|
|
238
|
+
execution_context: typing.Union[str, int] = None,
|
|
239
239
|
undo: bool = None,
|
|
240
240
|
message: typing.Union[str, typing.Any] = "Add an undo step *function may be moved*",
|
|
241
241
|
):
|
|
242
242
|
"""Add an undo state (internal use only)
|
|
243
243
|
|
|
244
244
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
245
|
-
:type execution_context: str
|
|
245
|
+
:type execution_context: typing.Union[str, int]
|
|
246
246
|
:type undo: bool
|
|
247
247
|
:param message: Undo Message
|
|
248
248
|
:type message: typing.Union[str, typing.Any]
|
|
@@ -252,13 +252,13 @@ def undo_push(
|
|
|
252
252
|
|
|
253
253
|
def undo_redo(
|
|
254
254
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
255
|
-
execution_context: str = None,
|
|
255
|
+
execution_context: typing.Union[str, int] = None,
|
|
256
256
|
undo: bool = None,
|
|
257
257
|
):
|
|
258
258
|
"""Undo and redo previous action
|
|
259
259
|
|
|
260
260
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
261
|
-
:type execution_context: str
|
|
261
|
+
:type execution_context: typing.Union[str, int]
|
|
262
262
|
:type undo: bool
|
|
263
263
|
"""
|
|
264
264
|
|
bpy/ops/export_anim/__init__.pyi
CHANGED
|
@@ -5,7 +5,7 @@ GenericType = typing.TypeVar("GenericType")
|
|
|
5
5
|
|
|
6
6
|
def bvh(
|
|
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
|
filepath: typing.Union[str, typing.Any] = "",
|
|
11
11
|
check_existing: typing.Union[bool, typing.Any] = True,
|
|
@@ -19,7 +19,7 @@ def bvh(
|
|
|
19
19
|
"""Save a BVH motion capture file from an armature
|
|
20
20
|
|
|
21
21
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
22
|
-
:type execution_context: str
|
|
22
|
+
:type execution_context: typing.Union[str, int]
|
|
23
23
|
:type undo: bool
|
|
24
24
|
:param filepath: File Path, Filepath used for exporting the file
|
|
25
25
|
:type filepath: typing.Union[str, typing.Any]
|
bpy/ops/export_mesh/__init__.pyi
CHANGED
|
@@ -5,7 +5,7 @@ GenericType = typing.TypeVar("GenericType")
|
|
|
5
5
|
|
|
6
6
|
def stl(
|
|
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
|
filepath: typing.Union[str, typing.Any] = "",
|
|
11
11
|
check_existing: typing.Union[bool, typing.Any] = True,
|
|
@@ -28,7 +28,7 @@ def stl(
|
|
|
28
28
|
"""Save STL triangle mesh data
|
|
29
29
|
|
|
30
30
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
31
|
-
:type execution_context: str
|
|
31
|
+
:type execution_context: typing.Union[str, int]
|
|
32
32
|
:type undo: bool
|
|
33
33
|
:param filepath: File Path, Filepath used for exporting the file
|
|
34
34
|
:type filepath: typing.Union[str, typing.Any]
|
|
@@ -5,7 +5,7 @@ GenericType = typing.TypeVar("GenericType")
|
|
|
5
5
|
|
|
6
6
|
def fbx(
|
|
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
|
filepath: typing.Union[str, typing.Any] = "",
|
|
11
11
|
check_existing: typing.Union[bool, typing.Any] = True,
|
|
@@ -13,17 +13,18 @@ def fbx(
|
|
|
13
13
|
use_selection: typing.Union[bool, typing.Any] = False,
|
|
14
14
|
use_visible: typing.Union[bool, typing.Any] = False,
|
|
15
15
|
use_active_collection: typing.Union[bool, typing.Any] = False,
|
|
16
|
+
collection: typing.Union[str, typing.Any] = "",
|
|
16
17
|
global_scale: typing.Any = 1.0,
|
|
17
18
|
apply_unit_scale: typing.Union[bool, typing.Any] = True,
|
|
18
19
|
apply_scale_options: typing.Any = "FBX_SCALE_NONE",
|
|
19
20
|
use_space_transform: typing.Union[bool, typing.Any] = True,
|
|
20
21
|
bake_space_transform: typing.Union[bool, typing.Any] = False,
|
|
21
22
|
object_types: typing.Any = {
|
|
22
|
-
'"EMPTY"',
|
|
23
23
|
'"ARMATURE"',
|
|
24
|
-
'"CAMERA"',
|
|
25
24
|
'"OTHER"',
|
|
26
25
|
'"LIGHT"',
|
|
26
|
+
'"EMPTY"',
|
|
27
|
+
'"CAMERA"',
|
|
27
28
|
'"MESH"',
|
|
28
29
|
},
|
|
29
30
|
use_mesh_modifiers: typing.Union[bool, typing.Any] = True,
|
|
@@ -59,7 +60,7 @@ def fbx(
|
|
|
59
60
|
"""Write a FBX file
|
|
60
61
|
|
|
61
62
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
62
|
-
:type execution_context: str
|
|
63
|
+
:type execution_context: typing.Union[str, int]
|
|
63
64
|
:type undo: bool
|
|
64
65
|
:param filepath: File Path, Filepath used for exporting the file
|
|
65
66
|
:type filepath: typing.Union[str, typing.Any]
|
|
@@ -73,6 +74,8 @@ def fbx(
|
|
|
73
74
|
:type use_visible: typing.Union[bool, typing.Any]
|
|
74
75
|
:param use_active_collection: Active Collection, Export only objects from the active collection (and its children)
|
|
75
76
|
:type use_active_collection: typing.Union[bool, typing.Any]
|
|
77
|
+
:param collection: Source Collection, Export only objects from this collection (and its children)
|
|
78
|
+
:type collection: typing.Union[str, typing.Any]
|
|
76
79
|
:param global_scale: Scale, Scale all data (Some importers do not support scaled armatures!)
|
|
77
80
|
:type global_scale: typing.Any
|
|
78
81
|
:param apply_unit_scale: Apply Unit, Take into account current Blender units settings (if unset, raw Blender Units values are used as-is)
|
|
@@ -239,7 +242,7 @@ def fbx(
|
|
|
239
242
|
|
|
240
243
|
def gltf(
|
|
241
244
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
242
|
-
execution_context: str = None,
|
|
245
|
+
execution_context: typing.Union[str, int] = None,
|
|
243
246
|
undo: bool = None,
|
|
244
247
|
filepath: typing.Union[str, typing.Any] = "",
|
|
245
248
|
check_existing: typing.Union[bool, typing.Any] = True,
|
|
@@ -344,7 +347,7 @@ def gltf(
|
|
|
344
347
|
"""Export scene as glTF 2.0 file
|
|
345
348
|
|
|
346
349
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
347
|
-
:type execution_context: str
|
|
350
|
+
:type execution_context: typing.Union[str, int]
|
|
348
351
|
:type undo: bool
|
|
349
352
|
:param filepath: File Path, Filepath used for exporting the file
|
|
350
353
|
:type filepath: typing.Union[str, typing.Any]
|
|
@@ -618,7 +621,7 @@ def gltf(
|
|
|
618
621
|
|
|
619
622
|
def x3d(
|
|
620
623
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
621
|
-
execution_context: str = None,
|
|
624
|
+
execution_context: typing.Union[str, int] = None,
|
|
622
625
|
undo: bool = None,
|
|
623
626
|
filepath: typing.Union[str, typing.Any] = "",
|
|
624
627
|
check_existing: typing.Union[bool, typing.Any] = True,
|
|
@@ -639,7 +642,7 @@ def x3d(
|
|
|
639
642
|
"""Export selection to Extensible 3D file (.x3d)
|
|
640
643
|
|
|
641
644
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
642
|
-
:type execution_context: str
|
|
645
|
+
:type execution_context: typing.Union[str, int]
|
|
643
646
|
:type undo: bool
|
|
644
647
|
:param filepath: File Path, Filepath used for exporting the file
|
|
645
648
|
:type filepath: typing.Union[str, typing.Any]
|