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
|
@@ -3,17 +3,25 @@ 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
|
|
10
|
+
class RigidBodySubPanel:
|
|
12
11
|
bl_context: typing.Any
|
|
12
|
+
bl_parent_id: typing.Any
|
|
13
13
|
bl_region_type: typing.Any
|
|
14
14
|
bl_space_type: typing.Any
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
@classmethod
|
|
17
|
+
def poll(cls, context):
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
:param context:
|
|
21
|
+
"""
|
|
22
|
+
...
|
|
23
|
+
|
|
24
|
+
class SCENE_PT_audio(bpy.types.Panel, bpy_types._GenericUI):
|
|
17
25
|
bl_context: typing.Any
|
|
18
26
|
bl_label: typing.Any
|
|
19
27
|
bl_options: typing.Any
|
|
@@ -45,9 +53,7 @@ class SCENE_PT_audio(bpy.types.Panel, SceneButtonsPanel, bpy_types._GenericUI):
|
|
|
45
53
|
"""
|
|
46
54
|
...
|
|
47
55
|
|
|
48
|
-
class SCENE_PT_custom_props(
|
|
49
|
-
bpy.types.Panel, SceneButtonsPanel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
|
|
50
|
-
):
|
|
56
|
+
class SCENE_PT_custom_props(bpy.types.Panel, bpy_types._GenericUI):
|
|
51
57
|
"""The subclass should have its own poll function
|
|
52
58
|
and the variable '_context_path' MUST be set.
|
|
53
59
|
"""
|
|
@@ -77,9 +83,7 @@ class SCENE_PT_custom_props(
|
|
|
77
83
|
"""
|
|
78
84
|
...
|
|
79
85
|
|
|
80
|
-
class SCENE_PT_eevee_next_light_probes(
|
|
81
|
-
bpy.types.Panel, SceneButtonsPanel, bpy_types._GenericUI
|
|
82
|
-
):
|
|
86
|
+
class SCENE_PT_eevee_next_light_probes(bpy.types.Panel, bpy_types._GenericUI):
|
|
83
87
|
COMPAT_ENGINES: typing.Any
|
|
84
88
|
bl_context: typing.Any
|
|
85
89
|
bl_label: typing.Any
|
|
@@ -120,9 +124,7 @@ class SCENE_PT_eevee_next_light_probes(
|
|
|
120
124
|
"""
|
|
121
125
|
...
|
|
122
126
|
|
|
123
|
-
class SCENE_PT_keyframing_settings(
|
|
124
|
-
bpy.types.Panel, SceneButtonsPanel, SceneKeyingSetsPanel, bpy_types._GenericUI
|
|
125
|
-
):
|
|
127
|
+
class SCENE_PT_keyframing_settings(bpy.types.Panel, bpy_types._GenericUI):
|
|
126
128
|
bl_context: typing.Any
|
|
127
129
|
bl_label: typing.Any
|
|
128
130
|
bl_parent_id: typing.Any
|
|
@@ -162,9 +164,7 @@ class SCENE_PT_keyframing_settings(
|
|
|
162
164
|
"""
|
|
163
165
|
...
|
|
164
166
|
|
|
165
|
-
class SCENE_PT_keying_set_paths(
|
|
166
|
-
bpy.types.Panel, SceneButtonsPanel, SceneKeyingSetsPanel, bpy_types._GenericUI
|
|
167
|
-
):
|
|
167
|
+
class SCENE_PT_keying_set_paths(bpy.types.Panel, bpy_types._GenericUI):
|
|
168
168
|
bl_context: typing.Any
|
|
169
169
|
bl_label: typing.Any
|
|
170
170
|
bl_parent_id: typing.Any
|
|
@@ -204,9 +204,7 @@ class SCENE_PT_keying_set_paths(
|
|
|
204
204
|
"""
|
|
205
205
|
...
|
|
206
206
|
|
|
207
|
-
class SCENE_PT_keying_sets(
|
|
208
|
-
bpy.types.Panel, SceneButtonsPanel, SceneKeyingSetsPanel, bpy_types._GenericUI
|
|
209
|
-
):
|
|
207
|
+
class SCENE_PT_keying_sets(bpy.types.Panel, bpy_types._GenericUI):
|
|
210
208
|
bl_context: typing.Any
|
|
211
209
|
bl_label: typing.Any
|
|
212
210
|
bl_options: typing.Any
|
|
@@ -238,7 +236,7 @@ class SCENE_PT_keying_sets(
|
|
|
238
236
|
"""
|
|
239
237
|
...
|
|
240
238
|
|
|
241
|
-
class SCENE_PT_physics(bpy.types.Panel,
|
|
239
|
+
class SCENE_PT_physics(bpy.types.Panel, bpy_types._GenericUI):
|
|
242
240
|
bl_context: typing.Any
|
|
243
241
|
bl_label: typing.Any
|
|
244
242
|
bl_options: typing.Any
|
|
@@ -278,7 +276,7 @@ class SCENE_PT_physics(bpy.types.Panel, SceneButtonsPanel, bpy_types._GenericUI)
|
|
|
278
276
|
...
|
|
279
277
|
|
|
280
278
|
class SCENE_PT_rigid_body_cache(
|
|
281
|
-
bpy.types.Panel,
|
|
279
|
+
bpy.types.Panel, SceneButtonsPanel, bpy_types._GenericUI
|
|
282
280
|
):
|
|
283
281
|
bl_context: typing.Any
|
|
284
282
|
bl_label: typing.Any
|
|
@@ -313,7 +311,7 @@ class SCENE_PT_rigid_body_cache(
|
|
|
313
311
|
...
|
|
314
312
|
|
|
315
313
|
class SCENE_PT_rigid_body_field_weights(
|
|
316
|
-
bpy.types.Panel,
|
|
314
|
+
bpy.types.Panel, SceneButtonsPanel, bpy_types._GenericUI
|
|
317
315
|
):
|
|
318
316
|
bl_context: typing.Any
|
|
319
317
|
bl_label: typing.Any
|
|
@@ -347,9 +345,7 @@ class SCENE_PT_rigid_body_field_weights(
|
|
|
347
345
|
"""
|
|
348
346
|
...
|
|
349
347
|
|
|
350
|
-
class SCENE_PT_rigid_body_world(
|
|
351
|
-
bpy.types.Panel, SceneButtonsPanel, bpy_types._GenericUI
|
|
352
|
-
):
|
|
348
|
+
class SCENE_PT_rigid_body_world(bpy.types.Panel, bpy_types._GenericUI):
|
|
353
349
|
bl_context: typing.Any
|
|
354
350
|
bl_label: typing.Any
|
|
355
351
|
bl_options: typing.Any
|
|
@@ -389,7 +385,7 @@ class SCENE_PT_rigid_body_world(
|
|
|
389
385
|
...
|
|
390
386
|
|
|
391
387
|
class SCENE_PT_rigid_body_world_settings(
|
|
392
|
-
bpy.types.Panel,
|
|
388
|
+
bpy.types.Panel, SceneButtonsPanel, bpy_types._GenericUI
|
|
393
389
|
):
|
|
394
390
|
bl_context: typing.Any
|
|
395
391
|
bl_label: typing.Any
|
|
@@ -422,7 +418,7 @@ class SCENE_PT_rigid_body_world_settings(
|
|
|
422
418
|
"""
|
|
423
419
|
...
|
|
424
420
|
|
|
425
|
-
class SCENE_PT_scene(bpy.types.Panel,
|
|
421
|
+
class SCENE_PT_scene(bpy.types.Panel, bpy_types._GenericUI):
|
|
426
422
|
bl_context: typing.Any
|
|
427
423
|
bl_label: typing.Any
|
|
428
424
|
bl_region_type: typing.Any
|
|
@@ -453,7 +449,7 @@ class SCENE_PT_scene(bpy.types.Panel, SceneButtonsPanel, bpy_types._GenericUI):
|
|
|
453
449
|
"""
|
|
454
450
|
...
|
|
455
451
|
|
|
456
|
-
class SCENE_PT_simulation(bpy.types.Panel,
|
|
452
|
+
class SCENE_PT_simulation(bpy.types.Panel, bpy_types._GenericUI):
|
|
457
453
|
bl_context: typing.Any
|
|
458
454
|
bl_label: typing.Any
|
|
459
455
|
bl_options: typing.Any
|
|
@@ -485,7 +481,7 @@ class SCENE_PT_simulation(bpy.types.Panel, SceneButtonsPanel, bpy_types._Generic
|
|
|
485
481
|
"""
|
|
486
482
|
...
|
|
487
483
|
|
|
488
|
-
class SCENE_PT_unit(bpy.types.Panel,
|
|
484
|
+
class SCENE_PT_unit(bpy.types.Panel, bpy_types._GenericUI):
|
|
489
485
|
bl_context: typing.Any
|
|
490
486
|
bl_label: typing.Any
|
|
491
487
|
bl_options: typing.Any
|
|
@@ -561,6 +557,11 @@ class SCENE_UL_keying_set_paths(bpy.types.UIList, bpy_types._GenericUI):
|
|
|
561
557
|
"""
|
|
562
558
|
...
|
|
563
559
|
|
|
560
|
+
class SceneButtonsPanel:
|
|
561
|
+
bl_context: typing.Any
|
|
562
|
+
bl_region_type: typing.Any
|
|
563
|
+
bl_space_type: typing.Any
|
|
564
|
+
|
|
564
565
|
class SceneKeyingSetsPanel:
|
|
565
566
|
@staticmethod
|
|
566
567
|
def draw_keyframing_settings(context, layout, ks, ksp):
|
|
@@ -572,17 +573,3 @@ class SceneKeyingSetsPanel:
|
|
|
572
573
|
:param ksp:
|
|
573
574
|
"""
|
|
574
575
|
...
|
|
575
|
-
|
|
576
|
-
class RigidBodySubPanel(SceneButtonsPanel):
|
|
577
|
-
bl_context: typing.Any
|
|
578
|
-
bl_parent_id: 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
|
-
...
|
|
@@ -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")
|
|
@@ -37,9 +36,7 @@ class TEXTURE_MT_context_menu(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
37
36
|
"""
|
|
38
37
|
...
|
|
39
38
|
|
|
40
|
-
class TEXTURE_PT_blend(
|
|
41
|
-
bpy.types.Panel, TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
42
|
-
):
|
|
39
|
+
class TEXTURE_PT_blend(bpy.types.Panel, TextureButtonsPanel, bpy_types._GenericUI):
|
|
43
40
|
COMPAT_ENGINES: typing.Any
|
|
44
41
|
bl_context: typing.Any
|
|
45
42
|
bl_label: typing.Any
|
|
@@ -72,9 +69,7 @@ class TEXTURE_PT_blend(
|
|
|
72
69
|
"""
|
|
73
70
|
...
|
|
74
71
|
|
|
75
|
-
class TEXTURE_PT_clouds(
|
|
76
|
-
bpy.types.Panel, TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
77
|
-
):
|
|
72
|
+
class TEXTURE_PT_clouds(bpy.types.Panel, TextureButtonsPanel, bpy_types._GenericUI):
|
|
78
73
|
COMPAT_ENGINES: typing.Any
|
|
79
74
|
bl_context: typing.Any
|
|
80
75
|
bl_label: typing.Any
|
|
@@ -107,9 +102,7 @@ class TEXTURE_PT_clouds(
|
|
|
107
102
|
"""
|
|
108
103
|
...
|
|
109
104
|
|
|
110
|
-
class TEXTURE_PT_colors(
|
|
111
|
-
bpy.types.Panel, TextureButtonsPanel, TextureColorsPoll, bpy_types._GenericUI
|
|
112
|
-
):
|
|
105
|
+
class TEXTURE_PT_colors(bpy.types.Panel, bpy_types._GenericUI):
|
|
113
106
|
COMPAT_ENGINES: typing.Any
|
|
114
107
|
bl_context: typing.Any
|
|
115
108
|
bl_label: typing.Any
|
|
@@ -142,9 +135,7 @@ class TEXTURE_PT_colors(
|
|
|
142
135
|
"""
|
|
143
136
|
...
|
|
144
137
|
|
|
145
|
-
class TEXTURE_PT_colors_ramp(
|
|
146
|
-
bpy.types.Panel, TextureButtonsPanel, TextureColorsPoll, bpy_types._GenericUI
|
|
147
|
-
):
|
|
138
|
+
class TEXTURE_PT_colors_ramp(bpy.types.Panel, bpy_types._GenericUI):
|
|
148
139
|
COMPAT_ENGINES: typing.Any
|
|
149
140
|
bl_context: typing.Any
|
|
150
141
|
bl_label: typing.Any
|
|
@@ -185,7 +176,7 @@ class TEXTURE_PT_colors_ramp(
|
|
|
185
176
|
"""
|
|
186
177
|
...
|
|
187
178
|
|
|
188
|
-
class TEXTURE_PT_context(bpy.types.Panel,
|
|
179
|
+
class TEXTURE_PT_context(bpy.types.Panel, bpy_types._GenericUI):
|
|
189
180
|
COMPAT_ENGINES: typing.Any
|
|
190
181
|
bl_context: typing.Any
|
|
191
182
|
bl_label: typing.Any
|
|
@@ -218,12 +209,7 @@ class TEXTURE_PT_context(bpy.types.Panel, TextureButtonsPanel, bpy_types._Generi
|
|
|
218
209
|
"""
|
|
219
210
|
...
|
|
220
211
|
|
|
221
|
-
class TEXTURE_PT_custom_props(
|
|
222
|
-
bpy.types.Panel,
|
|
223
|
-
TextureButtonsPanel,
|
|
224
|
-
rna_prop_ui.PropertyPanel,
|
|
225
|
-
bpy_types._GenericUI,
|
|
226
|
-
):
|
|
212
|
+
class TEXTURE_PT_custom_props(bpy.types.Panel, bpy_types._GenericUI):
|
|
227
213
|
"""The subclass should have its own poll function
|
|
228
214
|
and the variable '_context_path' MUST be set.
|
|
229
215
|
"""
|
|
@@ -263,7 +249,7 @@ class TEXTURE_PT_custom_props(
|
|
|
263
249
|
...
|
|
264
250
|
|
|
265
251
|
class TEXTURE_PT_distortednoise(
|
|
266
|
-
bpy.types.Panel,
|
|
252
|
+
bpy.types.Panel, TextureButtonsPanel, bpy_types._GenericUI
|
|
267
253
|
):
|
|
268
254
|
COMPAT_ENGINES: typing.Any
|
|
269
255
|
bl_context: typing.Any
|
|
@@ -297,9 +283,7 @@ class TEXTURE_PT_distortednoise(
|
|
|
297
283
|
"""
|
|
298
284
|
...
|
|
299
285
|
|
|
300
|
-
class TEXTURE_PT_image(
|
|
301
|
-
bpy.types.Panel, TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
302
|
-
):
|
|
286
|
+
class TEXTURE_PT_image(bpy.types.Panel, TextureButtonsPanel, bpy_types._GenericUI):
|
|
303
287
|
COMPAT_ENGINES: typing.Any
|
|
304
288
|
bl_context: typing.Any
|
|
305
289
|
bl_label: typing.Any
|
|
@@ -333,7 +317,7 @@ class TEXTURE_PT_image(
|
|
|
333
317
|
...
|
|
334
318
|
|
|
335
319
|
class TEXTURE_PT_image_alpha(
|
|
336
|
-
bpy.types.Panel,
|
|
320
|
+
bpy.types.Panel, TextureButtonsPanel, bpy_types._GenericUI
|
|
337
321
|
):
|
|
338
322
|
COMPAT_ENGINES: typing.Any
|
|
339
323
|
bl_context: typing.Any
|
|
@@ -377,7 +361,7 @@ class TEXTURE_PT_image_alpha(
|
|
|
377
361
|
...
|
|
378
362
|
|
|
379
363
|
class TEXTURE_PT_image_mapping(
|
|
380
|
-
bpy.types.Panel,
|
|
364
|
+
bpy.types.Panel, TextureButtonsPanel, bpy_types._GenericUI
|
|
381
365
|
):
|
|
382
366
|
COMPAT_ENGINES: typing.Any
|
|
383
367
|
bl_context: typing.Any
|
|
@@ -414,7 +398,7 @@ class TEXTURE_PT_image_mapping(
|
|
|
414
398
|
...
|
|
415
399
|
|
|
416
400
|
class TEXTURE_PT_image_mapping_crop(
|
|
417
|
-
bpy.types.Panel,
|
|
401
|
+
bpy.types.Panel, TextureButtonsPanel, bpy_types._GenericUI
|
|
418
402
|
):
|
|
419
403
|
COMPAT_ENGINES: typing.Any
|
|
420
404
|
bl_context: typing.Any
|
|
@@ -451,7 +435,7 @@ class TEXTURE_PT_image_mapping_crop(
|
|
|
451
435
|
...
|
|
452
436
|
|
|
453
437
|
class TEXTURE_PT_image_sampling(
|
|
454
|
-
bpy.types.Panel,
|
|
438
|
+
bpy.types.Panel, TextureButtonsPanel, bpy_types._GenericUI
|
|
455
439
|
):
|
|
456
440
|
COMPAT_ENGINES: typing.Any
|
|
457
441
|
bl_context: typing.Any
|
|
@@ -488,7 +472,7 @@ class TEXTURE_PT_image_sampling(
|
|
|
488
472
|
...
|
|
489
473
|
|
|
490
474
|
class TEXTURE_PT_image_settings(
|
|
491
|
-
bpy.types.Panel,
|
|
475
|
+
bpy.types.Panel, TextureButtonsPanel, bpy_types._GenericUI
|
|
492
476
|
):
|
|
493
477
|
COMPAT_ENGINES: typing.Any
|
|
494
478
|
bl_context: typing.Any
|
|
@@ -523,9 +507,7 @@ class TEXTURE_PT_image_settings(
|
|
|
523
507
|
"""
|
|
524
508
|
...
|
|
525
509
|
|
|
526
|
-
class TEXTURE_PT_influence(
|
|
527
|
-
bpy.types.Panel, TextureSlotPanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
528
|
-
):
|
|
510
|
+
class TEXTURE_PT_influence(bpy.types.Panel, TextureButtonsPanel, bpy_types._GenericUI):
|
|
529
511
|
COMPAT_ENGINES: typing.Any
|
|
530
512
|
bl_context: typing.Any
|
|
531
513
|
bl_label: typing.Any
|
|
@@ -566,9 +548,7 @@ class TEXTURE_PT_influence(
|
|
|
566
548
|
"""
|
|
567
549
|
...
|
|
568
550
|
|
|
569
|
-
class TEXTURE_PT_magic(
|
|
570
|
-
bpy.types.Panel, TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
571
|
-
):
|
|
551
|
+
class TEXTURE_PT_magic(bpy.types.Panel, TextureButtonsPanel, bpy_types._GenericUI):
|
|
572
552
|
COMPAT_ENGINES: typing.Any
|
|
573
553
|
bl_context: typing.Any
|
|
574
554
|
bl_label: typing.Any
|
|
@@ -601,9 +581,7 @@ class TEXTURE_PT_magic(
|
|
|
601
581
|
"""
|
|
602
582
|
...
|
|
603
583
|
|
|
604
|
-
class TEXTURE_PT_mapping(
|
|
605
|
-
bpy.types.Panel, TextureSlotPanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
606
|
-
):
|
|
584
|
+
class TEXTURE_PT_mapping(bpy.types.Panel, TextureButtonsPanel, bpy_types._GenericUI):
|
|
607
585
|
COMPAT_ENGINES: typing.Any
|
|
608
586
|
bl_context: typing.Any
|
|
609
587
|
bl_label: typing.Any
|
|
@@ -643,9 +621,7 @@ class TEXTURE_PT_mapping(
|
|
|
643
621
|
"""
|
|
644
622
|
...
|
|
645
623
|
|
|
646
|
-
class TEXTURE_PT_marble(
|
|
647
|
-
bpy.types.Panel, TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
648
|
-
):
|
|
624
|
+
class TEXTURE_PT_marble(bpy.types.Panel, TextureButtonsPanel, bpy_types._GenericUI):
|
|
649
625
|
COMPAT_ENGINES: typing.Any
|
|
650
626
|
bl_context: typing.Any
|
|
651
627
|
bl_label: typing.Any
|
|
@@ -678,9 +654,7 @@ class TEXTURE_PT_marble(
|
|
|
678
654
|
"""
|
|
679
655
|
...
|
|
680
656
|
|
|
681
|
-
class TEXTURE_PT_musgrave(
|
|
682
|
-
bpy.types.Panel, TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
683
|
-
):
|
|
657
|
+
class TEXTURE_PT_musgrave(bpy.types.Panel, TextureButtonsPanel, bpy_types._GenericUI):
|
|
684
658
|
COMPAT_ENGINES: typing.Any
|
|
685
659
|
bl_context: typing.Any
|
|
686
660
|
bl_label: typing.Any
|
|
@@ -713,7 +687,7 @@ class TEXTURE_PT_musgrave(
|
|
|
713
687
|
"""
|
|
714
688
|
...
|
|
715
689
|
|
|
716
|
-
class TEXTURE_PT_node(bpy.types.Panel,
|
|
690
|
+
class TEXTURE_PT_node(bpy.types.Panel, bpy_types._GenericUI):
|
|
717
691
|
COMPAT_ENGINES: typing.Any
|
|
718
692
|
bl_context: typing.Any
|
|
719
693
|
bl_label: typing.Any
|
|
@@ -753,7 +727,7 @@ class TEXTURE_PT_node(bpy.types.Panel, TextureButtonsPanel, bpy_types._GenericUI
|
|
|
753
727
|
"""
|
|
754
728
|
...
|
|
755
729
|
|
|
756
|
-
class TEXTURE_PT_preview(bpy.types.Panel,
|
|
730
|
+
class TEXTURE_PT_preview(bpy.types.Panel, bpy_types._GenericUI):
|
|
757
731
|
COMPAT_ENGINES: typing.Any
|
|
758
732
|
bl_context: typing.Any
|
|
759
733
|
bl_label: typing.Any
|
|
@@ -793,9 +767,7 @@ class TEXTURE_PT_preview(bpy.types.Panel, TextureButtonsPanel, bpy_types._Generi
|
|
|
793
767
|
"""
|
|
794
768
|
...
|
|
795
769
|
|
|
796
|
-
class TEXTURE_PT_stucci(
|
|
797
|
-
bpy.types.Panel, TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
798
|
-
):
|
|
770
|
+
class TEXTURE_PT_stucci(bpy.types.Panel, TextureButtonsPanel, bpy_types._GenericUI):
|
|
799
771
|
COMPAT_ENGINES: typing.Any
|
|
800
772
|
bl_context: typing.Any
|
|
801
773
|
bl_label: typing.Any
|
|
@@ -828,9 +800,7 @@ class TEXTURE_PT_stucci(
|
|
|
828
800
|
"""
|
|
829
801
|
...
|
|
830
802
|
|
|
831
|
-
class TEXTURE_PT_voronoi(
|
|
832
|
-
bpy.types.Panel, TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
833
|
-
):
|
|
803
|
+
class TEXTURE_PT_voronoi(bpy.types.Panel, TextureButtonsPanel, bpy_types._GenericUI):
|
|
834
804
|
COMPAT_ENGINES: typing.Any
|
|
835
805
|
bl_context: typing.Any
|
|
836
806
|
bl_label: typing.Any
|
|
@@ -864,7 +834,7 @@ class TEXTURE_PT_voronoi(
|
|
|
864
834
|
...
|
|
865
835
|
|
|
866
836
|
class TEXTURE_PT_voronoi_feature_weights(
|
|
867
|
-
bpy.types.Panel,
|
|
837
|
+
bpy.types.Panel, TextureButtonsPanel, bpy_types._GenericUI
|
|
868
838
|
):
|
|
869
839
|
COMPAT_ENGINES: typing.Any
|
|
870
840
|
bl_context: typing.Any
|
|
@@ -899,9 +869,7 @@ class TEXTURE_PT_voronoi_feature_weights(
|
|
|
899
869
|
"""
|
|
900
870
|
...
|
|
901
871
|
|
|
902
|
-
class TEXTURE_PT_wood(
|
|
903
|
-
bpy.types.Panel, TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
904
|
-
):
|
|
872
|
+
class TEXTURE_PT_wood(bpy.types.Panel, TextureButtonsPanel, bpy_types._GenericUI):
|
|
905
873
|
COMPAT_ENGINES: typing.Any
|
|
906
874
|
bl_context: typing.Any
|
|
907
875
|
bl_label: typing.Any
|
|
@@ -992,7 +960,7 @@ class TextureColorsPoll:
|
|
|
992
960
|
"""
|
|
993
961
|
...
|
|
994
962
|
|
|
995
|
-
class TextureSlotPanel
|
|
963
|
+
class TextureSlotPanel:
|
|
996
964
|
COMPAT_ENGINES: typing.Any
|
|
997
965
|
bl_context: typing.Any
|
|
998
966
|
bl_region_type: typing.Any
|
|
@@ -1006,7 +974,7 @@ class TextureSlotPanel(TextureButtonsPanel):
|
|
|
1006
974
|
"""
|
|
1007
975
|
...
|
|
1008
976
|
|
|
1009
|
-
class TextureTypePanel
|
|
977
|
+
class TextureTypePanel:
|
|
1010
978
|
bl_context: typing.Any
|
|
1011
979
|
bl_region_type: typing.Any
|
|
1012
980
|
bl_space_type: 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,9 +35,7 @@ class VIEWLAYER_MT_lightgroup_sync(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
36
35
|
"""
|
|
37
36
|
...
|
|
38
37
|
|
|
39
|
-
class VIEWLAYER_PT_eevee_layer_passes_data(
|
|
40
|
-
bpy.types.Panel, ViewLayerButtonsPanel, bpy_types._GenericUI
|
|
41
|
-
):
|
|
38
|
+
class VIEWLAYER_PT_eevee_layer_passes_data(bpy.types.Panel, bpy_types._GenericUI):
|
|
42
39
|
COMPAT_ENGINES: typing.Any
|
|
43
40
|
bl_context: typing.Any
|
|
44
41
|
bl_label: typing.Any
|
|
@@ -71,9 +68,7 @@ class VIEWLAYER_PT_eevee_layer_passes_data(
|
|
|
71
68
|
"""
|
|
72
69
|
...
|
|
73
70
|
|
|
74
|
-
class VIEWLAYER_PT_eevee_layer_passes_effects(
|
|
75
|
-
bpy.types.Panel, ViewLayerButtonsPanel, bpy_types._GenericUI
|
|
76
|
-
):
|
|
71
|
+
class VIEWLAYER_PT_eevee_layer_passes_effects(bpy.types.Panel, bpy_types._GenericUI):
|
|
77
72
|
COMPAT_ENGINES: typing.Any
|
|
78
73
|
bl_context: typing.Any
|
|
79
74
|
bl_label: typing.Any
|
|
@@ -106,9 +101,7 @@ class VIEWLAYER_PT_eevee_layer_passes_effects(
|
|
|
106
101
|
"""
|
|
107
102
|
...
|
|
108
103
|
|
|
109
|
-
class VIEWLAYER_PT_eevee_layer_passes_light(
|
|
110
|
-
bpy.types.Panel, ViewLayerButtonsPanel, bpy_types._GenericUI
|
|
111
|
-
):
|
|
104
|
+
class VIEWLAYER_PT_eevee_layer_passes_light(bpy.types.Panel, bpy_types._GenericUI):
|
|
112
105
|
COMPAT_ENGINES: typing.Any
|
|
113
106
|
bl_context: typing.Any
|
|
114
107
|
bl_label: typing.Any
|
|
@@ -141,9 +134,7 @@ class VIEWLAYER_PT_eevee_layer_passes_light(
|
|
|
141
134
|
"""
|
|
142
135
|
...
|
|
143
136
|
|
|
144
|
-
class VIEWLAYER_PT_eevee_next_layer_passes_data(
|
|
145
|
-
bpy.types.Panel, ViewLayerButtonsPanel, bpy_types._GenericUI
|
|
146
|
-
):
|
|
137
|
+
class VIEWLAYER_PT_eevee_next_layer_passes_data(bpy.types.Panel, bpy_types._GenericUI):
|
|
147
138
|
COMPAT_ENGINES: typing.Any
|
|
148
139
|
bl_context: typing.Any
|
|
149
140
|
bl_label: typing.Any
|
|
@@ -176,9 +167,7 @@ class VIEWLAYER_PT_eevee_next_layer_passes_data(
|
|
|
176
167
|
"""
|
|
177
168
|
...
|
|
178
169
|
|
|
179
|
-
class VIEWLAYER_PT_eevee_next_layer_passes_light(
|
|
180
|
-
bpy.types.Panel, ViewLayerButtonsPanel, bpy_types._GenericUI
|
|
181
|
-
):
|
|
170
|
+
class VIEWLAYER_PT_eevee_next_layer_passes_light(bpy.types.Panel, bpy_types._GenericUI):
|
|
182
171
|
COMPAT_ENGINES: typing.Any
|
|
183
172
|
bl_context: typing.Any
|
|
184
173
|
bl_label: typing.Any
|
|
@@ -211,7 +200,7 @@ class VIEWLAYER_PT_eevee_next_layer_passes_light(
|
|
|
211
200
|
"""
|
|
212
201
|
...
|
|
213
202
|
|
|
214
|
-
class VIEWLAYER_PT_filter(bpy.types.Panel,
|
|
203
|
+
class VIEWLAYER_PT_filter(bpy.types.Panel, bpy_types._GenericUI):
|
|
215
204
|
COMPAT_ENGINES: typing.Any
|
|
216
205
|
bl_context: typing.Any
|
|
217
206
|
bl_label: typing.Any
|
|
@@ -244,7 +233,7 @@ class VIEWLAYER_PT_filter(bpy.types.Panel, ViewLayerButtonsPanel, bpy_types._Gen
|
|
|
244
233
|
"""
|
|
245
234
|
...
|
|
246
235
|
|
|
247
|
-
class VIEWLAYER_PT_layer(bpy.types.Panel,
|
|
236
|
+
class VIEWLAYER_PT_layer(bpy.types.Panel, bpy_types._GenericUI):
|
|
248
237
|
COMPAT_ENGINES: typing.Any
|
|
249
238
|
bl_context: typing.Any
|
|
250
239
|
bl_label: typing.Any
|
|
@@ -276,9 +265,7 @@ class VIEWLAYER_PT_layer(bpy.types.Panel, ViewLayerButtonsPanel, bpy_types._Gene
|
|
|
276
265
|
"""
|
|
277
266
|
...
|
|
278
267
|
|
|
279
|
-
class VIEWLAYER_PT_layer_custom_props(
|
|
280
|
-
bpy.types.Panel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
|
|
281
|
-
):
|
|
268
|
+
class VIEWLAYER_PT_layer_custom_props(bpy.types.Panel, bpy_types._GenericUI):
|
|
282
269
|
"""The subclass should have its own poll function
|
|
283
270
|
and the variable '_context_path' MUST be set.
|
|
284
271
|
"""
|
|
@@ -308,9 +295,7 @@ class VIEWLAYER_PT_layer_custom_props(
|
|
|
308
295
|
"""
|
|
309
296
|
...
|
|
310
297
|
|
|
311
|
-
class VIEWLAYER_PT_layer_passes(
|
|
312
|
-
bpy.types.Panel, ViewLayerButtonsPanel, bpy_types._GenericUI
|
|
313
|
-
):
|
|
298
|
+
class VIEWLAYER_PT_layer_passes(bpy.types.Panel, bpy_types._GenericUI):
|
|
314
299
|
COMPAT_ENGINES: typing.Any
|
|
315
300
|
bl_context: typing.Any
|
|
316
301
|
bl_label: typing.Any
|
|
@@ -343,7 +328,7 @@ class VIEWLAYER_PT_layer_passes(
|
|
|
343
328
|
...
|
|
344
329
|
|
|
345
330
|
class VIEWLAYER_PT_layer_passes_aov(
|
|
346
|
-
bpy.types.Panel,
|
|
331
|
+
bpy.types.Panel, ViewLayerButtonsPanel, bpy_types._GenericUI
|
|
347
332
|
):
|
|
348
333
|
COMPAT_ENGINES: typing.Any
|
|
349
334
|
bl_context: typing.Any
|
|
@@ -371,10 +356,7 @@ class VIEWLAYER_PT_layer_passes_aov(
|
|
|
371
356
|
...
|
|
372
357
|
|
|
373
358
|
class VIEWLAYER_PT_layer_passes_cryptomatte(
|
|
374
|
-
bpy.types.Panel,
|
|
375
|
-
ViewLayerCryptomattePanel,
|
|
376
|
-
ViewLayerButtonsPanel,
|
|
377
|
-
bpy_types._GenericUI,
|
|
359
|
+
bpy.types.Panel, ViewLayerButtonsPanel, bpy_types._GenericUI
|
|
378
360
|
):
|
|
379
361
|
COMPAT_ENGINES: typing.Any
|
|
380
362
|
bl_context: typing.Any
|
|
@@ -402,10 +384,7 @@ class VIEWLAYER_PT_layer_passes_cryptomatte(
|
|
|
402
384
|
...
|
|
403
385
|
|
|
404
386
|
class VIEWLAYER_PT_layer_passes_lightgroups(
|
|
405
|
-
bpy.types.Panel,
|
|
406
|
-
ViewLayerLightgroupsPanel,
|
|
407
|
-
ViewLayerButtonsPanel,
|
|
408
|
-
bpy_types._GenericUI,
|
|
387
|
+
bpy.types.Panel, ViewLayerButtonsPanel, bpy_types._GenericUI
|
|
409
388
|
):
|
|
410
389
|
COMPAT_ENGINES: typing.Any
|
|
411
390
|
bl_context: typing.Any
|
|
@@ -432,9 +411,7 @@ class VIEWLAYER_PT_layer_passes_lightgroups(
|
|
|
432
411
|
"""
|
|
433
412
|
...
|
|
434
413
|
|
|
435
|
-
class VIEWLAYER_PT_workbench_layer_passes_data(
|
|
436
|
-
bpy.types.Panel, ViewLayerButtonsPanel, bpy_types._GenericUI
|
|
437
|
-
):
|
|
414
|
+
class VIEWLAYER_PT_workbench_layer_passes_data(bpy.types.Panel, bpy_types._GenericUI):
|
|
438
415
|
COMPAT_ENGINES: typing.Any
|
|
439
416
|
bl_context: typing.Any
|
|
440
417
|
bl_label: typing.Any
|
|
@@ -502,7 +479,7 @@ class VIEWLAYER_UL_aov(bpy.types.UIList, bpy_types._GenericUI):
|
|
|
502
479
|
"""
|
|
503
480
|
...
|
|
504
481
|
|
|
505
|
-
class ViewLayerAOVPanel(bpy.types.Panel,
|
|
482
|
+
class ViewLayerAOVPanel(bpy.types.Panel, bpy_types._GenericUI):
|
|
506
483
|
bl_context: typing.Any
|
|
507
484
|
bl_label: typing.Any
|
|
508
485
|
bl_region_type: typing.Any
|
|
@@ -546,9 +523,7 @@ class ViewLayerButtonsPanel:
|
|
|
546
523
|
"""
|
|
547
524
|
...
|
|
548
525
|
|
|
549
|
-
class ViewLayerCryptomattePanel(
|
|
550
|
-
bpy.types.Panel, ViewLayerButtonsPanel, bpy_types._GenericUI
|
|
551
|
-
):
|
|
526
|
+
class ViewLayerCryptomattePanel(bpy.types.Panel, bpy_types._GenericUI):
|
|
552
527
|
bl_context: typing.Any
|
|
553
528
|
bl_label: typing.Any
|
|
554
529
|
bl_region_type: typing.Any
|
|
@@ -579,9 +554,7 @@ class ViewLayerCryptomattePanel(
|
|
|
579
554
|
"""
|
|
580
555
|
...
|
|
581
556
|
|
|
582
|
-
class ViewLayerLightgroupsPanel(
|
|
583
|
-
bpy.types.Panel, ViewLayerButtonsPanel, bpy_types._GenericUI
|
|
584
|
-
):
|
|
557
|
+
class ViewLayerLightgroupsPanel(bpy.types.Panel, bpy_types._GenericUI):
|
|
585
558
|
bl_context: typing.Any
|
|
586
559
|
bl_label: typing.Any
|
|
587
560
|
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 WORKSPACE_PT_addons(bpy.types.Panel,
|
|
10
|
+
class WORKSPACE_PT_addons(bpy.types.Panel, bpy_types._GenericUI):
|
|
12
11
|
addon_map: typing.Any
|
|
13
12
|
bl_category: typing.Any
|
|
14
13
|
bl_label: typing.Any
|
|
@@ -49,12 +48,7 @@ class WORKSPACE_PT_addons(bpy.types.Panel, WorkSpaceButtonsPanel, bpy_types._Gen
|
|
|
49
48
|
"""
|
|
50
49
|
...
|
|
51
50
|
|
|
52
|
-
class WORKSPACE_PT_custom_props(
|
|
53
|
-
bpy.types.Panel,
|
|
54
|
-
WorkSpaceButtonsPanel,
|
|
55
|
-
rna_prop_ui.PropertyPanel,
|
|
56
|
-
bpy_types._GenericUI,
|
|
57
|
-
):
|
|
51
|
+
class WORKSPACE_PT_custom_props(bpy.types.Panel, bpy_types._GenericUI):
|
|
58
52
|
"""The subclass should have its own poll function
|
|
59
53
|
and the variable '_context_path' MUST be set.
|
|
60
54
|
"""
|
|
@@ -85,7 +79,7 @@ class WORKSPACE_PT_custom_props(
|
|
|
85
79
|
"""
|
|
86
80
|
...
|
|
87
81
|
|
|
88
|
-
class WORKSPACE_PT_main(bpy.types.Panel,
|
|
82
|
+
class WORKSPACE_PT_main(bpy.types.Panel, bpy_types._GenericUI):
|
|
89
83
|
bl_category: typing.Any
|
|
90
84
|
bl_label: typing.Any
|
|
91
85
|
bl_options: typing.Any
|