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
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bl_ui.properties_animviz
|
|
5
4
|
import bpy.types
|
|
6
5
|
import bpy_types
|
|
7
|
-
import rna_prop_ui
|
|
8
6
|
|
|
9
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
10
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
@@ -78,9 +76,7 @@ class ArmatureButtonsPanel:
|
|
|
78
76
|
"""
|
|
79
77
|
...
|
|
80
78
|
|
|
81
|
-
class DATA_PT_bone_collections(
|
|
82
|
-
bpy.types.Panel, ArmatureButtonsPanel, bpy_types._GenericUI
|
|
83
|
-
):
|
|
79
|
+
class DATA_PT_bone_collections(bpy.types.Panel, bpy_types._GenericUI):
|
|
84
80
|
bl_context: typing.Any
|
|
85
81
|
bl_label: typing.Any
|
|
86
82
|
bl_region_type: typing.Any
|
|
@@ -111,7 +107,7 @@ class DATA_PT_bone_collections(
|
|
|
111
107
|
"""
|
|
112
108
|
...
|
|
113
109
|
|
|
114
|
-
class DATA_PT_context_arm(bpy.types.Panel,
|
|
110
|
+
class DATA_PT_context_arm(bpy.types.Panel, bpy_types._GenericUI):
|
|
115
111
|
bl_context: typing.Any
|
|
116
112
|
bl_label: typing.Any
|
|
117
113
|
bl_options: typing.Any
|
|
@@ -143,12 +139,7 @@ class DATA_PT_context_arm(bpy.types.Panel, ArmatureButtonsPanel, bpy_types._Gene
|
|
|
143
139
|
"""
|
|
144
140
|
...
|
|
145
141
|
|
|
146
|
-
class DATA_PT_custom_props_arm(
|
|
147
|
-
bpy.types.Panel,
|
|
148
|
-
ArmatureButtonsPanel,
|
|
149
|
-
rna_prop_ui.PropertyPanel,
|
|
150
|
-
bpy_types._GenericUI,
|
|
151
|
-
):
|
|
142
|
+
class DATA_PT_custom_props_arm(bpy.types.Panel, bpy_types._GenericUI):
|
|
152
143
|
"""The subclass should have its own poll function
|
|
153
144
|
and the variable '_context_path' MUST be set.
|
|
154
145
|
"""
|
|
@@ -179,12 +170,7 @@ class DATA_PT_custom_props_arm(
|
|
|
179
170
|
"""
|
|
180
171
|
...
|
|
181
172
|
|
|
182
|
-
class DATA_PT_custom_props_bcoll(
|
|
183
|
-
bpy.types.Panel,
|
|
184
|
-
ArmatureButtonsPanel,
|
|
185
|
-
rna_prop_ui.PropertyPanel,
|
|
186
|
-
bpy_types._GenericUI,
|
|
187
|
-
):
|
|
173
|
+
class DATA_PT_custom_props_bcoll(bpy.types.Panel, bpy_types._GenericUI):
|
|
188
174
|
"""The subclass should have its own poll function
|
|
189
175
|
and the variable '_context_path' MUST be set.
|
|
190
176
|
"""
|
|
@@ -224,7 +210,7 @@ class DATA_PT_custom_props_bcoll(
|
|
|
224
210
|
"""
|
|
225
211
|
...
|
|
226
212
|
|
|
227
|
-
class DATA_PT_display(bpy.types.Panel,
|
|
213
|
+
class DATA_PT_display(bpy.types.Panel, bpy_types._GenericUI):
|
|
228
214
|
bl_context: typing.Any
|
|
229
215
|
bl_label: typing.Any
|
|
230
216
|
bl_options: typing.Any
|
|
@@ -256,9 +242,7 @@ class DATA_PT_display(bpy.types.Panel, ArmatureButtonsPanel, bpy_types._GenericU
|
|
|
256
242
|
"""
|
|
257
243
|
...
|
|
258
244
|
|
|
259
|
-
class DATA_PT_iksolver_itasc(
|
|
260
|
-
bpy.types.Panel, ArmatureButtonsPanel, bpy_types._GenericUI
|
|
261
|
-
):
|
|
245
|
+
class DATA_PT_iksolver_itasc(bpy.types.Panel, bpy_types._GenericUI):
|
|
262
246
|
bl_context: typing.Any
|
|
263
247
|
bl_label: typing.Any
|
|
264
248
|
bl_options: typing.Any
|
|
@@ -298,11 +282,7 @@ class DATA_PT_iksolver_itasc(
|
|
|
298
282
|
"""
|
|
299
283
|
...
|
|
300
284
|
|
|
301
|
-
class DATA_PT_motion_paths(
|
|
302
|
-
bpy.types.Panel,
|
|
303
|
-
bl_ui.properties_animviz.MotionPathButtonsPanel,
|
|
304
|
-
bpy_types._GenericUI,
|
|
305
|
-
):
|
|
285
|
+
class DATA_PT_motion_paths(bpy.types.Panel, bpy_types._GenericUI):
|
|
306
286
|
bl_context: typing.Any
|
|
307
287
|
bl_label: typing.Any
|
|
308
288
|
bl_options: typing.Any
|
|
@@ -342,11 +322,7 @@ class DATA_PT_motion_paths(
|
|
|
342
322
|
"""
|
|
343
323
|
...
|
|
344
324
|
|
|
345
|
-
class DATA_PT_motion_paths_display(
|
|
346
|
-
bpy.types.Panel,
|
|
347
|
-
bl_ui.properties_animviz.MotionPathButtonsPanel_display,
|
|
348
|
-
bpy_types._GenericUI,
|
|
349
|
-
):
|
|
325
|
+
class DATA_PT_motion_paths_display(bpy.types.Panel, bpy_types._GenericUI):
|
|
350
326
|
bl_context: typing.Any
|
|
351
327
|
bl_label: typing.Any
|
|
352
328
|
bl_options: typing.Any
|
|
@@ -387,7 +363,7 @@ class DATA_PT_motion_paths_display(
|
|
|
387
363
|
"""
|
|
388
364
|
...
|
|
389
365
|
|
|
390
|
-
class DATA_PT_pose(bpy.types.Panel,
|
|
366
|
+
class DATA_PT_pose(bpy.types.Panel, bpy_types._GenericUI):
|
|
391
367
|
bl_context: typing.Any
|
|
392
368
|
bl_label: typing.Any
|
|
393
369
|
bl_region_type: typing.Any
|
|
@@ -3,12 +3,11 @@ 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")
|
|
10
9
|
|
|
11
|
-
class BONE_PT_collections(bpy.types.Panel,
|
|
10
|
+
class BONE_PT_collections(bpy.types.Panel, bpy_types._GenericUI):
|
|
12
11
|
bl_context: typing.Any
|
|
13
12
|
bl_label: typing.Any
|
|
14
13
|
bl_parent_id: typing.Any
|
|
@@ -48,7 +47,7 @@ class BONE_PT_collections(bpy.types.Panel, BoneButtonsPanel, bpy_types._GenericU
|
|
|
48
47
|
"""
|
|
49
48
|
...
|
|
50
49
|
|
|
51
|
-
class BONE_PT_context_bone(bpy.types.Panel,
|
|
50
|
+
class BONE_PT_context_bone(bpy.types.Panel, bpy_types._GenericUI):
|
|
52
51
|
bl_context: typing.Any
|
|
53
52
|
bl_label: typing.Any
|
|
54
53
|
bl_options: typing.Any
|
|
@@ -80,7 +79,7 @@ class BONE_PT_context_bone(bpy.types.Panel, BoneButtonsPanel, bpy_types._Generic
|
|
|
80
79
|
"""
|
|
81
80
|
...
|
|
82
81
|
|
|
83
|
-
class BONE_PT_curved(bpy.types.Panel,
|
|
82
|
+
class BONE_PT_curved(bpy.types.Panel, bpy_types._GenericUI):
|
|
84
83
|
bl_context: typing.Any
|
|
85
84
|
bl_label: typing.Any
|
|
86
85
|
bl_options: typing.Any
|
|
@@ -112,9 +111,7 @@ class BONE_PT_curved(bpy.types.Panel, BoneButtonsPanel, bpy_types._GenericUI):
|
|
|
112
111
|
"""
|
|
113
112
|
...
|
|
114
113
|
|
|
115
|
-
class BONE_PT_custom_props(
|
|
116
|
-
bpy.types.Panel, BoneButtonsPanel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
|
|
117
|
-
):
|
|
114
|
+
class BONE_PT_custom_props(bpy.types.Panel, bpy_types._GenericUI):
|
|
118
115
|
"""The subclass should have its own poll function
|
|
119
116
|
and the variable '_context_path' MUST be set.
|
|
120
117
|
"""
|
|
@@ -152,7 +149,7 @@ class BONE_PT_custom_props(
|
|
|
152
149
|
"""
|
|
153
150
|
...
|
|
154
151
|
|
|
155
|
-
class BONE_PT_deform(bpy.types.Panel,
|
|
152
|
+
class BONE_PT_deform(bpy.types.Panel, bpy_types._GenericUI):
|
|
156
153
|
bl_context: typing.Any
|
|
157
154
|
bl_label: typing.Any
|
|
158
155
|
bl_options: typing.Any
|
|
@@ -191,7 +188,7 @@ class BONE_PT_deform(bpy.types.Panel, BoneButtonsPanel, bpy_types._GenericUI):
|
|
|
191
188
|
"""
|
|
192
189
|
...
|
|
193
190
|
|
|
194
|
-
class BONE_PT_display(bpy.types.Panel,
|
|
191
|
+
class BONE_PT_display(bpy.types.Panel, bpy_types._GenericUI):
|
|
195
192
|
bl_context: typing.Any
|
|
196
193
|
bl_label: typing.Any
|
|
197
194
|
bl_options: typing.Any
|
|
@@ -255,9 +252,7 @@ class BONE_PT_display(bpy.types.Panel, BoneButtonsPanel, bpy_types._GenericUI):
|
|
|
255
252
|
"""
|
|
256
253
|
...
|
|
257
254
|
|
|
258
|
-
class BONE_PT_display_custom_shape(
|
|
259
|
-
bpy.types.Panel, BoneButtonsPanel, bpy_types._GenericUI
|
|
260
|
-
):
|
|
255
|
+
class BONE_PT_display_custom_shape(bpy.types.Panel, bpy_types._GenericUI):
|
|
261
256
|
bl_context: typing.Any
|
|
262
257
|
bl_label: typing.Any
|
|
263
258
|
bl_parent_id: typing.Any
|
|
@@ -297,9 +292,7 @@ class BONE_PT_display_custom_shape(
|
|
|
297
292
|
"""
|
|
298
293
|
...
|
|
299
294
|
|
|
300
|
-
class BONE_PT_inverse_kinematics(
|
|
301
|
-
bpy.types.Panel, BoneButtonsPanel, bpy_types._GenericUI
|
|
302
|
-
):
|
|
295
|
+
class BONE_PT_inverse_kinematics(bpy.types.Panel, bpy_types._GenericUI):
|
|
303
296
|
bl_context: typing.Any
|
|
304
297
|
bl_label: typing.Any
|
|
305
298
|
bl_options: typing.Any
|
|
@@ -339,7 +332,7 @@ class BONE_PT_inverse_kinematics(
|
|
|
339
332
|
"""
|
|
340
333
|
...
|
|
341
334
|
|
|
342
|
-
class BONE_PT_relations(bpy.types.Panel,
|
|
335
|
+
class BONE_PT_relations(bpy.types.Panel, bpy_types._GenericUI):
|
|
343
336
|
bl_context: typing.Any
|
|
344
337
|
bl_label: typing.Any
|
|
345
338
|
bl_options: typing.Any
|
|
@@ -371,7 +364,7 @@ class BONE_PT_relations(bpy.types.Panel, BoneButtonsPanel, bpy_types._GenericUI)
|
|
|
371
364
|
"""
|
|
372
365
|
...
|
|
373
366
|
|
|
374
|
-
class BONE_PT_transform(bpy.types.Panel,
|
|
367
|
+
class BONE_PT_transform(bpy.types.Panel, bpy_types._GenericUI):
|
|
375
368
|
bl_context: typing.Any
|
|
376
369
|
bl_label: typing.Any
|
|
377
370
|
bl_region_type: typing.Any
|
|
@@ -1,15 +1,13 @@
|
|
|
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
|
-
import rna_prop_ui
|
|
8
6
|
|
|
9
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
10
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
11
9
|
|
|
12
|
-
class CAMERA_PT_presets(bpy.types.Panel,
|
|
10
|
+
class CAMERA_PT_presets(bpy.types.Panel, bpy_types._GenericUI):
|
|
13
11
|
COMPAT_ENGINES: typing.Any
|
|
14
12
|
bl_label: typing.Any
|
|
15
13
|
bl_region_type: typing.Any
|
|
@@ -36,9 +34,7 @@ class CAMERA_PT_presets(bpy.types.Panel, bl_ui.utils.PresetPanel, bpy_types._Gen
|
|
|
36
34
|
"""
|
|
37
35
|
...
|
|
38
36
|
|
|
39
|
-
class CAMERA_PT_safe_areas_presets(
|
|
40
|
-
bpy.types.Panel, bl_ui.utils.PresetPanel, bpy_types._GenericUI
|
|
41
|
-
):
|
|
37
|
+
class CAMERA_PT_safe_areas_presets(bpy.types.Panel, bpy_types._GenericUI):
|
|
42
38
|
COMPAT_ENGINES: typing.Any
|
|
43
39
|
bl_label: typing.Any
|
|
44
40
|
bl_region_type: typing.Any
|
|
@@ -78,7 +74,7 @@ class CameraButtonsPanel:
|
|
|
78
74
|
"""
|
|
79
75
|
...
|
|
80
76
|
|
|
81
|
-
class DATA_PT_camera(bpy.types.Panel,
|
|
77
|
+
class DATA_PT_camera(bpy.types.Panel, bpy_types._GenericUI):
|
|
82
78
|
COMPAT_ENGINES: typing.Any
|
|
83
79
|
bl_context: typing.Any
|
|
84
80
|
bl_label: typing.Any
|
|
@@ -118,9 +114,7 @@ class DATA_PT_camera(bpy.types.Panel, CameraButtonsPanel, bpy_types._GenericUI):
|
|
|
118
114
|
"""
|
|
119
115
|
...
|
|
120
116
|
|
|
121
|
-
class DATA_PT_camera_background_image(
|
|
122
|
-
bpy.types.Panel, CameraButtonsPanel, bpy_types._GenericUI
|
|
123
|
-
):
|
|
117
|
+
class DATA_PT_camera_background_image(bpy.types.Panel, bpy_types._GenericUI):
|
|
124
118
|
COMPAT_ENGINES: typing.Any
|
|
125
119
|
bl_context: typing.Any
|
|
126
120
|
bl_label: typing.Any
|
|
@@ -160,7 +154,7 @@ class DATA_PT_camera_background_image(
|
|
|
160
154
|
"""
|
|
161
155
|
...
|
|
162
156
|
|
|
163
|
-
class DATA_PT_camera_display(bpy.types.Panel,
|
|
157
|
+
class DATA_PT_camera_display(bpy.types.Panel, bpy_types._GenericUI):
|
|
164
158
|
COMPAT_ENGINES: typing.Any
|
|
165
159
|
bl_context: typing.Any
|
|
166
160
|
bl_label: typing.Any
|
|
@@ -193,9 +187,7 @@ class DATA_PT_camera_display(bpy.types.Panel, CameraButtonsPanel, bpy_types._Gen
|
|
|
193
187
|
"""
|
|
194
188
|
...
|
|
195
189
|
|
|
196
|
-
class DATA_PT_camera_display_composition_guides(
|
|
197
|
-
bpy.types.Panel, CameraButtonsPanel, bpy_types._GenericUI
|
|
198
|
-
):
|
|
190
|
+
class DATA_PT_camera_display_composition_guides(bpy.types.Panel, bpy_types._GenericUI):
|
|
199
191
|
COMPAT_ENGINES: typing.Any
|
|
200
192
|
bl_context: typing.Any
|
|
201
193
|
bl_label: typing.Any
|
|
@@ -229,7 +221,7 @@ class DATA_PT_camera_display_composition_guides(
|
|
|
229
221
|
"""
|
|
230
222
|
...
|
|
231
223
|
|
|
232
|
-
class DATA_PT_camera_dof(bpy.types.Panel,
|
|
224
|
+
class DATA_PT_camera_dof(bpy.types.Panel, bpy_types._GenericUI):
|
|
233
225
|
COMPAT_ENGINES: typing.Any
|
|
234
226
|
bl_context: typing.Any
|
|
235
227
|
bl_label: typing.Any
|
|
@@ -269,9 +261,7 @@ class DATA_PT_camera_dof(bpy.types.Panel, CameraButtonsPanel, bpy_types._Generic
|
|
|
269
261
|
"""
|
|
270
262
|
...
|
|
271
263
|
|
|
272
|
-
class DATA_PT_camera_dof_aperture(
|
|
273
|
-
bpy.types.Panel, CameraButtonsPanel, bpy_types._GenericUI
|
|
274
|
-
):
|
|
264
|
+
class DATA_PT_camera_dof_aperture(bpy.types.Panel, bpy_types._GenericUI):
|
|
275
265
|
COMPAT_ENGINES: typing.Any
|
|
276
266
|
bl_context: typing.Any
|
|
277
267
|
bl_label: typing.Any
|
|
@@ -304,9 +294,7 @@ class DATA_PT_camera_dof_aperture(
|
|
|
304
294
|
"""
|
|
305
295
|
...
|
|
306
296
|
|
|
307
|
-
class DATA_PT_camera_safe_areas(
|
|
308
|
-
bpy.types.Panel, CameraButtonsPanel, bpy_types._GenericUI
|
|
309
|
-
):
|
|
297
|
+
class DATA_PT_camera_safe_areas(bpy.types.Panel, bpy_types._GenericUI):
|
|
310
298
|
COMPAT_ENGINES: typing.Any
|
|
311
299
|
bl_context: typing.Any
|
|
312
300
|
bl_label: typing.Any
|
|
@@ -353,9 +341,7 @@ class DATA_PT_camera_safe_areas(
|
|
|
353
341
|
"""
|
|
354
342
|
...
|
|
355
343
|
|
|
356
|
-
class DATA_PT_camera_safe_areas_center_cut(
|
|
357
|
-
bpy.types.Panel, CameraButtonsPanel, bpy_types._GenericUI
|
|
358
|
-
):
|
|
344
|
+
class DATA_PT_camera_safe_areas_center_cut(bpy.types.Panel, bpy_types._GenericUI):
|
|
359
345
|
COMPAT_ENGINES: typing.Any
|
|
360
346
|
bl_context: typing.Any
|
|
361
347
|
bl_label: typing.Any
|
|
@@ -396,9 +382,7 @@ class DATA_PT_camera_safe_areas_center_cut(
|
|
|
396
382
|
"""
|
|
397
383
|
...
|
|
398
384
|
|
|
399
|
-
class DATA_PT_camera_stereoscopy(
|
|
400
|
-
bpy.types.Panel, CameraButtonsPanel, bpy_types._GenericUI
|
|
401
|
-
):
|
|
385
|
+
class DATA_PT_camera_stereoscopy(bpy.types.Panel, bpy_types._GenericUI):
|
|
402
386
|
COMPAT_ENGINES: typing.Any
|
|
403
387
|
bl_context: typing.Any
|
|
404
388
|
bl_label: typing.Any
|
|
@@ -438,7 +422,7 @@ class DATA_PT_camera_stereoscopy(
|
|
|
438
422
|
"""
|
|
439
423
|
...
|
|
440
424
|
|
|
441
|
-
class DATA_PT_context_camera(bpy.types.Panel,
|
|
425
|
+
class DATA_PT_context_camera(bpy.types.Panel, bpy_types._GenericUI):
|
|
442
426
|
COMPAT_ENGINES: typing.Any
|
|
443
427
|
bl_context: typing.Any
|
|
444
428
|
bl_label: typing.Any
|
|
@@ -471,9 +455,7 @@ class DATA_PT_context_camera(bpy.types.Panel, CameraButtonsPanel, bpy_types._Gen
|
|
|
471
455
|
"""
|
|
472
456
|
...
|
|
473
457
|
|
|
474
|
-
class DATA_PT_custom_props_camera(
|
|
475
|
-
bpy.types.Panel, CameraButtonsPanel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
|
|
476
|
-
):
|
|
458
|
+
class DATA_PT_custom_props_camera(bpy.types.Panel, bpy_types._GenericUI):
|
|
477
459
|
"""The subclass should have its own poll function
|
|
478
460
|
and the variable '_context_path' MUST be set.
|
|
479
461
|
"""
|
|
@@ -504,7 +486,7 @@ class DATA_PT_custom_props_camera(
|
|
|
504
486
|
"""
|
|
505
487
|
...
|
|
506
488
|
|
|
507
|
-
class DATA_PT_lens(bpy.types.Panel,
|
|
489
|
+
class DATA_PT_lens(bpy.types.Panel, bpy_types._GenericUI):
|
|
508
490
|
COMPAT_ENGINES: typing.Any
|
|
509
491
|
bl_context: typing.Any
|
|
510
492
|
bl_label: 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")
|
|
@@ -21,9 +20,61 @@ class CurveButtonsPanel:
|
|
|
21
20
|
"""
|
|
22
21
|
...
|
|
23
22
|
|
|
24
|
-
class
|
|
25
|
-
|
|
26
|
-
|
|
23
|
+
class CurveButtonsPanelActive:
|
|
24
|
+
"""Same as above but for curves only"""
|
|
25
|
+
|
|
26
|
+
bl_context: typing.Any
|
|
27
|
+
bl_region_type: typing.Any
|
|
28
|
+
bl_space_type: typing.Any
|
|
29
|
+
|
|
30
|
+
@classmethod
|
|
31
|
+
def poll(cls, context):
|
|
32
|
+
"""
|
|
33
|
+
|
|
34
|
+
:param context:
|
|
35
|
+
"""
|
|
36
|
+
...
|
|
37
|
+
|
|
38
|
+
class CurveButtonsPanelCurve:
|
|
39
|
+
bl_context: typing.Any
|
|
40
|
+
bl_region_type: typing.Any
|
|
41
|
+
bl_space_type: typing.Any
|
|
42
|
+
|
|
43
|
+
@classmethod
|
|
44
|
+
def poll(cls, context):
|
|
45
|
+
"""
|
|
46
|
+
|
|
47
|
+
:param context:
|
|
48
|
+
"""
|
|
49
|
+
...
|
|
50
|
+
|
|
51
|
+
class CurveButtonsPanelSurface:
|
|
52
|
+
bl_context: typing.Any
|
|
53
|
+
bl_region_type: typing.Any
|
|
54
|
+
bl_space_type: typing.Any
|
|
55
|
+
|
|
56
|
+
@classmethod
|
|
57
|
+
def poll(cls, context):
|
|
58
|
+
"""
|
|
59
|
+
|
|
60
|
+
:param context:
|
|
61
|
+
"""
|
|
62
|
+
...
|
|
63
|
+
|
|
64
|
+
class CurveButtonsPanelText:
|
|
65
|
+
bl_context: typing.Any
|
|
66
|
+
bl_region_type: typing.Any
|
|
67
|
+
bl_space_type: typing.Any
|
|
68
|
+
|
|
69
|
+
@classmethod
|
|
70
|
+
def poll(cls, context):
|
|
71
|
+
"""
|
|
72
|
+
|
|
73
|
+
:param context:
|
|
74
|
+
"""
|
|
75
|
+
...
|
|
76
|
+
|
|
77
|
+
class DATA_PT_active_spline(bpy.types.Panel, CurveButtonsPanel, bpy_types._GenericUI):
|
|
27
78
|
"""Same as above but for curves only"""
|
|
28
79
|
|
|
29
80
|
bl_context: typing.Any
|
|
@@ -57,7 +108,7 @@ class DATA_PT_active_spline(
|
|
|
57
108
|
"""
|
|
58
109
|
...
|
|
59
110
|
|
|
60
|
-
class DATA_PT_context_curve(bpy.types.Panel,
|
|
111
|
+
class DATA_PT_context_curve(bpy.types.Panel, bpy_types._GenericUI):
|
|
61
112
|
bl_context: typing.Any
|
|
62
113
|
bl_label: typing.Any
|
|
63
114
|
bl_options: typing.Any
|
|
@@ -89,9 +140,7 @@ class DATA_PT_context_curve(bpy.types.Panel, CurveButtonsPanel, bpy_types._Gener
|
|
|
89
140
|
"""
|
|
90
141
|
...
|
|
91
142
|
|
|
92
|
-
class DATA_PT_curve_texture_space(
|
|
93
|
-
bpy.types.Panel, CurveButtonsPanel, bpy_types._GenericUI
|
|
94
|
-
):
|
|
143
|
+
class DATA_PT_curve_texture_space(bpy.types.Panel, bpy_types._GenericUI):
|
|
95
144
|
COMPAT_ENGINES: typing.Any
|
|
96
145
|
bl_context: typing.Any
|
|
97
146
|
bl_label: typing.Any
|
|
@@ -124,9 +173,7 @@ class DATA_PT_curve_texture_space(
|
|
|
124
173
|
"""
|
|
125
174
|
...
|
|
126
175
|
|
|
127
|
-
class DATA_PT_custom_props_curve(
|
|
128
|
-
bpy.types.Panel, CurveButtonsPanel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
|
|
129
|
-
):
|
|
176
|
+
class DATA_PT_custom_props_curve(bpy.types.Panel, bpy_types._GenericUI):
|
|
130
177
|
"""The subclass should have its own poll function
|
|
131
178
|
and the variable '_context_path' MUST be set.
|
|
132
179
|
"""
|
|
@@ -157,9 +204,7 @@ class DATA_PT_custom_props_curve(
|
|
|
157
204
|
"""
|
|
158
205
|
...
|
|
159
206
|
|
|
160
|
-
class DATA_PT_font(
|
|
161
|
-
bpy.types.Panel, CurveButtonsPanelText, CurveButtonsPanel, bpy_types._GenericUI
|
|
162
|
-
):
|
|
207
|
+
class DATA_PT_font(bpy.types.Panel, CurveButtonsPanel, bpy_types._GenericUI):
|
|
163
208
|
bl_context: typing.Any
|
|
164
209
|
bl_label: typing.Any
|
|
165
210
|
bl_options: typing.Any
|
|
@@ -191,9 +236,7 @@ class DATA_PT_font(
|
|
|
191
236
|
"""
|
|
192
237
|
...
|
|
193
238
|
|
|
194
|
-
class DATA_PT_font_transform(
|
|
195
|
-
bpy.types.Panel, CurveButtonsPanelText, CurveButtonsPanel, bpy_types._GenericUI
|
|
196
|
-
):
|
|
239
|
+
class DATA_PT_font_transform(bpy.types.Panel, CurveButtonsPanel, bpy_types._GenericUI):
|
|
197
240
|
bl_context: typing.Any
|
|
198
241
|
bl_label: typing.Any
|
|
199
242
|
bl_parent_id: typing.Any
|
|
@@ -225,9 +268,7 @@ class DATA_PT_font_transform(
|
|
|
225
268
|
"""
|
|
226
269
|
...
|
|
227
270
|
|
|
228
|
-
class DATA_PT_geometry_curve(
|
|
229
|
-
bpy.types.Panel, CurveButtonsPanelCurve, CurveButtonsPanel, bpy_types._GenericUI
|
|
230
|
-
):
|
|
271
|
+
class DATA_PT_geometry_curve(bpy.types.Panel, CurveButtonsPanel, bpy_types._GenericUI):
|
|
231
272
|
bl_context: typing.Any
|
|
232
273
|
bl_label: typing.Any
|
|
233
274
|
bl_options: typing.Any
|
|
@@ -268,7 +309,7 @@ class DATA_PT_geometry_curve(
|
|
|
268
309
|
...
|
|
269
310
|
|
|
270
311
|
class DATA_PT_geometry_curve_bevel(
|
|
271
|
-
bpy.types.Panel,
|
|
312
|
+
bpy.types.Panel, CurveButtonsPanel, bpy_types._GenericUI
|
|
272
313
|
):
|
|
273
314
|
bl_context: typing.Any
|
|
274
315
|
bl_label: typing.Any
|
|
@@ -310,7 +351,7 @@ class DATA_PT_geometry_curve_bevel(
|
|
|
310
351
|
...
|
|
311
352
|
|
|
312
353
|
class DATA_PT_geometry_curve_start_end(
|
|
313
|
-
bpy.types.Panel,
|
|
354
|
+
bpy.types.Panel, CurveButtonsPanel, bpy_types._GenericUI
|
|
314
355
|
):
|
|
315
356
|
bl_context: typing.Any
|
|
316
357
|
bl_label: typing.Any
|
|
@@ -352,9 +393,7 @@ class DATA_PT_geometry_curve_start_end(
|
|
|
352
393
|
"""
|
|
353
394
|
...
|
|
354
395
|
|
|
355
|
-
class DATA_PT_paragraph(
|
|
356
|
-
bpy.types.Panel, CurveButtonsPanelText, CurveButtonsPanel, bpy_types._GenericUI
|
|
357
|
-
):
|
|
396
|
+
class DATA_PT_paragraph(bpy.types.Panel, CurveButtonsPanel, bpy_types._GenericUI):
|
|
358
397
|
bl_context: typing.Any
|
|
359
398
|
bl_label: typing.Any
|
|
360
399
|
bl_region_type: typing.Any
|
|
@@ -386,7 +425,7 @@ class DATA_PT_paragraph(
|
|
|
386
425
|
...
|
|
387
426
|
|
|
388
427
|
class DATA_PT_paragraph_alignment(
|
|
389
|
-
bpy.types.Panel,
|
|
428
|
+
bpy.types.Panel, CurveButtonsPanel, bpy_types._GenericUI
|
|
390
429
|
):
|
|
391
430
|
bl_context: typing.Any
|
|
392
431
|
bl_label: typing.Any
|
|
@@ -420,7 +459,7 @@ class DATA_PT_paragraph_alignment(
|
|
|
420
459
|
...
|
|
421
460
|
|
|
422
461
|
class DATA_PT_paragraph_spacing(
|
|
423
|
-
bpy.types.Panel,
|
|
462
|
+
bpy.types.Panel, CurveButtonsPanel, bpy_types._GenericUI
|
|
424
463
|
):
|
|
425
464
|
bl_context: typing.Any
|
|
426
465
|
bl_label: typing.Any
|
|
@@ -453,9 +492,7 @@ class DATA_PT_paragraph_spacing(
|
|
|
453
492
|
"""
|
|
454
493
|
...
|
|
455
494
|
|
|
456
|
-
class DATA_PT_pathanim(
|
|
457
|
-
bpy.types.Panel, CurveButtonsPanelCurve, CurveButtonsPanel, bpy_types._GenericUI
|
|
458
|
-
):
|
|
495
|
+
class DATA_PT_pathanim(bpy.types.Panel, CurveButtonsPanel, bpy_types._GenericUI):
|
|
459
496
|
bl_context: typing.Any
|
|
460
497
|
bl_label: typing.Any
|
|
461
498
|
bl_options: typing.Any
|
|
@@ -494,7 +531,7 @@ class DATA_PT_pathanim(
|
|
|
494
531
|
"""
|
|
495
532
|
...
|
|
496
533
|
|
|
497
|
-
class DATA_PT_shape_curve(bpy.types.Panel,
|
|
534
|
+
class DATA_PT_shape_curve(bpy.types.Panel, bpy_types._GenericUI):
|
|
498
535
|
bl_context: typing.Any
|
|
499
536
|
bl_label: typing.Any
|
|
500
537
|
bl_region_type: typing.Any
|
|
@@ -525,9 +562,7 @@ class DATA_PT_shape_curve(bpy.types.Panel, CurveButtonsPanel, bpy_types._Generic
|
|
|
525
562
|
"""
|
|
526
563
|
...
|
|
527
564
|
|
|
528
|
-
class DATA_PT_text_boxes(
|
|
529
|
-
bpy.types.Panel, CurveButtonsPanelText, CurveButtonsPanel, bpy_types._GenericUI
|
|
530
|
-
):
|
|
565
|
+
class DATA_PT_text_boxes(bpy.types.Panel, CurveButtonsPanel, bpy_types._GenericUI):
|
|
531
566
|
bl_context: typing.Any
|
|
532
567
|
bl_label: typing.Any
|
|
533
568
|
bl_options: typing.Any
|
|
@@ -558,57 +593,3 @@ class DATA_PT_text_boxes(
|
|
|
558
593
|
:param context:
|
|
559
594
|
"""
|
|
560
595
|
...
|
|
561
|
-
|
|
562
|
-
class CurveButtonsPanelActive(CurveButtonsPanel):
|
|
563
|
-
"""Same as above but for curves only"""
|
|
564
|
-
|
|
565
|
-
bl_context: typing.Any
|
|
566
|
-
bl_region_type: typing.Any
|
|
567
|
-
bl_space_type: typing.Any
|
|
568
|
-
|
|
569
|
-
@classmethod
|
|
570
|
-
def poll(cls, context):
|
|
571
|
-
"""
|
|
572
|
-
|
|
573
|
-
:param context:
|
|
574
|
-
"""
|
|
575
|
-
...
|
|
576
|
-
|
|
577
|
-
class CurveButtonsPanelCurve(CurveButtonsPanel):
|
|
578
|
-
bl_context: typing.Any
|
|
579
|
-
bl_region_type: typing.Any
|
|
580
|
-
bl_space_type: typing.Any
|
|
581
|
-
|
|
582
|
-
@classmethod
|
|
583
|
-
def poll(cls, context):
|
|
584
|
-
"""
|
|
585
|
-
|
|
586
|
-
:param context:
|
|
587
|
-
"""
|
|
588
|
-
...
|
|
589
|
-
|
|
590
|
-
class CurveButtonsPanelSurface(CurveButtonsPanel):
|
|
591
|
-
bl_context: typing.Any
|
|
592
|
-
bl_region_type: typing.Any
|
|
593
|
-
bl_space_type: typing.Any
|
|
594
|
-
|
|
595
|
-
@classmethod
|
|
596
|
-
def poll(cls, context):
|
|
597
|
-
"""
|
|
598
|
-
|
|
599
|
-
:param context:
|
|
600
|
-
"""
|
|
601
|
-
...
|
|
602
|
-
|
|
603
|
-
class CurveButtonsPanelText(CurveButtonsPanel):
|
|
604
|
-
bl_context: typing.Any
|
|
605
|
-
bl_region_type: typing.Any
|
|
606
|
-
bl_space_type: typing.Any
|
|
607
|
-
|
|
608
|
-
@classmethod
|
|
609
|
-
def poll(cls, context):
|
|
610
|
-
"""
|
|
611
|
-
|
|
612
|
-
:param context:
|
|
613
|
-
"""
|
|
614
|
-
...
|
|
@@ -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")
|
|
@@ -101,9 +100,7 @@ class CURVES_UL_attributes(bpy.types.UIList, bpy_types._GenericUI):
|
|
|
101
100
|
"""
|
|
102
101
|
...
|
|
103
102
|
|
|
104
|
-
class DATA_PT_CURVES_attributes(
|
|
105
|
-
bpy.types.Panel, DataButtonsPanel, bpy_types._GenericUI
|
|
106
|
-
):
|
|
103
|
+
class DATA_PT_CURVES_attributes(bpy.types.Panel, bpy_types._GenericUI):
|
|
107
104
|
COMPAT_ENGINES: typing.Any
|
|
108
105
|
bl_context: typing.Any
|
|
109
106
|
bl_label: typing.Any
|
|
@@ -135,7 +132,7 @@ class DATA_PT_CURVES_attributes(
|
|
|
135
132
|
"""
|
|
136
133
|
...
|
|
137
134
|
|
|
138
|
-
class DATA_PT_context_curves(bpy.types.Panel,
|
|
135
|
+
class DATA_PT_context_curves(bpy.types.Panel, bpy_types._GenericUI):
|
|
139
136
|
COMPAT_ENGINES: typing.Any
|
|
140
137
|
bl_context: typing.Any
|
|
141
138
|
bl_label: typing.Any
|
|
@@ -168,7 +165,7 @@ class DATA_PT_context_curves(bpy.types.Panel, DataButtonsPanel, bpy_types._Gener
|
|
|
168
165
|
"""
|
|
169
166
|
...
|
|
170
167
|
|
|
171
|
-
class DATA_PT_curves_surface(bpy.types.Panel,
|
|
168
|
+
class DATA_PT_curves_surface(bpy.types.Panel, bpy_types._GenericUI):
|
|
172
169
|
COMPAT_ENGINES: typing.Any
|
|
173
170
|
bl_context: typing.Any
|
|
174
171
|
bl_label: typing.Any
|
|
@@ -200,9 +197,7 @@ class DATA_PT_curves_surface(bpy.types.Panel, DataButtonsPanel, bpy_types._Gener
|
|
|
200
197
|
"""
|
|
201
198
|
...
|
|
202
199
|
|
|
203
|
-
class DATA_PT_custom_props_curves(
|
|
204
|
-
bpy.types.Panel, DataButtonsPanel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
|
|
205
|
-
):
|
|
200
|
+
class DATA_PT_custom_props_curves(bpy.types.Panel, bpy_types._GenericUI):
|
|
206
201
|
"""The subclass should have its own poll function
|
|
207
202
|
and the variable '_context_path' MUST be set.
|
|
208
203
|
"""
|
|
@@ -7,7 +7,7 @@ import bpy_types
|
|
|
7
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
8
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
9
9
|
|
|
10
|
-
class DATA_PT_empty(bpy.types.Panel,
|
|
10
|
+
class DATA_PT_empty(bpy.types.Panel, bpy_types._GenericUI):
|
|
11
11
|
bl_context: typing.Any
|
|
12
12
|
bl_label: typing.Any
|
|
13
13
|
bl_region_type: typing.Any
|
|
@@ -39,7 +39,7 @@ class DATA_PT_empty(bpy.types.Panel, DataButtonsPanel, bpy_types._GenericUI):
|
|
|
39
39
|
"""
|
|
40
40
|
...
|
|
41
41
|
|
|
42
|
-
class DATA_PT_empty_image(bpy.types.Panel,
|
|
42
|
+
class DATA_PT_empty_image(bpy.types.Panel, bpy_types._GenericUI):
|
|
43
43
|
bl_context: typing.Any
|
|
44
44
|
bl_label: typing.Any
|
|
45
45
|
bl_region_type: typing.Any
|