fake-bpy-module 20240905__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.

Files changed (31) hide show
  1. _bpy_internal/system_info/__init__.pyi +3 -2
  2. {sys_info → _bpy_internal/system_info/text_generate_runtime}/__init__.pyi +1 -1
  3. _bpy_internal/system_info/{runtime → url_prefill_runtime}/__init__.pyi +1 -1
  4. _bpy_internal/system_info/{startup → url_prefill_startup}/__init__.pyi +2 -1
  5. bl_ui/properties_data_armature/__init__.pyi +36 -0
  6. bl_ui/properties_data_curve/__init__.pyi +43 -0
  7. bl_ui/properties_data_curves/__init__.pyi +37 -0
  8. bl_ui/properties_data_gpencil/__init__.pyi +36 -0
  9. bl_ui/properties_data_grease_pencil/__init__.pyi +36 -0
  10. bl_ui/properties_data_lattice/__init__.pyi +44 -0
  11. bl_ui/properties_data_light/__init__.pyi +44 -0
  12. bl_ui/properties_data_lightprobe/__init__.pyi +34 -0
  13. bl_ui/properties_data_mesh/__init__.pyi +44 -0
  14. bl_ui/properties_data_metaball/__init__.pyi +36 -0
  15. bl_ui/properties_data_speaker/__init__.pyi +37 -0
  16. bl_ui/properties_data_volume/__init__.pyi +37 -0
  17. bl_ui/properties_freestyle/__init__.pyi +36 -0
  18. bl_ui/properties_material_gpencil/__init__.pyi +36 -0
  19. bl_ui/properties_object/__init__.pyi +36 -0
  20. bl_ui/properties_particle/__init__.pyi +37 -0
  21. bl_ui/properties_scene/__init__.pyi +36 -0
  22. bl_ui/properties_texture/__init__.pyi +51 -0
  23. bl_ui/properties_world/__init__.pyi +44 -0
  24. bl_ui/space_properties/__init__.pyi +2 -2
  25. bpy/types/__init__.pyi +148 -2
  26. {fake_bpy_module-20240905.dist-info → fake_bpy_module-20240906.dist-info}/METADATA +1 -1
  27. {fake_bpy_module-20240905.dist-info → fake_bpy_module-20240906.dist-info}/RECORD +30 -31
  28. {fake_bpy_module-20240905.dist-info → fake_bpy_module-20240906.dist-info}/top_level.txt +0 -1
  29. freestyle/utils/__init__.pyi +1 -1
  30. sys_info/py.typed +0 -0
  31. {fake_bpy_module-20240905.dist-info → fake_bpy_module-20240906.dist-info}/WHEEL +0 -0
@@ -1,8 +1,9 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- from . import runtime as runtime
5
- from . import startup as startup
4
+ from . import text_generate_runtime as text_generate_runtime
5
+ from . import url_prefill_runtime as url_prefill_runtime
6
+ from . import url_prefill_startup as url_prefill_startup
6
7
 
7
8
  GenericType1 = typing.TypeVar("GenericType1")
8
9
  GenericType2 = typing.TypeVar("GenericType2")
@@ -5,4 +5,4 @@ import typing_extensions
5
5
  GenericType1 = typing.TypeVar("GenericType1")
6
6
  GenericType2 = typing.TypeVar("GenericType2")
7
7
 
8
- def write_sysinfo(filepath): ...
8
+ def write(output): ...
@@ -5,4 +5,4 @@ import typing_extensions
5
5
  GenericType1 = typing.TypeVar("GenericType1")
6
6
  GenericType2 = typing.TypeVar("GenericType2")
7
7
 
8
- def url_prefill_from_blender(*, addon_info=None): ...
8
+ def url_from_blender(*, addon_info=None): ...
@@ -5,4 +5,5 @@ import typing_extensions
5
5
  GenericType1 = typing.TypeVar("GenericType1")
6
6
  GenericType2 = typing.TypeVar("GenericType2")
7
7
 
8
- def prefill_bug_report_info(): ...
8
+ def main(): ...
9
+ def url_from_blender(): ...
@@ -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
 
