fake-bpy-module 20240904__py3-none-any.whl → 20240906__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/system_info/__init__.pyi +3 -2
- {sys_info → _bpy_internal/system_info/text_generate_runtime}/__init__.pyi +1 -1
- _bpy_internal/system_info/{runtime → url_prefill_runtime}/__init__.pyi +1 -1
- _bpy_internal/system_info/{startup → url_prefill_startup}/__init__.pyi +2 -1
- bl_ui/properties_data_armature/__init__.pyi +36 -0
- bl_ui/properties_data_curve/__init__.pyi +43 -0
- bl_ui/properties_data_curves/__init__.pyi +37 -0
- bl_ui/properties_data_gpencil/__init__.pyi +36 -0
- bl_ui/properties_data_grease_pencil/__init__.pyi +36 -0
- bl_ui/properties_data_lattice/__init__.pyi +44 -0
- bl_ui/properties_data_light/__init__.pyi +44 -0
- bl_ui/properties_data_lightprobe/__init__.pyi +34 -0
- bl_ui/properties_data_mesh/__init__.pyi +44 -0
- bl_ui/properties_data_metaball/__init__.pyi +36 -0
- bl_ui/properties_data_speaker/__init__.pyi +37 -0
- bl_ui/properties_data_volume/__init__.pyi +37 -0
- bl_ui/properties_freestyle/__init__.pyi +36 -0
- bl_ui/properties_material_gpencil/__init__.pyi +36 -0
- bl_ui/properties_object/__init__.pyi +36 -0
- bl_ui/properties_particle/__init__.pyi +37 -0
- bl_ui/properties_scene/__init__.pyi +36 -0
- bl_ui/properties_texture/__init__.pyi +51 -0
- bl_ui/properties_world/__init__.pyi +44 -0
- bl_ui/space_properties/__init__.pyi +2 -2
- bpy/ops/wm/__init__.pyi +4 -0
- bpy/types/__init__.pyi +29054 -28908
- {fake_bpy_module-20240904.dist-info → fake_bpy_module-20240906.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240904.dist-info → fake_bpy_module-20240906.dist-info}/RECORD +31 -32
- {fake_bpy_module-20240904.dist-info → fake_bpy_module-20240906.dist-info}/WHEEL +1 -1
- {fake_bpy_module-20240904.dist-info → fake_bpy_module-20240906.dist-info}/top_level.txt +0 -1
- freestyle/utils/__init__.pyi +1 -1
- sys_info/py.typed +0 -0
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
+
import bl_ui.space_properties
|
|
4
5
|
import bpy.types
|
|
5
6
|
|
|
6
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
@@ -174,6 +175,41 @@ class VIEWLAYER_PT_freestyle(ViewLayerFreestyleButtonsPanel, bpy.types.Panel):
|
|
|
174
175
|
"""
|
|
175
176
|
...
|
|
176
177
|
|
|
178
|
+
class VIEWLAYER_PT_freestyle_animation(
|
|
179
|
+
bl_ui.space_properties.PropertiesAnimationMixin,
|
|
180
|
+
ViewLayerFreestyleButtonsPanel,
|
|
181
|
+
bpy.types.Panel,
|
|
182
|
+
):
|
|
183
|
+
"""Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
|
|
184
|
+
the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
|
|
185
|
+
"""
|
|
186
|
+
|
|
187
|
+
COMPAT_ENGINES: typing.Any
|
|
188
|
+
bl_context: typing.Any
|
|
189
|
+
bl_label: typing.Any
|
|
190
|
+
bl_options: typing.Any
|
|
191
|
+
bl_order: typing.Any
|
|
192
|
+
bl_region_type: typing.Any
|
|
193
|
+
bl_rna: typing.Any
|
|
194
|
+
bl_space_type: typing.Any
|
|
195
|
+
id_data: typing.Any
|
|
196
|
+
|
|
197
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
198
|
+
"""
|
|
199
|
+
|
|
200
|
+
:return: The RNA type or default when not found.
|
|
201
|
+
:rtype: bpy.types.Struct
|
|
202
|
+
"""
|
|
203
|
+
...
|
|
204
|
+
|
|
205
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
206
|
+
"""
|
|
207
|
+
|
|
208
|
+
:return: The class or default when not found.
|
|
209
|
+
:rtype: typing.Any
|
|
210
|
+
"""
|
|
211
|
+
...
|
|
212
|
+
|
|
177
213
|
class VIEWLAYER_PT_freestyle_edge_detection(
|
|
178
214
|
ViewLayerFreestyleButtonsPanel, bpy.types.Panel
|
|
179
215
|
):
|
|
@@ -2,6 +2,7 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bl_ui.properties_grease_pencil_common
|
|
5
|
+
import bl_ui.space_properties
|
|
5
6
|
import bl_ui.utils
|
|
6
7
|
import bpy.types
|
|
7
8
|
import rna_prop_ui
|
|
@@ -94,6 +95,41 @@ class GPMaterialButtonsPanel:
|
|
|
94
95
|
"""
|
|
95
96
|
...
|
|
96
97
|
|
|
98
|
+
class MATERIAL_PT_gpencil_animation(
|
|
99
|
+
rna_prop_ui.PropertyPanel,
|
|
100
|
+
GPMaterialButtonsPanel,
|
|
101
|
+
bl_ui.space_properties.PropertiesAnimationMixin,
|
|
102
|
+
bpy.types.Panel,
|
|
103
|
+
):
|
|
104
|
+
"""Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
|
|
105
|
+
the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
|
|
106
|
+
"""
|
|
107
|
+
|
|
108
|
+
bl_context: typing.Any
|
|
109
|
+
bl_label: typing.Any
|
|
110
|
+
bl_options: typing.Any
|
|
111
|
+
bl_order: typing.Any
|
|
112
|
+
bl_region_type: typing.Any
|
|
113
|
+
bl_rna: typing.Any
|
|
114
|
+
bl_space_type: typing.Any
|
|
115
|
+
id_data: typing.Any
|
|
116
|
+
|
|
117
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
118
|
+
"""
|
|
119
|
+
|
|
120
|
+
:return: The RNA type or default when not found.
|
|
121
|
+
:rtype: bpy.types.Struct
|
|
122
|
+
"""
|
|
123
|
+
...
|
|
124
|
+
|
|
125
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
126
|
+
"""
|
|
127
|
+
|
|
128
|
+
:return: The class or default when not found.
|
|
129
|
+
:rtype: typing.Any
|
|
130
|
+
"""
|
|
131
|
+
...
|
|
132
|
+
|
|
97
133
|
class MATERIAL_PT_gpencil_custom_props(
|
|
98
134
|
rna_prop_ui.PropertyPanel, GPMaterialButtonsPanel, bpy.types.Panel
|
|
99
135
|
):
|
|
@@ -2,6 +2,7 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bl_ui.properties_animviz
|
|
5
|
+
import bl_ui.space_properties
|
|
5
6
|
import bpy.types
|
|
6
7
|
import rna_prop_ui
|
|
7
8
|
|
|
@@ -36,6 +37,41 @@ class COLLECTION_MT_context_menu(bpy.types.Menu):
|
|
|
36
37
|
"""
|
|
37
38
|
...
|
|
38
39
|
|
|
40
|
+
class OBJECT_PT_animation(
|
|
41
|
+
rna_prop_ui.PropertyPanel,
|
|
42
|
+
ObjectButtonsPanel,
|
|
43
|
+
bl_ui.space_properties.PropertiesAnimationMixin,
|
|
44
|
+
bpy.types.Panel,
|
|
45
|
+
):
|
|
46
|
+
"""Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
|
|
47
|
+
the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
|
|
48
|
+
"""
|
|
49
|
+
|
|
50
|
+
bl_context: typing.Any
|
|
51
|
+
bl_label: typing.Any
|
|
52
|
+
bl_options: typing.Any
|
|
53
|
+
bl_order: typing.Any
|
|
54
|
+
bl_region_type: typing.Any
|
|
55
|
+
bl_rna: typing.Any
|
|
56
|
+
bl_space_type: typing.Any
|
|
57
|
+
id_data: typing.Any
|
|
58
|
+
|
|
59
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
60
|
+
"""
|
|
61
|
+
|
|
62
|
+
:return: The RNA type or default when not found.
|
|
63
|
+
:rtype: bpy.types.Struct
|
|
64
|
+
"""
|
|
65
|
+
...
|
|
66
|
+
|
|
67
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
68
|
+
"""
|
|
69
|
+
|
|
70
|
+
:return: The class or default when not found.
|
|
71
|
+
:rtype: typing.Any
|
|
72
|
+
"""
|
|
73
|
+
...
|
|
74
|
+
|
|
39
75
|
class OBJECT_PT_collections(ObjectButtonsPanel, bpy.types.Panel):
|
|
40
76
|
bl_context: typing.Any
|
|
41
77
|
bl_label: typing.Any
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
+
import bl_ui.space_properties
|
|
4
5
|
import bl_ui.utils
|
|
5
6
|
import bpy.types
|
|
6
7
|
import rna_prop_ui
|
|
@@ -37,6 +38,42 @@ class PARTICLE_MT_context_menu(bpy.types.Menu):
|
|
|
37
38
|
"""
|
|
38
39
|
...
|
|
39
40
|
|
|
41
|
+
class PARTICLE_PT_animation(
|
|
42
|
+
rna_prop_ui.PropertyPanel,
|
|
43
|
+
ParticleButtonsPanel,
|
|
44
|
+
bl_ui.space_properties.PropertiesAnimationMixin,
|
|
45
|
+
bpy.types.Panel,
|
|
46
|
+
):
|
|
47
|
+
"""Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
|
|
48
|
+
the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
|
|
49
|
+
"""
|
|
50
|
+
|
|
51
|
+
COMPAT_ENGINES: typing.Any
|
|
52
|
+
bl_context: typing.Any
|
|
53
|
+
bl_label: typing.Any
|
|
54
|
+
bl_options: typing.Any
|
|
55
|
+
bl_order: typing.Any
|
|
56
|
+
bl_region_type: typing.Any
|
|
57
|
+
bl_rna: typing.Any
|
|
58
|
+
bl_space_type: typing.Any
|
|
59
|
+
id_data: typing.Any
|
|
60
|
+
|
|
61
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
62
|
+
"""
|
|
63
|
+
|
|
64
|
+
:return: The RNA type or default when not found.
|
|
65
|
+
:rtype: bpy.types.Struct
|
|
66
|
+
"""
|
|
67
|
+
...
|
|
68
|
+
|
|
69
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
70
|
+
"""
|
|
71
|
+
|
|
72
|
+
:return: The class or default when not found.
|
|
73
|
+
:rtype: typing.Any
|
|
74
|
+
"""
|
|
75
|
+
...
|
|
76
|
+
|
|
40
77
|
class PARTICLE_PT_boidbrain(ParticleButtonsPanel, bpy.types.Panel):
|
|
41
78
|
COMPAT_ENGINES: typing.Any
|
|
42
79
|
bl_context: typing.Any
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
+
import bl_ui.space_properties
|
|
4
5
|
import bpy.types
|
|
5
6
|
import rna_prop_ui
|
|
6
7
|
|
|
@@ -12,6 +13,41 @@ class SceneButtonsPanel:
|
|
|
12
13
|
bl_region_type: typing.Any
|
|
13
14
|
bl_space_type: typing.Any
|
|
14
15
|
|
|
16
|
+
class SCENE_PT_animation(
|
|
17
|
+
rna_prop_ui.PropertyPanel,
|
|
18
|
+
SceneButtonsPanel,
|
|
19
|
+
bl_ui.space_properties.PropertiesAnimationMixin,
|
|
20
|
+
bpy.types.Panel,
|
|
21
|
+
):
|
|
22
|
+
"""Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
|
|
23
|
+
the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
bl_context: typing.Any
|
|
27
|
+
bl_label: typing.Any
|
|
28
|
+
bl_options: typing.Any
|
|
29
|
+
bl_order: typing.Any
|
|
30
|
+
bl_region_type: typing.Any
|
|
31
|
+
bl_rna: typing.Any
|
|
32
|
+
bl_space_type: typing.Any
|
|
33
|
+
id_data: typing.Any
|
|
34
|
+
|
|
35
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
36
|
+
"""
|
|
37
|
+
|
|
38
|
+
:return: The RNA type or default when not found.
|
|
39
|
+
:rtype: bpy.types.Struct
|
|
40
|
+
"""
|
|
41
|
+
...
|
|
42
|
+
|
|
43
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
44
|
+
"""
|
|
45
|
+
|
|
46
|
+
:return: The class or default when not found.
|
|
47
|
+
:rtype: typing.Any
|
|
48
|
+
"""
|
|
49
|
+
...
|
|
50
|
+
|
|
15
51
|
class SCENE_PT_audio(SceneButtonsPanel, bpy.types.Panel):
|
|
16
52
|
bl_context: typing.Any
|
|
17
53
|
bl_label: typing.Any
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
+
import bl_ui.space_properties
|
|
4
5
|
import bpy.types
|
|
5
6
|
import rna_prop_ui
|
|
6
7
|
|
|
@@ -36,6 +37,56 @@ class TEXTURE_MT_context_menu(bpy.types.Menu):
|
|
|
36
37
|
"""
|
|
37
38
|
...
|
|
38
39
|
|
|
40
|
+
class TEXTURE_PT_animation(
|
|
41
|
+
rna_prop_ui.PropertyPanel,
|
|
42
|
+
TextureButtonsPanel,
|
|
43
|
+
bl_ui.space_properties.PropertiesAnimationMixin,
|
|
44
|
+
bpy.types.Panel,
|
|
45
|
+
):
|
|
46
|
+
"""Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
|
|
47
|
+
the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
|
|
48
|
+
"""
|
|
49
|
+
|
|
50
|
+
bl_context: typing.Any
|
|
51
|
+
bl_label: typing.Any
|
|
52
|
+
bl_options: typing.Any
|
|
53
|
+
bl_order: typing.Any
|
|
54
|
+
bl_region_type: typing.Any
|
|
55
|
+
bl_rna: typing.Any
|
|
56
|
+
bl_space_type: typing.Any
|
|
57
|
+
id_data: typing.Any
|
|
58
|
+
|
|
59
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
60
|
+
"""
|
|
61
|
+
|
|
62
|
+
:return: The RNA type or default when not found.
|
|
63
|
+
:rtype: bpy.types.Struct
|
|
64
|
+
"""
|
|
65
|
+
...
|
|
66
|
+
|
|
67
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
68
|
+
"""
|
|
69
|
+
|
|
70
|
+
:return: The class or default when not found.
|
|
71
|
+
:rtype: typing.Any
|
|
72
|
+
"""
|
|
73
|
+
...
|
|
74
|
+
|
|
75
|
+
def draw(self, context):
|
|
76
|
+
"""
|
|
77
|
+
|
|
78
|
+
:param context:
|
|
79
|
+
"""
|
|
80
|
+
...
|
|
81
|
+
|
|
82
|
+
@classmethod
|
|
83
|
+
def poll(cls, context):
|
|
84
|
+
"""
|
|
85
|
+
|
|
86
|
+
:param context:
|
|
87
|
+
"""
|
|
88
|
+
...
|
|
89
|
+
|
|
39
90
|
class TEXTURE_PT_blend(TextureTypePanel, bpy.types.Panel):
|
|
40
91
|
COMPAT_ENGINES: typing.Any
|
|
41
92
|
bl_context: typing.Any
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
+
import bl_ui.space_properties
|
|
4
5
|
import bpy.types
|
|
5
6
|
import rna_prop_ui
|
|
6
7
|
|
|
@@ -278,6 +279,49 @@ class EEVEE_WORLD_PT_volume(WorldButtonsPanel, bpy.types.Panel):
|
|
|
278
279
|
"""
|
|
279
280
|
...
|
|
280
281
|
|
|
282
|
+
class WORLD_PT_animation(
|
|
283
|
+
rna_prop_ui.PropertyPanel,
|
|
284
|
+
WorldButtonsPanel,
|
|
285
|
+
bl_ui.space_properties.PropertiesAnimationMixin,
|
|
286
|
+
bpy.types.Panel,
|
|
287
|
+
):
|
|
288
|
+
"""Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
|
|
289
|
+
the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
|
|
290
|
+
"""
|
|
291
|
+
|
|
292
|
+
COMPAT_ENGINES: typing.Any
|
|
293
|
+
bl_context: typing.Any
|
|
294
|
+
bl_label: typing.Any
|
|
295
|
+
bl_options: typing.Any
|
|
296
|
+
bl_order: typing.Any
|
|
297
|
+
bl_region_type: typing.Any
|
|
298
|
+
bl_rna: typing.Any
|
|
299
|
+
bl_space_type: typing.Any
|
|
300
|
+
id_data: typing.Any
|
|
301
|
+
|
|
302
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
303
|
+
"""
|
|
304
|
+
|
|
305
|
+
:return: The RNA type or default when not found.
|
|
306
|
+
:rtype: bpy.types.Struct
|
|
307
|
+
"""
|
|
308
|
+
...
|
|
309
|
+
|
|
310
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
311
|
+
"""
|
|
312
|
+
|
|
313
|
+
:return: The class or default when not found.
|
|
314
|
+
:rtype: typing.Any
|
|
315
|
+
"""
|
|
316
|
+
...
|
|
317
|
+
|
|
318
|
+
def draw(self, context):
|
|
319
|
+
"""
|
|
320
|
+
|
|
321
|
+
:param context:
|
|
322
|
+
"""
|
|
323
|
+
...
|
|
324
|
+
|
|
281
325
|
class WORLD_PT_context_world(WorldButtonsPanel, bpy.types.Panel):
|
|
282
326
|
COMPAT_ENGINES: typing.Any
|
|
283
327
|
bl_context: typing.Any
|
|
@@ -116,8 +116,8 @@ class PropertiesAnimationMixin:
|
|
|
116
116
|
"""
|
|
117
117
|
...
|
|
118
118
|
|
|
119
|
-
@
|
|
120
|
-
def draw_action_and_slot_selector(context, layout, animated_id):
|
|
119
|
+
@classmethod
|
|
120
|
+
def draw_action_and_slot_selector(cls, context, layout, animated_id):
|
|
121
121
|
"""
|
|
122
122
|
|
|
123
123
|
:param context:
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -603,12 +603,16 @@ def clear_recent_files(
|
|
|
603
603
|
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
604
604
|
execution_context: int | str | None = None,
|
|
605
605
|
undo: bool | None = None,
|
|
606
|
+
*,
|
|
607
|
+
remove: typing.Literal["ALL", "MISSING"] | None = "ALL",
|
|
606
608
|
):
|
|
607
609
|
"""Clear the recent files list
|
|
608
610
|
|
|
609
611
|
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
610
612
|
:type execution_context: int | str | None
|
|
611
613
|
:type undo: bool | None
|
|
614
|
+
:param remove: Remove
|
|
615
|
+
:type remove: typing.Literal['ALL','MISSING'] | None
|
|
612
616
|
"""
|
|
613
617
|
|
|
614
618
|
...
|