fake-bpy-module 20251002__py3-none-any.whl → 20251003__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/anim/__init__.pyi +7 -0
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/node_add_menu_compositor/__init__.pyi +58 -2
- bl_ui/node_add_menu_geometry/__init__.pyi +28 -28
- bl_ui/node_add_menu_shader/__init__.pyi +11 -9
- bl_ui/properties_paint_common/__init__.pyi +0 -3
- bl_ui/space_node/__init__.pyi +2 -35
- bl_ui/space_time/__init__.pyi +0 -76
- bpy/app/__init__.pyi +3 -3
- bpy/ops/render/__init__.pyi +6 -6
- bpy/stub_internal/rna_enums/__init__.pyi +1 -4
- bpy/types/__init__.pyi +5220 -2225
- bpy_extras/anim_utils/__init__.pyi +12 -8
- {fake_bpy_module-20251002.dist-info → fake_bpy_module-20251003.dist-info}/METADATA +1 -1
- {fake_bpy_module-20251002.dist-info → fake_bpy_module-20251003.dist-info}/RECORD +18 -18
- mathutils/bvhtree/__init__.pyi +3 -2
- {fake_bpy_module-20251002.dist-info → fake_bpy_module-20251003.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20251002.dist-info → fake_bpy_module-20251003.dist-info}/top_level.txt +0 -0
bl_operators/anim/__init__.pyi
CHANGED
|
@@ -120,7 +120,7 @@ class UILIST_OT_entry_remove(GenericUIListOperator, _bpy_types.Operator):
|
|
|
120
120
|
|
|
121
121
|
def draw_ui_list(
|
|
122
122
|
layout: bpy.types.UILayout,
|
|
123
|
-
context:
|
|
123
|
+
context: _bpy_types.Context,
|
|
124
124
|
class_name: str = "UI_UL_list",
|
|
125
125
|
*,
|
|
126
126
|
unique_id: str,
|
|
@@ -136,7 +136,7 @@ def draw_ui_list(
|
|
|
136
136
|
:param layout: UILayout to draw the list in.
|
|
137
137
|
:type layout: bpy.types.UILayout
|
|
138
138
|
:param context: Blender context to get the list data from.
|
|
139
|
-
:type context:
|
|
139
|
+
:type context: _bpy_types.Context
|
|
140
140
|
:param class_name: Name of the UIList class to draw. The default is the UIList class that ships with Blender.
|
|
141
141
|
:type class_name: str
|
|
142
142
|
:param unique_id: Unique identifier to differentiate this from other UI lists.
|
|
@@ -83,10 +83,10 @@ class NODE_MT_compositor_node_color_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
83
83
|
:rtype: typing.Any
|
|
84
84
|
"""
|
|
85
85
|
|
|
86
|
-
def draw(self,
|
|
86
|
+
def draw(self, context) -> None:
|
|
87
87
|
"""
|
|
88
88
|
|
|
89
|
-
:param
|
|
89
|
+
:param context:
|
|
90
90
|
"""
|
|
91
91
|
|
|
92
92
|
class NODE_MT_compositor_node_color_mix_base(bl_ui.node_add_menu.NodeMenu):
|
|
@@ -117,6 +117,33 @@ class NODE_MT_compositor_node_color_mix_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
117
117
|
:param context:
|
|
118
118
|
"""
|
|
119
119
|
|
|
120
|
+
class NODE_MT_compositor_node_creative_base(bl_ui.node_add_menu.NodeMenu):
|
|
121
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
122
|
+
|
|
123
|
+
bl_label: typing.Any
|
|
124
|
+
bl_rna: typing.Any
|
|
125
|
+
id_data: typing.Any
|
|
126
|
+
|
|
127
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
128
|
+
"""
|
|
129
|
+
|
|
130
|
+
:return: The RNA type or default when not found.
|
|
131
|
+
:rtype: bpy.types.Struct
|
|
132
|
+
"""
|
|
133
|
+
|
|
134
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
135
|
+
"""
|
|
136
|
+
|
|
137
|
+
:return: The class or default when not found.
|
|
138
|
+
:rtype: typing.Any
|
|
139
|
+
"""
|
|
140
|
+
|
|
141
|
+
def draw(self, _context) -> None:
|
|
142
|
+
"""
|
|
143
|
+
|
|
144
|
+
:param _context:
|
|
145
|
+
"""
|
|
146
|
+
|
|
120
147
|
class NODE_MT_compositor_node_filter_base(bl_ui.node_add_menu.NodeMenu):
|
|
121
148
|
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
122
149
|
|
|
@@ -309,6 +336,34 @@ class NODE_MT_compositor_node_mask_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
309
336
|
:param _context:
|
|
310
337
|
"""
|
|
311
338
|
|
|
339
|
+
class NODE_MT_compositor_node_math_base(bl_ui.node_add_menu.NodeMenu):
|
|
340
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
341
|
+
|
|
342
|
+
bl_label: typing.Any
|
|
343
|
+
bl_rna: typing.Any
|
|
344
|
+
id_data: typing.Any
|
|
345
|
+
menu_path: typing.Any
|
|
346
|
+
|
|
347
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
348
|
+
"""
|
|
349
|
+
|
|
350
|
+
:return: The RNA type or default when not found.
|
|
351
|
+
:rtype: bpy.types.Struct
|
|
352
|
+
"""
|
|
353
|
+
|
|
354
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
355
|
+
"""
|
|
356
|
+
|
|
357
|
+
:return: The class or default when not found.
|
|
358
|
+
:rtype: typing.Any
|
|
359
|
+
"""
|
|
360
|
+
|
|
361
|
+
def draw(self, context) -> None:
|
|
362
|
+
"""
|
|
363
|
+
|
|
364
|
+
:param context:
|
|
365
|
+
"""
|
|
366
|
+
|
|
312
367
|
class NODE_MT_compositor_node_output_base(bl_ui.node_add_menu.NodeMenu):
|
|
313
368
|
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
314
369
|
|
|
@@ -451,6 +506,7 @@ class NODE_MT_compositor_node_vector_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
451
506
|
bl_label: typing.Any
|
|
452
507
|
bl_rna: typing.Any
|
|
453
508
|
id_data: typing.Any
|
|
509
|
+
menu_path: typing.Any
|
|
454
510
|
|
|
455
511
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
456
512
|
"""
|
|
@@ -116,6 +116,33 @@ class NODE_MT_gn_attribute_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
116
116
|
:param _context:
|
|
117
117
|
"""
|
|
118
118
|
|
|
119
|
+
class NODE_MT_gn_color_base(bl_ui.node_add_menu.NodeMenu):
|
|
120
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
121
|
+
|
|
122
|
+
bl_label: typing.Any
|
|
123
|
+
bl_rna: typing.Any
|
|
124
|
+
id_data: typing.Any
|
|
125
|
+
|
|
126
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
127
|
+
"""
|
|
128
|
+
|
|
129
|
+
:return: The RNA type or default when not found.
|
|
130
|
+
:rtype: bpy.types.Struct
|
|
131
|
+
"""
|
|
132
|
+
|
|
133
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
134
|
+
"""
|
|
135
|
+
|
|
136
|
+
:return: The class or default when not found.
|
|
137
|
+
:rtype: typing.Any
|
|
138
|
+
"""
|
|
139
|
+
|
|
140
|
+
def draw(self, context) -> None:
|
|
141
|
+
"""
|
|
142
|
+
|
|
143
|
+
:param context:
|
|
144
|
+
"""
|
|
145
|
+
|
|
119
146
|
class NODE_MT_gn_curve_base(bl_ui.node_add_menu.NodeMenu):
|
|
120
147
|
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
121
148
|
|
|
@@ -762,6 +789,7 @@ class NODE_MT_gn_material_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
762
789
|
bl_label: typing.Any
|
|
763
790
|
bl_rna: typing.Any
|
|
764
791
|
id_data: typing.Any
|
|
792
|
+
menu_path: typing.Any
|
|
765
793
|
|
|
766
794
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
767
795
|
"""
|
|
@@ -1141,34 +1169,6 @@ class NODE_MT_gn_utilities_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
1141
1169
|
:param context:
|
|
1142
1170
|
"""
|
|
1143
1171
|
|
|
1144
|
-
class NODE_MT_gn_utilities_color_base(bl_ui.node_add_menu.NodeMenu):
|
|
1145
|
-
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
1146
|
-
|
|
1147
|
-
bl_label: typing.Any
|
|
1148
|
-
bl_rna: typing.Any
|
|
1149
|
-
id_data: typing.Any
|
|
1150
|
-
menu_path: typing.Any
|
|
1151
|
-
|
|
1152
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1153
|
-
"""
|
|
1154
|
-
|
|
1155
|
-
:return: The RNA type or default when not found.
|
|
1156
|
-
:rtype: bpy.types.Struct
|
|
1157
|
-
"""
|
|
1158
|
-
|
|
1159
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1160
|
-
"""
|
|
1161
|
-
|
|
1162
|
-
:return: The class or default when not found.
|
|
1163
|
-
:rtype: typing.Any
|
|
1164
|
-
"""
|
|
1165
|
-
|
|
1166
|
-
def draw(self, context) -> None:
|
|
1167
|
-
"""
|
|
1168
|
-
|
|
1169
|
-
:param context:
|
|
1170
|
-
"""
|
|
1171
|
-
|
|
1172
1172
|
class NODE_MT_gn_utilities_deprecated_base(bl_ui.node_add_menu.NodeMenu):
|
|
1173
1173
|
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
1174
1174
|
|
|
@@ -61,7 +61,7 @@ class NODE_MT_shader_node_color_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
61
61
|
:param context:
|
|
62
62
|
"""
|
|
63
63
|
|
|
64
|
-
class
|
|
64
|
+
class NODE_MT_shader_node_displacement_base(bl_ui.node_add_menu.NodeMenu):
|
|
65
65
|
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
66
66
|
|
|
67
67
|
bl_label: typing.Any
|
|
@@ -82,10 +82,10 @@ class NODE_MT_shader_node_converter_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
82
82
|
:rtype: typing.Any
|
|
83
83
|
"""
|
|
84
84
|
|
|
85
|
-
def draw(self,
|
|
85
|
+
def draw(self, _context) -> None:
|
|
86
86
|
"""
|
|
87
87
|
|
|
88
|
-
:param
|
|
88
|
+
:param _context:
|
|
89
89
|
"""
|
|
90
90
|
|
|
91
91
|
class NODE_MT_shader_node_input_base(bl_ui.node_add_menu.NodeMenu):
|
|
@@ -115,12 +115,13 @@ class NODE_MT_shader_node_input_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
115
115
|
:param context:
|
|
116
116
|
"""
|
|
117
117
|
|
|
118
|
-
class
|
|
118
|
+
class NODE_MT_shader_node_math_base(bl_ui.node_add_menu.NodeMenu):
|
|
119
119
|
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
120
120
|
|
|
121
121
|
bl_label: typing.Any
|
|
122
122
|
bl_rna: typing.Any
|
|
123
123
|
id_data: typing.Any
|
|
124
|
+
menu_path: typing.Any
|
|
124
125
|
|
|
125
126
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
126
127
|
"""
|
|
@@ -142,7 +143,7 @@ class NODE_MT_shader_node_output_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
142
143
|
:param context:
|
|
143
144
|
"""
|
|
144
145
|
|
|
145
|
-
class
|
|
146
|
+
class NODE_MT_shader_node_output_base(bl_ui.node_add_menu.NodeMenu):
|
|
146
147
|
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
147
148
|
|
|
148
149
|
bl_label: typing.Any
|
|
@@ -163,10 +164,10 @@ class NODE_MT_shader_node_script_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
163
164
|
:rtype: typing.Any
|
|
164
165
|
"""
|
|
165
166
|
|
|
166
|
-
def draw(self,
|
|
167
|
+
def draw(self, context) -> None:
|
|
167
168
|
"""
|
|
168
169
|
|
|
169
|
-
:param
|
|
170
|
+
:param context:
|
|
170
171
|
"""
|
|
171
172
|
|
|
172
173
|
class NODE_MT_shader_node_shader_base(bl_ui.node_add_menu.NodeMenu):
|
|
@@ -256,6 +257,7 @@ class NODE_MT_shader_node_vector_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
256
257
|
bl_label: typing.Any
|
|
257
258
|
bl_rna: typing.Any
|
|
258
259
|
id_data: typing.Any
|
|
260
|
+
menu_path: typing.Any
|
|
259
261
|
|
|
260
262
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
261
263
|
"""
|
|
@@ -271,10 +273,10 @@ class NODE_MT_shader_node_vector_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
271
273
|
:rtype: typing.Any
|
|
272
274
|
"""
|
|
273
275
|
|
|
274
|
-
def draw(self,
|
|
276
|
+
def draw(self, context) -> None:
|
|
275
277
|
"""
|
|
276
278
|
|
|
277
|
-
:param
|
|
279
|
+
:param context:
|
|
278
280
|
"""
|
|
279
281
|
|
|
280
282
|
def cycles_shader_nodes_poll(context) -> None: ...
|
|
@@ -342,9 +342,6 @@ class TextureMaskPanel(BrushPanel):
|
|
|
342
342
|
"""
|
|
343
343
|
|
|
344
344
|
def brush_basic__draw_color_selector(context, layout, brush, gp_settings) -> None: ...
|
|
345
|
-
def brush_basic_gpencil_vertex_settings(
|
|
346
|
-
layout, context, brush, *, compact=False
|
|
347
|
-
) -> None: ...
|
|
348
345
|
def brush_basic_grease_pencil_paint_settings(
|
|
349
346
|
layout, context, brush, props, *, compact=False
|
|
350
347
|
) -> None: ...
|
bl_ui/space_node/__init__.pyi
CHANGED
|
@@ -813,41 +813,7 @@ class NODE_PT_node_tree_animation(_bpy_types.Panel):
|
|
|
813
813
|
bl_category: typing.Any
|
|
814
814
|
bl_label: typing.Any
|
|
815
815
|
bl_options: typing.Any
|
|
816
|
-
|
|
817
|
-
bl_rna: typing.Any
|
|
818
|
-
bl_space_type: typing.Any
|
|
819
|
-
id_data: typing.Any
|
|
820
|
-
|
|
821
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
822
|
-
"""
|
|
823
|
-
|
|
824
|
-
:return: The RNA type or default when not found.
|
|
825
|
-
:rtype: bpy.types.Struct
|
|
826
|
-
"""
|
|
827
|
-
|
|
828
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
829
|
-
"""
|
|
830
|
-
|
|
831
|
-
:return: The class or default when not found.
|
|
832
|
-
:rtype: typing.Any
|
|
833
|
-
"""
|
|
834
|
-
|
|
835
|
-
def draw(self, context) -> None:
|
|
836
|
-
"""
|
|
837
|
-
|
|
838
|
-
:param context:
|
|
839
|
-
"""
|
|
840
|
-
|
|
841
|
-
@classmethod
|
|
842
|
-
def poll(cls, context) -> None:
|
|
843
|
-
"""
|
|
844
|
-
|
|
845
|
-
:param context:
|
|
846
|
-
"""
|
|
847
|
-
|
|
848
|
-
class NODE_PT_node_tree_interface(_bpy_types.Panel):
|
|
849
|
-
bl_category: typing.Any
|
|
850
|
-
bl_label: typing.Any
|
|
816
|
+
bl_order: typing.Any
|
|
851
817
|
bl_region_type: typing.Any
|
|
852
818
|
bl_rna: typing.Any
|
|
853
819
|
bl_space_type: typing.Any
|
|
@@ -883,6 +849,7 @@ class NODE_PT_node_tree_interface(_bpy_types.Panel):
|
|
|
883
849
|
class NODE_PT_node_tree_properties(_bpy_types.Panel):
|
|
884
850
|
bl_category: typing.Any
|
|
885
851
|
bl_label: typing.Any
|
|
852
|
+
bl_order: typing.Any
|
|
886
853
|
bl_region_type: typing.Any
|
|
887
854
|
bl_rna: typing.Any
|
|
888
855
|
bl_space_type: typing.Any
|
bl_ui/space_time/__init__.pyi
CHANGED
|
@@ -5,82 +5,6 @@ import numpy.typing as npt
|
|
|
5
5
|
import _bpy_types
|
|
6
6
|
import bpy.types
|
|
7
7
|
|
|
8
|
-
class TIME_MT_editor_menus(_bpy_types.Menu):
|
|
9
|
-
bl_idname: typing.Any
|
|
10
|
-
bl_label: typing.Any
|
|
11
|
-
bl_rna: typing.Any
|
|
12
|
-
id_data: typing.Any
|
|
13
|
-
|
|
14
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
15
|
-
"""
|
|
16
|
-
|
|
17
|
-
:return: The RNA type or default when not found.
|
|
18
|
-
:rtype: bpy.types.Struct
|
|
19
|
-
"""
|
|
20
|
-
|
|
21
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
22
|
-
"""
|
|
23
|
-
|
|
24
|
-
:return: The class or default when not found.
|
|
25
|
-
:rtype: typing.Any
|
|
26
|
-
"""
|
|
27
|
-
|
|
28
|
-
def draw(self, context) -> None:
|
|
29
|
-
"""
|
|
30
|
-
|
|
31
|
-
:param context:
|
|
32
|
-
"""
|
|
33
|
-
|
|
34
|
-
class TIME_MT_marker(_bpy_types.Menu):
|
|
35
|
-
bl_label: typing.Any
|
|
36
|
-
bl_rna: typing.Any
|
|
37
|
-
id_data: typing.Any
|
|
38
|
-
|
|
39
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
40
|
-
"""
|
|
41
|
-
|
|
42
|
-
:return: The RNA type or default when not found.
|
|
43
|
-
:rtype: bpy.types.Struct
|
|
44
|
-
"""
|
|
45
|
-
|
|
46
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
47
|
-
"""
|
|
48
|
-
|
|
49
|
-
:return: The class or default when not found.
|
|
50
|
-
:rtype: typing.Any
|
|
51
|
-
"""
|
|
52
|
-
|
|
53
|
-
def draw(self, context) -> None:
|
|
54
|
-
"""
|
|
55
|
-
|
|
56
|
-
:param context:
|
|
57
|
-
"""
|
|
58
|
-
|
|
59
|
-
class TIME_MT_view(_bpy_types.Menu):
|
|
60
|
-
bl_label: typing.Any
|
|
61
|
-
bl_rna: typing.Any
|
|
62
|
-
id_data: typing.Any
|
|
63
|
-
|
|
64
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
65
|
-
"""
|
|
66
|
-
|
|
67
|
-
:return: The RNA type or default when not found.
|
|
68
|
-
:rtype: bpy.types.Struct
|
|
69
|
-
"""
|
|
70
|
-
|
|
71
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
72
|
-
"""
|
|
73
|
-
|
|
74
|
-
:return: The class or default when not found.
|
|
75
|
-
:rtype: typing.Any
|
|
76
|
-
"""
|
|
77
|
-
|
|
78
|
-
def draw(self, context) -> None:
|
|
79
|
-
"""
|
|
80
|
-
|
|
81
|
-
:param context:
|
|
82
|
-
"""
|
|
83
|
-
|
|
84
8
|
class TIME_PT_auto_keyframing(TimelinePanelButtons, _bpy_types.Panel):
|
|
85
9
|
bl_label: typing.Any
|
|
86
10
|
bl_options: typing.Any
|
bpy/app/__init__.pyi
CHANGED
|
@@ -202,11 +202,11 @@ module: typing.Any
|
|
|
202
202
|
"""
|
|
203
203
|
|
|
204
204
|
ocio: typing.Any
|
|
205
|
-
""" Constant value bpy.app.ocio(supported=True, version=(2, 4,
|
|
205
|
+
""" Constant value bpy.app.ocio(supported=True, version=(2, 4, 2), version_string= 2, 4, 2)
|
|
206
206
|
"""
|
|
207
207
|
|
|
208
208
|
oiio: typing.Any
|
|
209
|
-
""" Constant value bpy.app.oiio(supported=True, version=(3, 0,
|
|
209
|
+
""" Constant value bpy.app.oiio(supported=True, version=(3, 0, 9), version_string= 3, 0, 9)
|
|
210
210
|
"""
|
|
211
211
|
|
|
212
212
|
online_access: typing.Any
|
|
@@ -250,7 +250,7 @@ tempdir: typing.Any
|
|
|
250
250
|
"""
|
|
251
251
|
|
|
252
252
|
usd: typing.Any
|
|
253
|
-
""" Constant value bpy.app.usd(supported=True, version=(0, 25,
|
|
253
|
+
""" Constant value bpy.app.usd(supported=True, version=(0, 25, 8), version_string= 0, 25, 8)
|
|
254
254
|
"""
|
|
255
255
|
|
|
256
256
|
use_event_simulate: typing.Any
|
bpy/ops/render/__init__.pyi
CHANGED
|
@@ -198,8 +198,8 @@ def render(
|
|
|
198
198
|
use_viewport: bool | None = False,
|
|
199
199
|
layer: str = "",
|
|
200
200
|
scene: str = "",
|
|
201
|
-
|
|
202
|
-
|
|
201
|
+
frame_start: int | None = 0,
|
|
202
|
+
frame_end: int | None = 0,
|
|
203
203
|
) -> None:
|
|
204
204
|
"""Render active scene
|
|
205
205
|
|
|
@@ -215,10 +215,10 @@ def render(
|
|
|
215
215
|
:type layer: str
|
|
216
216
|
:param scene: Scene, Scene to render, current scene if not specified
|
|
217
217
|
:type scene: str
|
|
218
|
-
:param
|
|
219
|
-
:type
|
|
220
|
-
:param
|
|
221
|
-
:type
|
|
218
|
+
:param frame_start: Start Frame, Frame to start rendering animation at. If not specified, the scene start frame will be assumed. This should only be specified if doing an animation render
|
|
219
|
+
:type frame_start: int | None
|
|
220
|
+
:param frame_end: End Frame, Frame to end rendering animation at. If not specified, the scene end frame will be assumed. This should only be specified if doing an animation render
|
|
221
|
+
:type frame_end: int | None
|
|
222
222
|
"""
|
|
223
223
|
|
|
224
224
|
def shutter_curve_preset(
|
|
@@ -1490,6 +1490,7 @@ type IconItems = typing.Literal[
|
|
|
1490
1490
|
"SEQ_SPLITVIEW", # SEQ_SPLITVIEW.
|
|
1491
1491
|
"SEQ_STRIP_DUPLICATE", # SEQ_STRIP_DUPLICATE.
|
|
1492
1492
|
"SEQ_STRIP_META", # SEQ_STRIP_META.
|
|
1493
|
+
"SEQ_STRIP_MODIFIER", # SEQ_STRIP_MODIFIER.
|
|
1493
1494
|
"MOD_BRIGHTNESS_CONTRAST", # MOD_BRIGHTNESS_CONTRAST.
|
|
1494
1495
|
"MOD_COLOR_BALANCE", # MOD_COLOR_BALANCE.
|
|
1495
1496
|
"MOD_CURVES", # MOD_CURVES.
|
|
@@ -2805,10 +2806,6 @@ type SnapSourceItems = typing.Literal[
|
|
|
2805
2806
|
"MEDIAN", # Median.Snap median onto target.
|
|
2806
2807
|
"ACTIVE", # Active.Snap active onto target.
|
|
2807
2808
|
]
|
|
2808
|
-
type SpaceActionModeItems = typing.Literal[
|
|
2809
|
-
"DOPESHEET", # Dope Sheet.Edit all keyframes in scene.
|
|
2810
|
-
"TIMELINE", # Timeline.Timeline and playback controls.
|
|
2811
|
-
]
|
|
2812
2809
|
type SpaceFileBrowseModeItems = typing.Literal[
|
|
2813
2810
|
"FILES", # File Browser.Built-in file manager for opening, saving, and linking data.
|
|
2814
2811
|
"ASSETS", # Asset Browser.Manage assets in the current file and access linked asset libraries.
|