@@ -77,6 +78,41 @@ class ArmatureButtonsPanel:
77
78
  """
78
79
  ...
79
80
 
81
+ class DATA_PT_armature_animation(
82
+ rna_prop_ui.PropertyPanel,
83
+ ArmatureButtonsPanel,
84
+ bl_ui.space_properties.PropertiesAnimationMixin,
85
+ bpy.types.Panel,
86
+ ):
87
+ """Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
88
+ the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
89
+ """
90
+
91
+ bl_context: typing.Any
92
+ bl_label: typing.Any
93
+ bl_options: typing.Any
94
+ bl_order: typing.Any
95
+ bl_region_type: typing.Any
96
+ bl_rna: typing.Any
97
+ bl_space_type: typing.Any
98
+ id_data: typing.Any
99
+
100
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
101
+ """
102
+
103
+ :return: The RNA type or default when not found.
104
+ :rtype: bpy.types.Struct
105
+ """
106
+ ...
107
+
108
+ def bl_rna_get_subclass_py(self) -> typing.Any:
109
+ """
110
+
111
+ :return: The class or default when not found.
112
+ :rtype: typing.Any
113
+ """
114
+ ...
115
+
80
116
  class DATA_PT_bone_collections(ArmatureButtonsPanel, bpy.types.Panel):
81
117
  bl_context: typing.Any
82
118
  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
 
@@ -86,6 +87,48 @@ class DATA_PT_context_curve(CurveButtonsPanel, bpy.types.Panel):
86
87
  """
87
88
  ...
88
89
 
90
+ class DATA_PT_curve_animation(
91
+ rna_prop_ui.PropertyPanel,
92
+ CurveButtonsPanel,
93
+ bl_ui.space_properties.PropertiesAnimationMixin,
94
+ bpy.types.Panel,
95
+ ):
96
+ """Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
97
+ the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
98
+ """
99
+
100
+ bl_context: typing.Any
101
+ bl_label: typing.Any
102
+ bl_options: typing.Any
103
+ bl_order: typing.Any
104
+ bl_region_type: typing.Any
105
+ bl_rna: typing.Any
106
+ bl_space_type: typing.Any
107
+ id_data: typing.Any
108
+
109
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
110
+ """
111
+
112
+ :return: The RNA type or default when not found.
113
+ :rtype: bpy.types.Struct
114
+ """
115
+ ...
116
+
117
+ def bl_rna_get_subclass_py(self) -> typing.Any:
118
+ """
119
+
120
+ :return: The class or default when not found.
121
+ :rtype: typing.Any
122
+ """
123
+ ...
124
+
125
+ def draw(self, context):
126
+ """
127
+
128
+ :param context:
129
+ """
130
+ ...
131
+
89
132
  class DATA_PT_curve_texture_space(CurveButtonsPanel, bpy.types.Panel):
90
133
  COMPAT_ENGINES: typing.Any
91
134
  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
 
@@ -165,6 +166,42 @@ class DATA_PT_context_curves(DataButtonsPanel, bpy.types.Panel):
165
166
  """
166
167
  ...
167
168
 
169
+ class DATA_PT_curves_animation(
170
+ rna_prop_ui.PropertyPanel,
171
+ DataButtonsPanel,
172
+ bl_ui.space_properties.PropertiesAnimationMixin,
173
+ bpy.types.Panel,
174
+ ):
175
+ """Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
176
+ the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
177
+ """
178
+
179
+ COMPAT_ENGINES: typing.Any
180
+ bl_context: typing.Any
181
+ bl_label: typing.Any
182
+ bl_options: typing.Any
183
+ bl_order: typing.Any
184
+ bl_region_type: typing.Any
185
+ bl_rna: typing.Any
186
+ bl_space_type: typing.Any
187
+ id_data: typing.Any
188
+
189
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
190
+ """
191
+
192
+ :return: The RNA type or default when not found.
193
+ :rtype: bpy.types.Struct
194
+ """
195
+ ...
196
+
197
+ def bl_rna_get_subclass_py(self) -> typing.Any:
198
+ """
199
+
200
+ :return: The class or default when not found.
201
+ :rtype: typing.Any
202
+ """
203
+ ...
204
+
168
205
  class DATA_PT_curves_surface(DataButtonsPanel, bpy.types.Panel):
169
206
  COMPAT_ENGINES: typing.Any
170
207
  bl_context: typing.Any
@@ -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 bpy.types
6
7
  import rna_prop_ui
7
8
 
@@ -72,6 +73,41 @@ class DATA_PT_custom_props_gpencil(
72
73
  """
