fake-bpy-module 20240721__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.
- 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
- bpy_extras/node_shader_utils/__init__.pyi +118 -118
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/RECORD +71 -71
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/WHEEL +1 -1
- keyingsets_builtins/__init__.pyi +2 -2
- nodeitems_builtins/__init__.pyi +3 -3
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/top_level.txt +0 -0
|
@@ -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
|