fake-bpy-module 20240720__py3-none-any.whl → 20240722__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.
- aud/__init__.pyi +77 -77
- bl_operators/add_mesh_torus/__init__.pyi +1 -2
- bl_operators/assets/__init__.pyi +2 -2
- bl_operators/bone_selection_sets/__init__.pyi +16 -28
- bl_operators/connect_to_output/__init__.pyi +1 -4
- bl_operators/image_as_planes/__init__.pyi +2 -12
- bl_operators/node/__init__.pyi +14 -16
- bl_operators/object_quick_effects/__init__.pyi +3 -3
- bl_operators/presets/__init__.pyi +22 -25
- bl_operators/sequencer/__init__.pyi +76 -76
- bl_ui/generic_ui_list/__init__.pyi +3 -3
- bl_ui/properties_collection/__init__.pyi +5 -19
- bl_ui/properties_constraint/__init__.pyi +79 -289
- bl_ui/properties_data_armature/__init__.pyi +9 -33
- bl_ui/properties_data_bone/__init__.pyi +10 -17
- bl_ui/properties_data_camera/__init__.pyi +14 -32
- bl_ui/properties_data_curve/__init__.pyi +69 -88
- bl_ui/properties_data_curves/__init__.pyi +4 -9
- bl_ui/properties_data_empty/__init__.pyi +2 -2
- bl_ui/properties_data_gpencil/__init__.pyi +15 -50
- bl_ui/properties_data_grease_pencil/__init__.pyi +10 -36
- bl_ui/properties_data_lattice/__init__.pyi +3 -6
- bl_ui/properties_data_light/__init__.pyi +12 -25
- bl_ui/properties_data_lightprobe/__init__.pyi +13 -35
- bl_ui/properties_data_mesh/__init__.pyi +63 -72
- bl_ui/properties_data_metaball/__init__.pyi +5 -10
- bl_ui/properties_data_modifier/__init__.pyi +9 -23
- bl_ui/properties_data_pointcloud/__init__.pyi +3 -10
- bl_ui/properties_data_shaderfx/__init__.pyi +1 -1
- bl_ui/properties_data_speaker/__init__.pyi +5 -8
- bl_ui/properties_data_volume/__init__.pyi +7 -14
- bl_ui/properties_freestyle/__init__.pyi +9 -42
- bl_ui/properties_material/__init__.pyi +14 -40
- bl_ui/properties_material_gpencil/__init__.pyi +8 -32
- bl_ui/properties_object/__init__.pyi +13 -31
- bl_ui/properties_output/__init__.pyi +16 -43
- bl_ui/properties_paint_common/__init__.pyi +17 -17
- bl_ui/properties_particle/__init__.pyi +50 -135
- bl_ui/properties_physics_cloth/__init__.pyi +14 -35
- bl_ui/properties_physics_common/__init__.pyi +1 -1
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +21 -57
- bl_ui/properties_physics_field/__init__.pyi +10 -26
- bl_ui/properties_physics_fluid/__init__.pyi +28 -51
- bl_ui/properties_physics_rigidbody/__init__.pyi +8 -18
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +13 -25
- bl_ui/properties_physics_softbody/__init__.pyi +15 -43
- bl_ui/properties_render/__init__.pyi +54 -150
- bl_ui/properties_scene/__init__.pyi +29 -42
- bl_ui/properties_texture/__init__.pyi +26 -58
- bl_ui/properties_view_layer/__init__.pyi +16 -43
- bl_ui/properties_workspace/__init__.pyi +3 -9
- bl_ui/properties_world/__init__.pyi +10 -19
- bl_ui/space_clip/__init__.pyi +31 -93
- bl_ui/space_dopesheet/__init__.pyi +13 -66
- bl_ui/space_filebrowser/__init__.pyi +17 -38
- bl_ui/space_graph/__init__.pyi +1 -6
- bl_ui/space_image/__init__.pyi +190 -235
- bl_ui/space_nla/__init__.pyi +2 -11
- bl_ui/space_node/__init__.pyi +3 -16
- bl_ui/space_sequencer/__init__.pyi +34 -104
- bl_ui/space_time/__init__.pyi +3 -7
- bl_ui/space_toolsystem_toolbar/__init__.pyi +4 -21
- bl_ui/space_userpref/__init__.pyi +76 -215
- bl_ui/space_view3d/__init__.pyi +91 -147
- bl_ui/space_view3d_toolbar/__init__.pyi +435 -543
- bmesh/types/__init__.pyi +25 -25
- bpy/app/timers/__init__.pyi +6 -6
- bpy/types/__init__.pyi +113 -111
- bpy_extras/node_shader_utils/__init__.pyi +118 -118
- {fake_bpy_module-20240720.dist-info → fake_bpy_module-20240722.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240720.dist-info → fake_bpy_module-20240722.dist-info}/RECORD +81 -81
- {fake_bpy_module-20240720.dist-info → fake_bpy_module-20240722.dist-info}/WHEEL +1 -1
- freestyle/chainingiterators/__init__.pyi +4 -4
- freestyle/types/__init__.pyi +63 -65
- idprop/types/__init__.pyi +2 -2
- imbuf/types/__init__.pyi +2 -2
- keyingsets_builtins/__init__.pyi +2 -2
- mathutils/__init__.pyi +1004 -965
- mathutils/bvhtree/__init__.pyi +2 -2
- nodeitems_builtins/__init__.pyi +3 -3
- {fake_bpy_module-20240720.dist-info → fake_bpy_module-20240722.dist-info}/top_level.txt +0 -0
|
@@ -2,15 +2,11 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bpy.types
|
|
5
|
-
import bpy_extras.io_utils
|
|
6
|
-
import bpy_extras.object_utils
|
|
7
5
|
|
|
8
6
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
9
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
10
8
|
|
|
11
|
-
class IMAGE_OT_convert_to_mesh_plane(
|
|
12
|
-
TextureProperties_MixIn, MaterialProperties_MixIn, bpy.types.Operator
|
|
13
|
-
):
|
|
9
|
+
class IMAGE_OT_convert_to_mesh_plane(bpy.types.Operator):
|
|
14
10
|
"""Convert selected reference images to textured mesh plane"""
|
|
15
11
|
|
|
16
12
|
bl_idname: typing.Any
|
|
@@ -66,13 +62,7 @@ class IMAGE_OT_convert_to_mesh_plane(
|
|
|
66
62
|
"""
|
|
67
63
|
...
|
|
68
64
|
|
|
69
|
-
class IMAGE_OT_import_as_mesh_planes(
|
|
70
|
-
TextureProperties_MixIn,
|
|
71
|
-
bpy_extras.io_utils.ImportHelper,
|
|
72
|
-
bpy_extras.object_utils.AddObjectHelper,
|
|
73
|
-
MaterialProperties_MixIn,
|
|
74
|
-
bpy.types.Operator,
|
|
75
|
-
):
|
|
65
|
+
class IMAGE_OT_import_as_mesh_planes(bpy.types.Operator):
|
|
76
66
|
"""Create mesh plane(s) from image files with the appropriate aspect ratio"""
|
|
77
67
|
|
|
78
68
|
AXIS_MODES: typing.Any
|
bl_operators/node/__init__.pyi
CHANGED
|
@@ -38,7 +38,7 @@ class NODE_FH_image_node(bpy.types.FileHandler):
|
|
|
38
38
|
"""
|
|
39
39
|
...
|
|
40
40
|
|
|
41
|
-
class NODE_OT_add_node(
|
|
41
|
+
class NODE_OT_add_node(bpy.types.Operator):
|
|
42
42
|
"""Add a node to the active tree"""
|
|
43
43
|
|
|
44
44
|
bl_idname: typing.Any
|
|
@@ -79,7 +79,7 @@ class NODE_OT_add_node(NodeAddOperator, bpy.types.Operator):
|
|
|
79
79
|
"""
|
|
80
80
|
...
|
|
81
81
|
|
|
82
|
-
class NODE_OT_add_repeat_zone(NodeAddOperator,
|
|
82
|
+
class NODE_OT_add_repeat_zone(NodeAddOperator, bpy.types.Operator):
|
|
83
83
|
"""Add a repeat zone that allows executing nodes a dynamic number of times"""
|
|
84
84
|
|
|
85
85
|
bl_idname: typing.Any
|
|
@@ -106,9 +106,7 @@ class NODE_OT_add_repeat_zone(NodeAddOperator, NodeAddZoneOperator, bpy.types.Op
|
|
|
106
106
|
"""
|
|
107
107
|
...
|
|
108
108
|
|
|
109
|
-
class NODE_OT_add_simulation_zone(
|
|
110
|
-
NodeAddOperator, NodeAddZoneOperator, bpy.types.Operator
|
|
111
|
-
):
|
|
109
|
+
class NODE_OT_add_simulation_zone(NodeAddOperator, bpy.types.Operator):
|
|
112
110
|
"""Add simulation zone input and output nodes to the active tree"""
|
|
113
111
|
|
|
114
112
|
bl_idname: typing.Any
|
|
@@ -175,7 +173,7 @@ class NODE_OT_collapse_hide_unused_toggle(bpy.types.Operator):
|
|
|
175
173
|
"""
|
|
176
174
|
...
|
|
177
175
|
|
|
178
|
-
class NODE_OT_interface_item_duplicate(
|
|
176
|
+
class NODE_OT_interface_item_duplicate(bpy.types.Operator):
|
|
179
177
|
"""Add a copy of the active item to the interface"""
|
|
180
178
|
|
|
181
179
|
bl_idname: typing.Any
|
|
@@ -215,7 +213,7 @@ class NODE_OT_interface_item_duplicate(NodeInterfaceOperator, bpy.types.Operator
|
|
|
215
213
|
"""
|
|
216
214
|
...
|
|
217
215
|
|
|
218
|
-
class NODE_OT_interface_item_new(
|
|
216
|
+
class NODE_OT_interface_item_new(bpy.types.Operator):
|
|
219
217
|
"""Add a new item to the interface"""
|
|
220
218
|
|
|
221
219
|
bl_idname: typing.Any
|
|
@@ -255,7 +253,7 @@ class NODE_OT_interface_item_new(NodeInterfaceOperator, bpy.types.Operator):
|
|
|
255
253
|
"""
|
|
256
254
|
...
|
|
257
255
|
|
|
258
|
-
class NODE_OT_interface_item_remove(
|
|
256
|
+
class NODE_OT_interface_item_remove(bpy.types.Operator):
|
|
259
257
|
"""Remove active item from the interface"""
|
|
260
258
|
|
|
261
259
|
bl_idname: typing.Any
|
|
@@ -369,6 +367,14 @@ class NodeAddOperator:
|
|
|
369
367
|
"""
|
|
370
368
|
...
|
|
371
369
|
|
|
370
|
+
class NodeAddZoneOperator:
|
|
371
|
+
def execute(self, context):
|
|
372
|
+
"""
|
|
373
|
+
|
|
374
|
+
:param context:
|
|
375
|
+
"""
|
|
376
|
+
...
|
|
377
|
+
|
|
372
378
|
class NodeInterfaceOperator:
|
|
373
379
|
@classmethod
|
|
374
380
|
def poll(cls, context):
|
|
@@ -397,11 +403,3 @@ class NodeSetting(bpy.types.PropertyGroup):
|
|
|
397
403
|
:rtype: typing.Any
|
|
398
404
|
"""
|
|
399
405
|
...
|
|
400
|
-
|
|
401
|
-
class NodeAddZoneOperator(NodeAddOperator):
|
|
402
|
-
def execute(self, context):
|
|
403
|
-
"""
|
|
404
|
-
|
|
405
|
-
:param context:
|
|
406
|
-
"""
|
|
407
|
-
...
|
|
@@ -15,7 +15,7 @@ class ObjectModeOperator:
|
|
|
15
15
|
"""
|
|
16
16
|
...
|
|
17
17
|
|
|
18
|
-
class QuickExplode(
|
|
18
|
+
class QuickExplode(bpy.types.Operator):
|
|
19
19
|
"""Make selected objects explode"""
|
|
20
20
|
|
|
21
21
|
bl_idname: typing.Any
|
|
@@ -55,7 +55,7 @@ class QuickExplode(ObjectModeOperator, bpy.types.Operator):
|
|
|
55
55
|
"""
|
|
56
56
|
...
|
|
57
57
|
|
|
58
|
-
class QuickFur(
|
|
58
|
+
class QuickFur(bpy.types.Operator):
|
|
59
59
|
"""Add a fur setup to the selected objects"""
|
|
60
60
|
|
|
61
61
|
bl_idname: typing.Any
|
|
@@ -119,7 +119,7 @@ class QuickLiquid(bpy.types.Operator):
|
|
|
119
119
|
"""
|
|
120
120
|
...
|
|
121
121
|
|
|
122
|
-
class QuickSmoke(
|
|
122
|
+
class QuickSmoke(bpy.types.Operator):
|
|
123
123
|
"""Use selected objects as smoke emitters"""
|
|
124
124
|
|
|
125
125
|
bl_idname: typing.Any
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bl_ui.utils
|
|
5
4
|
import bpy.types
|
|
6
5
|
import bpy_types
|
|
7
6
|
|
|
@@ -41,7 +40,7 @@ class AddPresetBase:
|
|
|
41
40
|
"""
|
|
42
41
|
...
|
|
43
42
|
|
|
44
|
-
class AddPresetCamera(
|
|
43
|
+
class AddPresetCamera(bpy.types.Operator):
|
|
45
44
|
"""Add or remove a Camera Preset"""
|
|
46
45
|
|
|
47
46
|
bl_idname: typing.Any
|
|
@@ -70,7 +69,7 @@ class AddPresetCamera(AddPresetBase, bpy.types.Operator):
|
|
|
70
69
|
"""
|
|
71
70
|
...
|
|
72
71
|
|
|
73
|
-
class AddPresetCameraSafeAreas(
|
|
72
|
+
class AddPresetCameraSafeAreas(bpy.types.Operator):
|
|
74
73
|
"""Add or remove a Safe Areas Preset"""
|
|
75
74
|
|
|
76
75
|
bl_idname: typing.Any
|
|
@@ -99,7 +98,7 @@ class AddPresetCameraSafeAreas(AddPresetBase, bpy.types.Operator):
|
|
|
99
98
|
"""
|
|
100
99
|
...
|
|
101
100
|
|
|
102
|
-
class AddPresetCloth(
|
|
101
|
+
class AddPresetCloth(bpy.types.Operator):
|
|
103
102
|
"""Add or remove a Cloth Preset"""
|
|
104
103
|
|
|
105
104
|
bl_idname: typing.Any
|
|
@@ -128,7 +127,7 @@ class AddPresetCloth(AddPresetBase, bpy.types.Operator):
|
|
|
128
127
|
"""
|
|
129
128
|
...
|
|
130
129
|
|
|
131
|
-
class AddPresetColorManagementWhiteBalance(
|
|
130
|
+
class AddPresetColorManagementWhiteBalance(bpy.types.Operator):
|
|
132
131
|
"""Add or remove a white balance preset"""
|
|
133
132
|
|
|
134
133
|
bl_idname: typing.Any
|
|
@@ -157,7 +156,7 @@ class AddPresetColorManagementWhiteBalance(AddPresetBase, bpy.types.Operator):
|
|
|
157
156
|
"""
|
|
158
157
|
...
|
|
159
158
|
|
|
160
|
-
class AddPresetEEVEERaytracing(
|
|
159
|
+
class AddPresetEEVEERaytracing(bpy.types.Operator):
|
|
161
160
|
"""Add or remove an EEVEE ray-tracing preset"""
|
|
162
161
|
|
|
163
162
|
bl_idname: typing.Any
|
|
@@ -186,7 +185,7 @@ class AddPresetEEVEERaytracing(AddPresetBase, bpy.types.Operator):
|
|
|
186
185
|
"""
|
|
187
186
|
...
|
|
188
187
|
|
|
189
|
-
class AddPresetFluid(
|
|
188
|
+
class AddPresetFluid(bpy.types.Operator):
|
|
190
189
|
"""Add or remove a Fluid Preset"""
|
|
191
190
|
|
|
192
191
|
bl_idname: typing.Any
|
|
@@ -215,7 +214,7 @@ class AddPresetFluid(AddPresetBase, bpy.types.Operator):
|
|
|
215
214
|
"""
|
|
216
215
|
...
|
|
217
216
|
|
|
218
|
-
class AddPresetGpencilBrush(
|
|
217
|
+
class AddPresetGpencilBrush(bpy.types.Operator):
|
|
219
218
|
"""Add or remove grease pencil brush preset"""
|
|
220
219
|
|
|
221
220
|
bl_idname: typing.Any
|
|
@@ -244,7 +243,7 @@ class AddPresetGpencilBrush(AddPresetBase, bpy.types.Operator):
|
|
|
244
243
|
"""
|
|
245
244
|
...
|
|
246
245
|
|
|
247
|
-
class AddPresetGpencilMaterial(
|
|
246
|
+
class AddPresetGpencilMaterial(bpy.types.Operator):
|
|
248
247
|
"""Add or remove grease pencil material preset"""
|
|
249
248
|
|
|
250
249
|
bl_idname: typing.Any
|
|
@@ -273,7 +272,7 @@ class AddPresetGpencilMaterial(AddPresetBase, bpy.types.Operator):
|
|
|
273
272
|
"""
|
|
274
273
|
...
|
|
275
274
|
|
|
276
|
-
class AddPresetHairDynamics(
|
|
275
|
+
class AddPresetHairDynamics(bpy.types.Operator):
|
|
277
276
|
"""Add or remove a Hair Dynamics Preset"""
|
|
278
277
|
|
|
279
278
|
bl_idname: typing.Any
|
|
@@ -302,7 +301,7 @@ class AddPresetHairDynamics(AddPresetBase, bpy.types.Operator):
|
|
|
302
301
|
"""
|
|
303
302
|
...
|
|
304
303
|
|
|
305
|
-
class AddPresetInterfaceTheme(
|
|
304
|
+
class AddPresetInterfaceTheme(bpy.types.Operator):
|
|
306
305
|
"""Add a custom theme to the preset list"""
|
|
307
306
|
|
|
308
307
|
bl_idname: typing.Any
|
|
@@ -329,7 +328,7 @@ class AddPresetInterfaceTheme(AddPresetBase, bpy.types.Operator):
|
|
|
329
328
|
"""
|
|
330
329
|
...
|
|
331
330
|
|
|
332
|
-
class AddPresetKeyconfig(
|
|
331
|
+
class AddPresetKeyconfig(bpy.types.Operator):
|
|
333
332
|
"""Add a custom keymap configuration to the preset list"""
|
|
334
333
|
|
|
335
334
|
bl_idname: typing.Any
|
|
@@ -364,7 +363,7 @@ class AddPresetKeyconfig(AddPresetBase, bpy.types.Operator):
|
|
|
364
363
|
"""
|
|
365
364
|
...
|
|
366
365
|
|
|
367
|
-
class AddPresetNodeColor(
|
|
366
|
+
class AddPresetNodeColor(bpy.types.Operator):
|
|
368
367
|
"""Add or remove a Node Color Preset"""
|
|
369
368
|
|
|
370
369
|
bl_idname: typing.Any
|
|
@@ -393,7 +392,7 @@ class AddPresetNodeColor(AddPresetBase, bpy.types.Operator):
|
|
|
393
392
|
"""
|
|
394
393
|
...
|
|
395
394
|
|
|
396
|
-
class AddPresetOperator(
|
|
395
|
+
class AddPresetOperator(bpy.types.Operator):
|
|
397
396
|
"""Add or remove an Operator Preset"""
|
|
398
397
|
|
|
399
398
|
bl_idname: typing.Any
|
|
@@ -430,7 +429,7 @@ class AddPresetOperator(AddPresetBase, bpy.types.Operator):
|
|
|
430
429
|
"""
|
|
431
430
|
...
|
|
432
431
|
|
|
433
|
-
class AddPresetRender(
|
|
432
|
+
class AddPresetRender(bpy.types.Operator):
|
|
434
433
|
"""Add or remove a Render Preset"""
|
|
435
434
|
|
|
436
435
|
bl_idname: typing.Any
|
|
@@ -459,7 +458,7 @@ class AddPresetRender(AddPresetBase, bpy.types.Operator):
|
|
|
459
458
|
"""
|
|
460
459
|
...
|
|
461
460
|
|
|
462
|
-
class AddPresetTextEditor(
|
|
461
|
+
class AddPresetTextEditor(bpy.types.Operator):
|
|
463
462
|
"""Add or remove a Text Editor Preset"""
|
|
464
463
|
|
|
465
464
|
bl_idname: typing.Any
|
|
@@ -488,7 +487,7 @@ class AddPresetTextEditor(AddPresetBase, bpy.types.Operator):
|
|
|
488
487
|
"""
|
|
489
488
|
...
|
|
490
489
|
|
|
491
|
-
class AddPresetTrackingCamera(
|
|
490
|
+
class AddPresetTrackingCamera(bpy.types.Operator):
|
|
492
491
|
"""Add or remove a Tracking Camera Intrinsics Preset"""
|
|
493
492
|
|
|
494
493
|
bl_idname: typing.Any
|
|
@@ -517,7 +516,7 @@ class AddPresetTrackingCamera(AddPresetBase, bpy.types.Operator):
|
|
|
517
516
|
"""
|
|
518
517
|
...
|
|
519
518
|
|
|
520
|
-
class AddPresetTrackingSettings(
|
|
519
|
+
class AddPresetTrackingSettings(bpy.types.Operator):
|
|
521
520
|
"""Add or remove a motion tracking settings preset"""
|
|
522
521
|
|
|
523
522
|
bl_idname: typing.Any
|
|
@@ -546,7 +545,7 @@ class AddPresetTrackingSettings(AddPresetBase, bpy.types.Operator):
|
|
|
546
545
|
"""
|
|
547
546
|
...
|
|
548
547
|
|
|
549
|
-
class AddPresetTrackingTrackColor(
|
|
548
|
+
class AddPresetTrackingTrackColor(bpy.types.Operator):
|
|
550
549
|
"""Add or remove a Clip Track Color Preset"""
|
|
551
550
|
|
|
552
551
|
bl_idname: typing.Any
|
|
@@ -606,7 +605,7 @@ class ExecutePreset(bpy.types.Operator):
|
|
|
606
605
|
"""
|
|
607
606
|
...
|
|
608
607
|
|
|
609
|
-
class RemovePresetInterfaceTheme(
|
|
608
|
+
class RemovePresetInterfaceTheme(bpy.types.Operator):
|
|
610
609
|
"""Remove a custom theme from the preset list"""
|
|
611
610
|
|
|
612
611
|
bl_idname: typing.Any
|
|
@@ -656,7 +655,7 @@ class RemovePresetInterfaceTheme(AddPresetBase, bpy.types.Operator):
|
|
|
656
655
|
"""
|
|
657
656
|
...
|
|
658
657
|
|
|
659
|
-
class RemovePresetKeyconfig(
|
|
658
|
+
class RemovePresetKeyconfig(bpy.types.Operator):
|
|
660
659
|
"""Remove a custom keymap configuration from the preset list"""
|
|
661
660
|
|
|
662
661
|
bl_idname: typing.Any
|
|
@@ -713,7 +712,7 @@ class RemovePresetKeyconfig(AddPresetBase, bpy.types.Operator):
|
|
|
713
712
|
"""
|
|
714
713
|
...
|
|
715
714
|
|
|
716
|
-
class SavePresetInterfaceTheme(
|
|
715
|
+
class SavePresetInterfaceTheme(bpy.types.Operator):
|
|
717
716
|
"""Save a custom theme in the preset list"""
|
|
718
717
|
|
|
719
718
|
bl_idname: typing.Any
|
|
@@ -824,9 +823,7 @@ class WM_OT_operator_presets_cleanup(bpy.types.Operator):
|
|
|
824
823
|
"""
|
|
825
824
|
...
|
|
826
825
|
|
|
827
|
-
class WM_PT_operator_presets(
|
|
828
|
-
bpy.types.Panel, bl_ui.utils.PresetPanel, bpy_types._GenericUI
|
|
829
|
-
):
|
|
826
|
+
class WM_PT_operator_presets(bpy.types.Panel, bpy_types._GenericUI):
|
|
830
827
|
bl_label: typing.Any
|
|
831
828
|
bl_region_type: typing.Any
|
|
832
829
|
bl_rna: typing.Any
|
|
@@ -23,12 +23,75 @@ class Fade:
|
|
|
23
23
|
"""
|
|
24
24
|
...
|
|
25
25
|
|
|
26
|
-
class
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
class SEQUENCER_FH_image_strip(bpy.types.FileHandler):
|
|
27
|
+
bl_file_extensions: typing.Any
|
|
28
|
+
bl_idname: typing.Any
|
|
29
|
+
bl_import_operator: typing.Any
|
|
30
|
+
bl_label: typing.Any
|
|
31
|
+
bl_rna: typing.Any
|
|
32
|
+
id_data: typing.Any
|
|
33
|
+
|
|
34
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
29
35
|
"""
|
|
30
36
|
|
|
31
|
-
:
|
|
37
|
+
:return: The RNA type or default when not found.
|
|
38
|
+
:rtype: bpy.types.Struct
|
|
39
|
+
"""
|
|
40
|
+
...
|
|
41
|
+
|
|
42
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
43
|
+
"""
|
|
44
|
+
|
|
45
|
+
:return: The class or default when not found.
|
|
46
|
+
:rtype: typing.Any
|
|
47
|
+
"""
|
|
48
|
+
...
|
|
49
|
+
|
|
50
|
+
class SEQUENCER_FH_movie_strip(bpy.types.FileHandler):
|
|
51
|
+
bl_file_extensions: typing.Any
|
|
52
|
+
bl_idname: typing.Any
|
|
53
|
+
bl_import_operator: typing.Any
|
|
54
|
+
bl_label: typing.Any
|
|
55
|
+
bl_rna: typing.Any
|
|
56
|
+
id_data: typing.Any
|
|
57
|
+
|
|
58
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
59
|
+
"""
|
|
60
|
+
|
|
61
|
+
:return: The RNA type or default when not found.
|
|
62
|
+
:rtype: bpy.types.Struct
|
|
63
|
+
"""
|
|
64
|
+
...
|
|
65
|
+
|
|
66
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
67
|
+
"""
|
|
68
|
+
|
|
69
|
+
:return: The class or default when not found.
|
|
70
|
+
:rtype: typing.Any
|
|
71
|
+
"""
|
|
72
|
+
...
|
|
73
|
+
|
|
74
|
+
class SEQUENCER_FH_sound_strip(bpy.types.FileHandler):
|
|
75
|
+
bl_file_extensions: typing.Any
|
|
76
|
+
bl_idname: typing.Any
|
|
77
|
+
bl_import_operator: typing.Any
|
|
78
|
+
bl_label: typing.Any
|
|
79
|
+
bl_rna: typing.Any
|
|
80
|
+
id_data: typing.Any
|
|
81
|
+
|
|
82
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
83
|
+
"""
|
|
84
|
+
|
|
85
|
+
:return: The RNA type or default when not found.
|
|
86
|
+
:rtype: bpy.types.Struct
|
|
87
|
+
"""
|
|
88
|
+
...
|
|
89
|
+
|
|
90
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
91
|
+
"""
|
|
92
|
+
|
|
93
|
+
:return: The class or default when not found.
|
|
94
|
+
:rtype: typing.Any
|
|
32
95
|
"""
|
|
33
96
|
...
|
|
34
97
|
|
|
@@ -247,6 +310,15 @@ class SequencerFadesClear(bpy.types.Operator):
|
|
|
247
310
|
"""
|
|
248
311
|
...
|
|
249
312
|
|
|
313
|
+
class SequencerFileHandlerBase:
|
|
314
|
+
@classmethod
|
|
315
|
+
def poll_drop(cls, context):
|
|
316
|
+
"""
|
|
317
|
+
|
|
318
|
+
:param context:
|
|
319
|
+
"""
|
|
320
|
+
...
|
|
321
|
+
|
|
250
322
|
class SequencerSplitMulticam(bpy.types.Operator):
|
|
251
323
|
"""Split multicam strip and select camera"""
|
|
252
324
|
|
|
@@ -287,76 +359,4 @@ class SequencerSplitMulticam(bpy.types.Operator):
|
|
|
287
359
|
"""
|
|
288
360
|
...
|
|
289
361
|
|
|
290
|
-
class SEQUENCER_FH_image_strip(bpy.types.FileHandler, SequencerFileHandlerBase):
|
|
291
|
-
bl_file_extensions: typing.Any
|
|
292
|
-
bl_idname: typing.Any
|
|
293
|
-
bl_import_operator: typing.Any
|
|
294
|
-
bl_label: typing.Any
|
|
295
|
-
bl_rna: typing.Any
|
|
296
|
-
id_data: typing.Any
|
|
297
|
-
|
|
298
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
299
|
-
"""
|
|
300
|
-
|
|
301
|
-
:return: The RNA type or default when not found.
|
|
302
|
-
:rtype: bpy.types.Struct
|
|
303
|
-
"""
|
|
304
|
-
...
|
|
305
|
-
|
|
306
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
307
|
-
"""
|
|
308
|
-
|
|
309
|
-
:return: The class or default when not found.
|
|
310
|
-
:rtype: typing.Any
|
|
311
|
-
"""
|
|
312
|
-
...
|
|
313
|
-
|
|
314
|
-
class SEQUENCER_FH_movie_strip(bpy.types.FileHandler, SequencerFileHandlerBase):
|
|
315
|
-
bl_file_extensions: typing.Any
|
|
316
|
-
bl_idname: typing.Any
|
|
317
|
-
bl_import_operator: typing.Any
|
|
318
|
-
bl_label: typing.Any
|
|
319
|
-
bl_rna: typing.Any
|
|
320
|
-
id_data: typing.Any
|
|
321
|
-
|
|
322
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
323
|
-
"""
|
|
324
|
-
|
|
325
|
-
:return: The RNA type or default when not found.
|
|
326
|
-
:rtype: bpy.types.Struct
|
|
327
|
-
"""
|
|
328
|
-
...
|
|
329
|
-
|
|
330
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
331
|
-
"""
|
|
332
|
-
|
|
333
|
-
:return: The class or default when not found.
|
|
334
|
-
:rtype: typing.Any
|
|
335
|
-
"""
|
|
336
|
-
...
|
|
337
|
-
|
|
338
|
-
class SEQUENCER_FH_sound_strip(bpy.types.FileHandler, SequencerFileHandlerBase):
|
|
339
|
-
bl_file_extensions: typing.Any
|
|
340
|
-
bl_idname: typing.Any
|
|
341
|
-
bl_import_operator: typing.Any
|
|
342
|
-
bl_label: typing.Any
|
|
343
|
-
bl_rna: typing.Any
|
|
344
|
-
id_data: typing.Any
|
|
345
|
-
|
|
346
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
347
|
-
"""
|
|
348
|
-
|
|
349
|
-
:return: The RNA type or default when not found.
|
|
350
|
-
:rtype: bpy.types.Struct
|
|
351
|
-
"""
|
|
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
|
-
|
|
362
362
|
def calculate_duration_frames(scene, duration_seconds): ...
|
|
@@ -35,7 +35,7 @@ class GenericUIListOperator:
|
|
|
35
35
|
"""
|
|
36
36
|
...
|
|
37
37
|
|
|
38
|
-
class UILIST_OT_entry_add(
|
|
38
|
+
class UILIST_OT_entry_add(bpy.types.Operator):
|
|
39
39
|
"""Add an entry to the list after the current active item"""
|
|
40
40
|
|
|
41
41
|
bl_idname: typing.Any
|
|
@@ -67,7 +67,7 @@ class UILIST_OT_entry_add(GenericUIListOperator, bpy.types.Operator):
|
|
|
67
67
|
"""
|
|
68
68
|
...
|
|
69
69
|
|
|
70
|
-
class UILIST_OT_entry_move(
|
|
70
|
+
class UILIST_OT_entry_move(bpy.types.Operator):
|
|
71
71
|
"""Move an entry in the list up or down"""
|
|
72
72
|
|
|
73
73
|
bl_idname: typing.Any
|
|
@@ -99,7 +99,7 @@ class UILIST_OT_entry_move(GenericUIListOperator, bpy.types.Operator):
|
|
|
99
99
|
"""
|
|
100
100
|
...
|
|
101
101
|
|
|
102
|
-
class UILIST_OT_entry_remove(
|
|
102
|
+
class UILIST_OT_entry_remove(bpy.types.Operator):
|
|
103
103
|
"""Remove the selected entry from the list"""
|
|
104
104
|
|
|
105
105
|
bl_idname: typing.Any
|
|
@@ -3,7 +3,6 @@ import collections.abc
|
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bpy.types
|
|
5
5
|
import bpy_types
|
|
6
|
-
import rna_prop_ui
|
|
7
6
|
|
|
8
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
9
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
@@ -36,12 +35,7 @@ class COLLECTION_MT_context_menu_instance_offset(bpy.types.Menu, bpy_types._Gene
|
|
|
36
35
|
"""
|
|
37
36
|
...
|
|
38
37
|
|
|
39
|
-
class COLLECTION_PT_collection_custom_props(
|
|
40
|
-
bpy.types.Panel,
|
|
41
|
-
CollectionButtonsPanel,
|
|
42
|
-
rna_prop_ui.PropertyPanel,
|
|
43
|
-
bpy_types._GenericUI,
|
|
44
|
-
):
|
|
38
|
+
class COLLECTION_PT_collection_custom_props(bpy.types.Panel, bpy_types._GenericUI):
|
|
45
39
|
"""The subclass should have its own poll function
|
|
46
40
|
and the variable '_context_path' MUST be set.
|
|
47
41
|
"""
|
|
@@ -71,9 +65,7 @@ class COLLECTION_PT_collection_custom_props(
|
|
|
71
65
|
"""
|
|
72
66
|
...
|
|
73
67
|
|
|
74
|
-
class COLLECTION_PT_collection_flags(
|
|
75
|
-
bpy.types.Panel, CollectionButtonsPanel, bpy_types._GenericUI
|
|
76
|
-
):
|
|
68
|
+
class COLLECTION_PT_collection_flags(bpy.types.Panel, bpy_types._GenericUI):
|
|
77
69
|
bl_context: typing.Any
|
|
78
70
|
bl_label: typing.Any
|
|
79
71
|
bl_region_type: typing.Any
|
|
@@ -104,9 +96,7 @@ class COLLECTION_PT_collection_flags(
|
|
|
104
96
|
"""
|
|
105
97
|
...
|
|
106
98
|
|
|
107
|
-
class COLLECTION_PT_exporters(
|
|
108
|
-
bpy.types.Panel, CollectionButtonsPanel, bpy_types._GenericUI
|
|
109
|
-
):
|
|
99
|
+
class COLLECTION_PT_exporters(bpy.types.Panel, bpy_types._GenericUI):
|
|
110
100
|
bl_context: typing.Any
|
|
111
101
|
bl_label: typing.Any
|
|
112
102
|
bl_region_type: typing.Any
|
|
@@ -137,9 +127,7 @@ class COLLECTION_PT_exporters(
|
|
|
137
127
|
"""
|
|
138
128
|
...
|
|
139
129
|
|
|
140
|
-
class COLLECTION_PT_instancing(
|
|
141
|
-
bpy.types.Panel, CollectionButtonsPanel, bpy_types._GenericUI
|
|
142
|
-
):
|
|
130
|
+
class COLLECTION_PT_instancing(bpy.types.Panel, bpy_types._GenericUI):
|
|
143
131
|
bl_context: typing.Any
|
|
144
132
|
bl_label: typing.Any
|
|
145
133
|
bl_region_type: typing.Any
|
|
@@ -170,9 +158,7 @@ class COLLECTION_PT_instancing(
|
|
|
170
158
|
"""
|
|
171
159
|
...
|
|
172
160
|
|
|
173
|
-
class COLLECTION_PT_lineart_collection(
|
|
174
|
-
bpy.types.Panel, CollectionButtonsPanel, bpy_types._GenericUI
|
|
175
|
-
):
|
|
161
|
+
class COLLECTION_PT_lineart_collection(bpy.types.Panel, bpy_types._GenericUI):
|
|
176
162
|
bl_context: typing.Any
|
|
177
163
|
bl_label: typing.Any
|
|
178
164
|
bl_order: typing.Any
|