73
74
  ...
74
75
 
76
+ class DATA_PT_gpencil_animation(
77
+ rna_prop_ui.PropertyPanel,
78
+ DataButtonsPanel,
79
+ bl_ui.space_properties.PropertiesAnimationMixin,
80
+ bpy.types.Panel,
81
+ ):
82
+ """Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
83
+ the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
84
+ """
85
+
86
+ bl_context: typing.Any
87
+ bl_label: typing.Any
88
+ bl_options: typing.Any
89
+ bl_order: typing.Any
90
+ bl_region_type: typing.Any
91
+ bl_rna: typing.Any
92
+ bl_space_type: typing.Any
93
+ id_data: typing.Any
94
+
95
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
96
+ """
97
+
98
+ :return: The RNA type or default when not found.
99
+ :rtype: bpy.types.Struct
100
+ """
101
+ ...
102
+
103
+ def bl_rna_get_subclass_py(self) -> typing.Any:
104
+ """
105
+
106
+ :return: The class or default when not found.
107
+ :rtype: typing.Any
108
+ """
109
+ ...
110
+
75
111
  class DATA_PT_gpencil_canvas(DataButtonsPanel, bpy.types.Panel):
76
112
  bl_context: typing.Any
77
113
  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
 
@@ -39,6 +40,41 @@ class DATA_PT_context_grease_pencil(DataButtonsPanel, bpy.types.Panel):
39
40
  """
40
41
  ...
41
42
 
43
+ class DATA_PT_grease_pencil_animation(
44
+ rna_prop_ui.PropertyPanel,
45
+ DataButtonsPanel,
46
+ bl_ui.space_properties.PropertiesAnimationMixin,
47
+ bpy.types.Panel,
48
+ ):
49
+ """Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
50
+ the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
51
+ """
52
+
53
+ bl_context: typing.Any
54
+ bl_label: typing.Any
55
+ bl_options: typing.Any
56
+ bl_order: typing.Any
57
+ bl_region_type: typing.Any
58
+ bl_rna: typing.Any
59
+ bl_space_type: typing.Any
60
+ id_data: typing.Any
61
+
62
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
63
+ """
64
+
65
+ :return: The RNA type or default when not found.
66
+ :rtype: bpy.types.Struct
67
+ """
68
+ ...
69
+
70
+ def bl_rna_get_subclass_py(self) -> typing.Any:
71
+ """
72
+
73
+ :return: The class or default when not found.
74
+ :rtype: typing.Any
75
+ """
76
+ ...
77
+
42
78
  class DATA_PT_grease_pencil_custom_props(
43
79
  rna_prop_ui.PropertyPanel, DataButtonsPanel, bpy.types.Panel
44
80
  ):
@@ -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
 
@@ -103,6 +104,49 @@ class DATA_PT_lattice(DataButtonsPanel, bpy.types.Panel):
103
104
  """
104
105
  ...
105
106
 
107
+ class DATA_PT_lattice_animation(
108
+ rna_prop_ui.PropertyPanel,
109
+ DataButtonsPanel,
110
+ bl_ui.space_properties.PropertiesAnimationMixin,
111
+ bpy.types.Panel,
112
+ ):
113
+ """Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
114
+ the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
115
+ """
116
+
117
+ COMPAT_ENGINES: typing.Any
118
+ bl_context: typing.Any
119
+ bl_label: typing.Any
120
+ bl_options: typing.Any
121
+ bl_order: typing.Any
122
+ bl_region_type: typing.Any
123
+ bl_rna: typing.Any
124
+ bl_space_type: 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
+
135
+ def bl_rna_get_subclass_py(self) -> typing.Any:
136
+ """
137
+
138
+ :return: The class or default when not found.
139
+ :rtype: typing.Any
140
+ """
141
+ ...
142
+
143
+ def draw(self, context):
144
+ """
145
+
146
+ :param context:
147
+ """
148
+ ...
149
+
106
150
  class DataButtonsPanel:
107
151
  bl_context: typing.Any
108
152
  bl_region_type: 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
 
