fake-bpy-module 20240408__py3-none-any.whl → 20240410__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_operators/presets/__init__.pyi +201 -0
- bl_operators/wm/__init__.pyi +8 -0
- bl_ui/__init__.pyi +5 -0
- bl_ui/anim/__init__.pyi +2 -0
- bl_ui/node_add_menu/__init__.pyi +2 -0
- bl_ui/node_add_menu_compositor/__init__.pyi +36 -0
- bl_ui/node_add_menu_geometry/__init__.pyi +96 -0
- bl_ui/node_add_menu_shader/__init__.pyi +20 -0
- bl_ui/node_add_menu_texture/__init__.pyi +18 -0
- bl_ui/properties_collection/__init__.pyi +158 -0
- bl_ui/properties_data_armature/__init__.pyi +4 -0
- bl_ui/properties_data_camera/__init__.pyi +4 -0
- bl_ui/properties_data_curves/__init__.pyi +2 -0
- bl_ui/properties_data_gpencil/__init__.pyi +4 -0
- bl_ui/properties_data_grease_pencil/__init__.pyi +4 -0
- bl_ui/properties_data_mesh/__init__.pyi +8 -0
- bl_ui/properties_data_modifier/__init__.pyi +12 -0
- bl_ui/properties_data_pointcloud/__init__.pyi +2 -0
- bl_ui/properties_freestyle/__init__.pyi +2 -0
- bl_ui/properties_grease_pencil_common/__init__.pyi +20 -0
- bl_ui/properties_mask_common/__init__.pyi +12 -0
- bl_ui/properties_material/__init__.pyi +2 -0
- bl_ui/properties_material_gpencil/__init__.pyi +4 -0
- bl_ui/properties_object/__init__.pyi +2 -0
- bl_ui/properties_output/__init__.pyi +6 -0
- bl_ui/properties_paint_common/__init__.pyi +2 -0
- bl_ui/properties_particle/__init__.pyi +4 -0
- bl_ui/properties_physics_cloth/__init__.pyi +2 -0
- bl_ui/properties_physics_fluid/__init__.pyi +2 -0
- bl_ui/properties_render/__init__.pyi +2 -0
- bl_ui/properties_texture/__init__.pyi +2 -0
- bl_ui/properties_view_layer/__init__.pyi +2 -0
- bl_ui/space_clip/__init__.pyi +60 -0
- bl_ui/space_console/__init__.pyi +10 -0
- bl_ui/space_dopesheet/__init__.pyi +28 -0
- bl_ui/space_filebrowser/__init__.pyi +26 -0
- bl_ui/space_graph/__init__.pyi +32 -0
- bl_ui/space_image/__init__.pyi +46 -0
- bl_ui/space_info/__init__.pyi +10 -0
- bl_ui/space_nla/__init__.pyi +26 -0
- bl_ui/space_node/__init__.pyi +24 -0
- bl_ui/space_outliner/__init__.pyi +24 -0
- bl_ui/space_sequencer/__init__.pyi +72 -0
- bl_ui/space_text/__init__.pyi +24 -0
- bl_ui/space_time/__init__.pyi +8 -0
- bl_ui/space_toolsystem_common/__init__.pyi +2 -0
- bl_ui/space_topbar/__init__.pyi +38 -0
- bl_ui/space_userpref/__init__.pyi +12 -0
- bl_ui/space_view3d/__init__.pyi +382 -0
- bl_ui/space_view3d_toolbar/__init__.pyi +10 -0
- bl_ui/temp_anim_layers/__init__.pyi +165 -0
- bl_ui/temp_anim_layers/py.typed +0 -0
- bl_ui/utils/__init__.pyi +2 -0
- bpy/ops/collection/__init__.pyi +65 -0
- bpy/ops/export_scene/__init__.pyi +3 -3
- bpy/ops/graph/__init__.pyi +0 -3
- bpy/ops/nla/__init__.pyi +3 -3
- bpy/ops/sculpt/__init__.pyi +2 -2
- bpy/ops/wm/__init__.pyi +20 -0
- bpy/types/__init__.pyi +775 -125
- bpy_types/__init__.pyi +2 -0
- {fake_bpy_module-20240408.dist-info → fake_bpy_module-20240410.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240408.dist-info → fake_bpy_module-20240410.dist-info}/RECORD +65 -63
- {fake_bpy_module-20240408.dist-info → fake_bpy_module-20240410.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240408.dist-info → fake_bpy_module-20240410.dist-info}/top_level.txt +0 -0
|
@@ -388,6 +388,7 @@ class VIEW3D_MT_brush_context_menu(bpy_types._GenericUI):
|
|
|
388
388
|
filter_path,
|
|
389
389
|
display_name,
|
|
390
390
|
add_operator,
|
|
391
|
+
add_operator_props,
|
|
391
392
|
):
|
|
392
393
|
"""
|
|
393
394
|
|
|
@@ -399,6 +400,7 @@ class VIEW3D_MT_brush_context_menu(bpy_types._GenericUI):
|
|
|
399
400
|
:param filter_path:
|
|
400
401
|
:param display_name:
|
|
401
402
|
:param add_operator:
|
|
403
|
+
:param add_operator_props:
|
|
402
404
|
"""
|
|
403
405
|
...
|
|
404
406
|
|
|
@@ -567,6 +569,7 @@ class VIEW3D_MT_brush_gpencil_context_menu(bpy_types._GenericUI):
|
|
|
567
569
|
filter_path,
|
|
568
570
|
display_name,
|
|
569
571
|
add_operator,
|
|
572
|
+
add_operator_props,
|
|
570
573
|
):
|
|
571
574
|
"""
|
|
572
575
|
|
|
@@ -578,6 +581,7 @@ class VIEW3D_MT_brush_gpencil_context_menu(bpy_types._GenericUI):
|
|
|
578
581
|
:param filter_path:
|
|
579
582
|
:param display_name:
|
|
580
583
|
:param add_operator:
|
|
584
|
+
:param add_operator_props:
|
|
581
585
|
"""
|
|
582
586
|
...
|
|
583
587
|
|
|
@@ -746,6 +750,7 @@ class VIEW3D_MT_tools_projectpaint_stencil(bpy_types._GenericUI):
|
|
|
746
750
|
filter_path,
|
|
747
751
|
display_name,
|
|
748
752
|
add_operator,
|
|
753
|
+
add_operator_props,
|
|
749
754
|
):
|
|
750
755
|
"""
|
|
751
756
|
|
|
@@ -757,6 +762,7 @@ class VIEW3D_MT_tools_projectpaint_stencil(bpy_types._GenericUI):
|
|
|
757
762
|
:param filter_path:
|
|
758
763
|
:param display_name:
|
|
759
764
|
:param add_operator:
|
|
765
|
+
:param add_operator_props:
|
|
760
766
|
"""
|
|
761
767
|
...
|
|
762
768
|
|
|
@@ -925,6 +931,7 @@ class VIEW3D_MT_tools_projectpaint_uvlayer(bpy_types._GenericUI):
|
|
|
925
931
|
filter_path,
|
|
926
932
|
display_name,
|
|
927
933
|
add_operator,
|
|
934
|
+
add_operator_props,
|
|
928
935
|
):
|
|
929
936
|
"""
|
|
930
937
|
|
|
@@ -936,6 +943,7 @@ class VIEW3D_MT_tools_projectpaint_uvlayer(bpy_types._GenericUI):
|
|
|
936
943
|
:param filter_path:
|
|
937
944
|
:param display_name:
|
|
938
945
|
:param add_operator:
|
|
946
|
+
:param add_operator_props:
|
|
939
947
|
"""
|
|
940
948
|
...
|
|
941
949
|
|
|
@@ -1493,6 +1501,7 @@ class VIEW3D_PT_gpencil_brush_presets(bl_ui.utils.PresetPanel):
|
|
|
1493
1501
|
filter_path,
|
|
1494
1502
|
display_name,
|
|
1495
1503
|
add_operator,
|
|
1504
|
+
add_operator_props,
|
|
1496
1505
|
):
|
|
1497
1506
|
"""
|
|
1498
1507
|
|
|
@@ -1504,6 +1513,7 @@ class VIEW3D_PT_gpencil_brush_presets(bl_ui.utils.PresetPanel):
|
|
|
1504
1513
|
:param filter_path:
|
|
1505
1514
|
:param display_name:
|
|
1506
1515
|
:param add_operator:
|
|
1516
|
+
:param add_operator_props:
|
|
1507
1517
|
"""
|
|
1508
1518
|
...
|
|
1509
1519
|
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
import bpy_types
|
|
3
|
+
|
|
4
|
+
GenericType = typing.TypeVar("GenericType")
|
|
5
|
+
|
|
6
|
+
class VIEW3D_PT_animation_layers(bpy_types._GenericUI):
|
|
7
|
+
""" """
|
|
8
|
+
|
|
9
|
+
bl_category: typing.Any
|
|
10
|
+
""" """
|
|
11
|
+
|
|
12
|
+
bl_label: typing.Any
|
|
13
|
+
""" """
|
|
14
|
+
|
|
15
|
+
bl_region_type: typing.Any
|
|
16
|
+
""" """
|
|
17
|
+
|
|
18
|
+
bl_rna: typing.Any
|
|
19
|
+
""" """
|
|
20
|
+
|
|
21
|
+
bl_space_type: typing.Any
|
|
22
|
+
""" """
|
|
23
|
+
|
|
24
|
+
id_data: typing.Any
|
|
25
|
+
""" """
|
|
26
|
+
|
|
27
|
+
def append(self, draw_func):
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
:param draw_func:
|
|
31
|
+
"""
|
|
32
|
+
...
|
|
33
|
+
|
|
34
|
+
def as_pointer(self):
|
|
35
|
+
""" """
|
|
36
|
+
...
|
|
37
|
+
|
|
38
|
+
def bl_rna_get_subclass(self):
|
|
39
|
+
""" """
|
|
40
|
+
...
|
|
41
|
+
|
|
42
|
+
def bl_rna_get_subclass_py(self):
|
|
43
|
+
""" """
|
|
44
|
+
...
|
|
45
|
+
|
|
46
|
+
def draw(self, context):
|
|
47
|
+
"""
|
|
48
|
+
|
|
49
|
+
:param context:
|
|
50
|
+
"""
|
|
51
|
+
...
|
|
52
|
+
|
|
53
|
+
def driver_add(self):
|
|
54
|
+
""" """
|
|
55
|
+
...
|
|
56
|
+
|
|
57
|
+
def driver_remove(self):
|
|
58
|
+
""" """
|
|
59
|
+
...
|
|
60
|
+
|
|
61
|
+
def get(self):
|
|
62
|
+
""" """
|
|
63
|
+
...
|
|
64
|
+
|
|
65
|
+
def id_properties_clear(self):
|
|
66
|
+
""" """
|
|
67
|
+
...
|
|
68
|
+
|
|
69
|
+
def id_properties_ensure(self):
|
|
70
|
+
""" """
|
|
71
|
+
...
|
|
72
|
+
|
|
73
|
+
def id_properties_ui(self):
|
|
74
|
+
""" """
|
|
75
|
+
...
|
|
76
|
+
|
|
77
|
+
def is_extended(self):
|
|
78
|
+
""" """
|
|
79
|
+
...
|
|
80
|
+
|
|
81
|
+
def is_property_hidden(self):
|
|
82
|
+
""" """
|
|
83
|
+
...
|
|
84
|
+
|
|
85
|
+
def is_property_overridable_library(self):
|
|
86
|
+
""" """
|
|
87
|
+
...
|
|
88
|
+
|
|
89
|
+
def is_property_readonly(self):
|
|
90
|
+
""" """
|
|
91
|
+
...
|
|
92
|
+
|
|
93
|
+
def is_property_set(self):
|
|
94
|
+
""" """
|
|
95
|
+
...
|
|
96
|
+
|
|
97
|
+
def items(self):
|
|
98
|
+
""" """
|
|
99
|
+
...
|
|
100
|
+
|
|
101
|
+
def keyframe_delete(self):
|
|
102
|
+
""" """
|
|
103
|
+
...
|
|
104
|
+
|
|
105
|
+
def keyframe_insert(self):
|
|
106
|
+
""" """
|
|
107
|
+
...
|
|
108
|
+
|
|
109
|
+
def keys(self):
|
|
110
|
+
""" """
|
|
111
|
+
...
|
|
112
|
+
|
|
113
|
+
def path_from_id(self):
|
|
114
|
+
""" """
|
|
115
|
+
...
|
|
116
|
+
|
|
117
|
+
def path_resolve(self):
|
|
118
|
+
""" """
|
|
119
|
+
...
|
|
120
|
+
|
|
121
|
+
def poll(self, context):
|
|
122
|
+
"""
|
|
123
|
+
|
|
124
|
+
:param context:
|
|
125
|
+
"""
|
|
126
|
+
...
|
|
127
|
+
|
|
128
|
+
def pop(self):
|
|
129
|
+
""" """
|
|
130
|
+
...
|
|
131
|
+
|
|
132
|
+
def prepend(self, draw_func):
|
|
133
|
+
"""
|
|
134
|
+
|
|
135
|
+
:param draw_func:
|
|
136
|
+
"""
|
|
137
|
+
...
|
|
138
|
+
|
|
139
|
+
def property_overridable_library_set(self):
|
|
140
|
+
""" """
|
|
141
|
+
...
|
|
142
|
+
|
|
143
|
+
def property_unset(self):
|
|
144
|
+
""" """
|
|
145
|
+
...
|
|
146
|
+
|
|
147
|
+
def remove(self, draw_func):
|
|
148
|
+
"""
|
|
149
|
+
|
|
150
|
+
:param draw_func:
|
|
151
|
+
"""
|
|
152
|
+
...
|
|
153
|
+
|
|
154
|
+
def type_recast(self):
|
|
155
|
+
""" """
|
|
156
|
+
...
|
|
157
|
+
|
|
158
|
+
def values(self):
|
|
159
|
+
""" """
|
|
160
|
+
...
|
|
161
|
+
|
|
162
|
+
def register_props():
|
|
163
|
+
""" """
|
|
164
|
+
|
|
165
|
+
...
|
|
File without changes
|
bl_ui/utils/__init__.pyi
CHANGED
|
@@ -46,6 +46,7 @@ class PresetPanel:
|
|
|
46
46
|
filter_path,
|
|
47
47
|
display_name,
|
|
48
48
|
add_operator,
|
|
49
|
+
add_operator_props,
|
|
49
50
|
):
|
|
50
51
|
"""
|
|
51
52
|
|
|
@@ -57,5 +58,6 @@ class PresetPanel:
|
|
|
57
58
|
:param filter_path:
|
|
58
59
|
:param display_name:
|
|
59
60
|
:param add_operator:
|
|
61
|
+
:param add_operator_props:
|
|
60
62
|
"""
|
|
61
63
|
...
|
bpy/ops/collection/__init__.pyi
CHANGED
|
@@ -20,6 +20,71 @@ def create(
|
|
|
20
20
|
|
|
21
21
|
...
|
|
22
22
|
|
|
23
|
+
def export_all(
|
|
24
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
25
|
+
execution_context: str = None,
|
|
26
|
+
undo: bool = None,
|
|
27
|
+
):
|
|
28
|
+
"""Invoke all configured exporters on this collection
|
|
29
|
+
|
|
30
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
31
|
+
:type execution_context: str
|
|
32
|
+
:type undo: bool
|
|
33
|
+
"""
|
|
34
|
+
|
|
35
|
+
...
|
|
36
|
+
|
|
37
|
+
def exporter_add(
|
|
38
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
39
|
+
execution_context: str = None,
|
|
40
|
+
undo: bool = None,
|
|
41
|
+
name: typing.Union[str, typing.Any] = "",
|
|
42
|
+
):
|
|
43
|
+
"""Add Exporter
|
|
44
|
+
|
|
45
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
46
|
+
:type execution_context: str
|
|
47
|
+
:type undo: bool
|
|
48
|
+
:param name: Name, FileHandler idname
|
|
49
|
+
:type name: typing.Union[str, typing.Any]
|
|
50
|
+
"""
|
|
51
|
+
|
|
52
|
+
...
|
|
53
|
+
|
|
54
|
+
def exporter_export(
|
|
55
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
56
|
+
execution_context: str = None,
|
|
57
|
+
undo: bool = None,
|
|
58
|
+
index: typing.Any = 0,
|
|
59
|
+
):
|
|
60
|
+
"""Invoke the export operation
|
|
61
|
+
|
|
62
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
63
|
+
:type execution_context: str
|
|
64
|
+
:type undo: bool
|
|
65
|
+
:param index: Index, Exporter index
|
|
66
|
+
:type index: typing.Any
|
|
67
|
+
"""
|
|
68
|
+
|
|
69
|
+
...
|
|
70
|
+
|
|
71
|
+
def exporter_remove(
|
|
72
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
73
|
+
execution_context: str = None,
|
|
74
|
+
undo: bool = None,
|
|
75
|
+
index: typing.Any = 0,
|
|
76
|
+
):
|
|
77
|
+
"""Remove Exporter
|
|
78
|
+
|
|
79
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
80
|
+
:type execution_context: str
|
|
81
|
+
:type undo: bool
|
|
82
|
+
:param index: Index, Exporter index
|
|
83
|
+
:type index: typing.Any
|
|
84
|
+
"""
|
|
85
|
+
|
|
86
|
+
...
|
|
87
|
+
|
|
23
88
|
def objects_add_active(
|
|
24
89
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
25
90
|
execution_context: str = None,
|
|
@@ -20,11 +20,11 @@ def fbx(
|
|
|
20
20
|
bake_space_transform: typing.Union[bool, typing.Any] = False,
|
|
21
21
|
object_types: typing.Any = {
|
|
22
22
|
'"CAMERA"',
|
|
23
|
-
'"MESH"',
|
|
24
|
-
'"OTHER"',
|
|
25
|
-
'"ARMATURE"',
|
|
26
23
|
'"EMPTY"',
|
|
24
|
+
'"OTHER"',
|
|
25
|
+
'"MESH"',
|
|
27
26
|
'"LIGHT"',
|
|
27
|
+
'"ARMATURE"',
|
|
28
28
|
},
|
|
29
29
|
use_mesh_modifiers: typing.Union[bool, typing.Any] = True,
|
|
30
30
|
use_mesh_modifiers_render: typing.Union[bool, typing.Any] = True,
|
bpy/ops/graph/__init__.pyi
CHANGED
|
@@ -706,15 +706,12 @@ def keys_to_samples(
|
|
|
706
706
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
707
707
|
execution_context: str = None,
|
|
708
708
|
undo: bool = None,
|
|
709
|
-
confirm: typing.Union[bool, typing.Any] = True,
|
|
710
709
|
):
|
|
711
710
|
"""Convert selected channels to an uneditable set of samples to save storage space
|
|
712
711
|
|
|
713
712
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
714
713
|
:type execution_context: str
|
|
715
714
|
:type undo: bool
|
|
716
|
-
:param confirm: Confirm, Prompt for confirmation
|
|
717
|
-
:type confirm: typing.Union[bool, typing.Any]
|
|
718
715
|
"""
|
|
719
716
|
|
|
720
717
|
...
|
bpy/ops/nla/__init__.pyi
CHANGED
|
@@ -100,10 +100,10 @@ def bake(
|
|
|
100
100
|
clean_curves: typing.Union[bool, typing.Any] = False,
|
|
101
101
|
bake_types: typing.Any = {'"POSE"'},
|
|
102
102
|
channel_types: typing.Any = {
|
|
103
|
-
'"LOCATION"',
|
|
104
|
-
'"PROPS"',
|
|
105
|
-
'"SCALE"',
|
|
106
103
|
'"ROTATION"',
|
|
104
|
+
'"SCALE"',
|
|
105
|
+
'"PROPS"',
|
|
106
|
+
'"LOCATION"',
|
|
107
107
|
'"BBONE"',
|
|
108
108
|
},
|
|
109
109
|
):
|
bpy/ops/sculpt/__init__.pyi
CHANGED
|
@@ -47,7 +47,7 @@ def cloth_filter(
|
|
|
47
47
|
bpy.types.OperatorStrokeElement
|
|
48
48
|
] = None,
|
|
49
49
|
type: typing.Any = "GRAVITY",
|
|
50
|
-
force_axis: typing.Any = {'"
|
|
50
|
+
force_axis: typing.Any = {'"X"', '"Y"', '"Z"'},
|
|
51
51
|
orientation: typing.Any = "LOCAL",
|
|
52
52
|
cloth_mass: typing.Any = 1.0,
|
|
53
53
|
cloth_damping: typing.Any = 0.0,
|
|
@@ -599,7 +599,7 @@ def mesh_filter(
|
|
|
599
599
|
bpy.types.OperatorStrokeElement
|
|
600
600
|
] = None,
|
|
601
601
|
type: typing.Any = "INFLATE",
|
|
602
|
-
deform_axis: typing.Any = {'"
|
|
602
|
+
deform_axis: typing.Any = {'"X"', '"Y"', '"Z"'},
|
|
603
603
|
orientation: typing.Any = "LOCAL",
|
|
604
604
|
surface_smooth_shape_preservation: typing.Any = 0.5,
|
|
605
605
|
surface_smooth_current_vertex: typing.Any = 0.5,
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -918,6 +918,20 @@ def collada_import(
|
|
|
918
918
|
|
|
919
919
|
...
|
|
920
920
|
|
|
921
|
+
def collection_export_all(
|
|
922
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
923
|
+
execution_context: str = None,
|
|
924
|
+
undo: bool = None,
|
|
925
|
+
):
|
|
926
|
+
"""Invoke all configured exporters for all collections
|
|
927
|
+
|
|
928
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
929
|
+
:type execution_context: str
|
|
930
|
+
:type undo: bool
|
|
931
|
+
"""
|
|
932
|
+
|
|
933
|
+
...
|
|
934
|
+
|
|
921
935
|
def context_collection_boolean_set(
|
|
922
936
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
923
937
|
execution_context: str = None,
|
|
@@ -2275,6 +2289,7 @@ def obj_export(
|
|
|
2275
2289
|
export_smooth_groups: typing.Union[bool, typing.Any] = False,
|
|
2276
2290
|
smooth_group_bitflags: typing.Union[bool, typing.Any] = False,
|
|
2277
2291
|
filter_glob: typing.Union[str, typing.Any] = "*.obj;*.mtl",
|
|
2292
|
+
collection: typing.Union[str, typing.Any] = "",
|
|
2278
2293
|
):
|
|
2279
2294
|
"""Save the scene to a Wavefront OBJ file
|
|
2280
2295
|
|
|
@@ -2443,6 +2458,8 @@ def obj_export(
|
|
|
2443
2458
|
:type smooth_group_bitflags: typing.Union[bool, typing.Any]
|
|
2444
2459
|
:param filter_glob: Extension Filter
|
|
2445
2460
|
:type filter_glob: typing.Union[str, typing.Any]
|
|
2461
|
+
:param collection: Collection
|
|
2462
|
+
:type collection: typing.Union[str, typing.Any]
|
|
2446
2463
|
"""
|
|
2447
2464
|
|
|
2448
2465
|
...
|
|
@@ -4822,6 +4839,7 @@ def usd_export(
|
|
|
4822
4839
|
filter_glob: typing.Union[str, typing.Any] = "*.usd",
|
|
4823
4840
|
selected_objects_only: typing.Union[bool, typing.Any] = False,
|
|
4824
4841
|
visible_objects_only: typing.Union[bool, typing.Any] = True,
|
|
4842
|
+
collection: typing.Union[str, typing.Any] = "",
|
|
4825
4843
|
export_animation: typing.Union[bool, typing.Any] = False,
|
|
4826
4844
|
export_hair: typing.Union[bool, typing.Any] = False,
|
|
4827
4845
|
export_uvmaps: typing.Union[bool, typing.Any] = True,
|
|
@@ -4906,6 +4924,8 @@ def usd_export(
|
|
|
4906
4924
|
:type selected_objects_only: typing.Union[bool, typing.Any]
|
|
4907
4925
|
:param visible_objects_only: Visible Only, Only export visible objects. Invisible parents of exported objects are exported as empty transforms
|
|
4908
4926
|
:type visible_objects_only: typing.Union[bool, typing.Any]
|
|
4927
|
+
:param collection: Collection
|
|
4928
|
+
:type collection: typing.Union[str, typing.Any]
|
|
4909
4929
|
:param export_animation: Animation, Export all frames in the render frame range, rather than only the current frame
|
|
4910
4930
|
:type export_animation: typing.Union[bool, typing.Any]
|
|
4911
4931
|
:param export_hair: Hair, Export hair particle systems as USD curves
|