@@ -399,6 +400,49 @@ class DATA_PT_light(DataButtonsPanel, bpy.types.Panel):
399
400
  """
400
401
  ...
401
402
 
403
+ class DATA_PT_light_animation(
404
+ rna_prop_ui.PropertyPanel,
405
+ DataButtonsPanel,
406
+ bl_ui.space_properties.PropertiesAnimationMixin,
407
+ bpy.types.Panel,
408
+ ):
409
+ """Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
410
+ the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
411
+ """
412
+
413
+ COMPAT_ENGINES: typing.Any
414
+ bl_context: typing.Any
415
+ bl_label: typing.Any
416
+ bl_options: typing.Any
417
+ bl_order: typing.Any
418
+ bl_region_type: typing.Any
419
+ bl_rna: typing.Any
420
+ bl_space_type: typing.Any
421
+ id_data: typing.Any
422
+
423
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
424
+ """
425
+
426
+ :return: The RNA type or default when not found.
427
+ :rtype: bpy.types.Struct
428
+ """
429
+ ...
430
+
431
+ def bl_rna_get_subclass_py(self) -> typing.Any:
432
+ """
433
+
434
+ :return: The class or default when not found.
435
+ :rtype: typing.Any
436
+ """
437
+ ...
438
+
439
+ def draw(self, context):
440
+ """
441
+
442
+ :param context:
443
+ """
444
+ ...
445
+
402
446
  class DATA_PT_preview(DataButtonsPanel, bpy.types.Panel):
403
447
  COMPAT_ENGINES: typing.Any
404
448
  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
 
6
7
  GenericType1 = typing.TypeVar("GenericType1")
@@ -71,6 +72,39 @@ class DATA_PT_lightprobe(DataButtonsPanel, bpy.types.Panel):
71
72
  """
72
73
  ...
73
74
 
75
+ class DATA_PT_lightprobe_animation(
76
+ bl_ui.space_properties.PropertiesAnimationMixin, DataButtonsPanel, bpy.types.Panel
77
+ ):
78
+ """Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
79
+ the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
80
+ """
81
+
82
+ COMPAT_ENGINES: typing.Any
83
+ bl_context: typing.Any
84
+ bl_label: typing.Any
85
+ bl_options: typing.Any
86
+ bl_order: typing.Any
87
+ bl_region_type: typing.Any
88
+ bl_rna: typing.Any
89
+ bl_space_type: typing.Any
90
+ id_data: typing.Any
91
+
92
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
93
+ """
94
+
95
+ :return: The RNA type or default when not found.
96
+ :rtype: bpy.types.Struct
97
+ """
98
+ ...
99
+
100
+ def bl_rna_get_subclass_py(self) -> typing.Any:
101
+ """
102
+
103
+ :return: The class or default when not found.
104
+ :rtype: typing.Any
105
+ """
106
+ ...
107
+
74
108
  class DATA_PT_lightprobe_bake(DataButtonsPanel, bpy.types.Panel):
75
109
  COMPAT_ENGINES: typing.Any
76
110
  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
 
@@ -118,6 +119,49 @@ class DATA_PT_customdata(MeshButtonsPanel, bpy.types.Panel):
118
119
  """
119
120
  ...
120
121
 
122
+ class DATA_PT_mesh_animation(
123
+ rna_prop_ui.PropertyPanel,
124
+ MeshButtonsPanel,
125
+ bl_ui.space_properties.PropertiesAnimationMixin,
126
+ bpy.types.Panel,
127
+ ):
128
+ """Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
129
+ the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
130
+ """
131
+
132
+ COMPAT_ENGINES: typing.Any
133
+ bl_context: typing.Any
134
+ bl_label: typing.Any
135
+ bl_options: typing.Any
136
+ bl_order: typing.Any
137
+ bl_region_type: typing.Any
138
+ bl_rna: typing.Any
139
+ bl_space_type: typing.Any
140
+ id_data: typing.Any
141
+
142
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
143
+ """
144
+
145
+ :return: The RNA type or default when not found.
146
+ :rtype: bpy.types.Struct
147
+ """
148
+ ...
149
+
150
+ def bl_rna_get_subclass_py(self) -> typing.Any:
151
+ """
152
+
153
+ :return: The class or default when not found.
154
+ :rtype: typing.Any
155
+ """
156
+ ...
157
+
158
+ def draw(self, context):
159
+ """
160
+
161
+ :param context:
162
+ """
163
+ ...
164
+
121
165
  class DATA_PT_mesh_attributes(MeshButtonsPanel, bpy.types.Panel):
122
166
  COMPAT_ENGINES: typing.Any
123
167
  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
 
@@ -136,6 +137,41 @@ class DATA_PT_metaball(DataButtonsPanel, bpy.types.Panel):
136
137
  """
137
138
  ...
138
139
 
140
+ class DATA_PT_metaball_animation(
141
+ rna_prop_ui.PropertyPanel,
142
+ DataButtonsPanel,
143
+ bl_ui.space_properties.PropertiesAnimationMixin,
144
+ bpy.types.Panel,
145
+ ):
146
+ """Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
147
+ the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
148
+ """
149
+
150
+ bl_context: typing.Any
151
+ bl_label: typing.Any
152
+ bl_options: typing.Any
153
+ bl_order: typing.Any
154
+ bl_region_type: typing.Any
155
+ bl_rna: typing.Any
156
+ bl_space_type: typing.Any
157
+ id_data: typing.Any
158
+
159
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
160
+ """
161
+
162
+ :return: The RNA type or default when not found.
163
+ :rtype: bpy.types.Struct
164
+ """
165
+ ...
166
+
167
+ def bl_rna_get_subclass_py(self) -> typing.Any:
168
+ """
169
+
170
+ :return: The class or default when not found.
171
+ :rtype: typing.Any
172
+ """
173
+ ...
174
+
139
175
  class DATA_PT_metaball_element(DataButtonsPanel, bpy.types.Panel):
140
176
  bl_context: typing.Any
141
177
  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
 
@@ -171,6 +172,42 @@ class DATA_PT_speaker(DataButtonsPanel, bpy.types.Panel):
171
172
  """
172
173
  ...
173
174
 
175
+ class DATA_PT_speaker_animation(
176
+ rna_prop_ui.PropertyPanel,
177
+ DataButtonsPanel,
178
+ bl_ui.space_properties.PropertiesAnimationMixin,
179
+ bpy.types.Panel,
180
+ ):
181
+ """Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
182
+ the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
183
+ """
184
+
185
+ COMPAT_ENGINES: typing.Any
186
+ bl_context: typing.Any
187
+ bl_label: typing.Any
188
+ bl_options: typing.Any
189
+ bl_order: typing.Any
190
+ bl_region_type: typing.Any
191
+ bl_rna: typing.Any
192
+ bl_space_type: typing.Any
193
+ id_data: typing.Any
194
+
195
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
196
+ """
197
+
198
+ :return: The RNA type or default when not found.
199
+ :rtype: bpy.types.Struct
200
+ """
201
+ ...
202
+
203
+ def bl_rna_get_subclass_py(self) -> typing.Any:
204
+ """
205
+
206
+ :return: The class or default when not found.
207
+ :rtype: typing.Any
208
+ """
209
+ ...
210
+
174
211
  class DataButtonsPanel:
175
212
  bl_context: typing.Any
176
213
  bl_region_type: 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
 
@@ -73,6 +74,42 @@ class DATA_PT_custom_props_volume(
73
74
  """
74
75
  ...
75
76
 
77
+ class DATA_PT_volume_animation(
78
+ rna_prop_ui.PropertyPanel,
79
+ DataButtonsPanel,
80
+ bl_ui.space_properties.PropertiesAnimationMixin,
81
+ bpy.types.Panel,
82
+ ):
83
+ """Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
84
+ the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
85
+ """
86
+
87
+ COMPAT_ENGINES: typing.Any
88
+ bl_context: typing.Any
89
+ bl_label: typing.Any
90
+ bl_options: typing.Any
91
+ bl_order: typing.Any
92
+ bl_region_type: typing.Any
93
+ bl_rna: typing.Any
94
+ bl_space_type: typing.Any
95
+ id_data: typing.Any
96
+
97
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
98
+ """
99
+
100
+ :return: The RNA type or default when not found.
101
+ :rtype: bpy.types.Struct
102
+ """
103
+ ...
104
+
105
+ def bl_rna_get_subclass_py(self) -> typing.Any:
106
+ """
107
+
108
+ :return: The class or default when not found.
109
+ :rtype: typing.Any
110
+ """
111
+ ...
112
+
76
113
  class DATA_PT_volume_file(DataButtonsPanel, bpy.types.Panel):
77
114
  COMPAT_ENGINES: typing.Any
78
115
  bl_context: typing.Any