fake-bpy-module 20240721__py3-none-any.whl → 20240723__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/bone_selection_sets/__init__.pyi +6 -18
- bl_operators/node/__init__.pyi +2 -4
- bl_operators/presets/__init__.pyi +2 -5
- bl_operators/wm/__init__.pyi +4 -5
- bl_ui/__init__.pyi +3 -4
- bl_ui/anim/__init__.pyi +1 -2
- bl_ui/asset_shelf/__init__.pyi +1 -2
- bl_ui/node_add_menu/__init__.pyi +1 -2
- bl_ui/node_add_menu_compositor/__init__.pyi +18 -19
- bl_ui/node_add_menu_geometry/__init__.pyi +50 -53
- bl_ui/node_add_menu_shader/__init__.pyi +10 -11
- bl_ui/node_add_menu_texture/__init__.pyi +9 -10
- bl_ui/properties_collection/__init__.pyi +6 -18
- bl_ui/properties_constraint/__init__.pyi +79 -142
- bl_ui/properties_data_armature/__init__.pyi +17 -32
- bl_ui/properties_data_bone/__init__.pyi +10 -15
- bl_ui/properties_data_camera/__init__.pyi +14 -29
- bl_ui/properties_data_curve/__init__.pyi +15 -40
- bl_ui/properties_data_curves/__init__.pyi +6 -9
- bl_ui/properties_data_empty/__init__.pyi +2 -3
- bl_ui/properties_data_gpencil/__init__.pyi +23 -37
- bl_ui/properties_data_grease_pencil/__init__.pyi +14 -36
- bl_ui/properties_data_lattice/__init__.pyi +3 -4
- bl_ui/properties_data_light/__init__.pyi +12 -23
- bl_ui/properties_data_lightprobe/__init__.pyi +13 -36
- bl_ui/properties_data_mesh/__init__.pyi +20 -27
- bl_ui/properties_data_metaball/__init__.pyi +5 -8
- bl_ui/properties_data_modifier/__init__.pyi +9 -24
- bl_ui/properties_data_pointcloud/__init__.pyi +5 -10
- bl_ui/properties_data_shaderfx/__init__.pyi +1 -2
- bl_ui/properties_data_speaker/__init__.pyi +5 -6
- bl_ui/properties_data_volume/__init__.pyi +8 -13
- bl_ui/properties_freestyle/__init__.pyi +26 -112
- bl_ui/properties_grease_pencil_common/__init__.pyi +15 -16
- bl_ui/properties_mask_common/__init__.pyi +7 -8
- bl_ui/properties_material/__init__.pyi +16 -40
- bl_ui/properties_material_gpencil/__init__.pyi +10 -28
- bl_ui/properties_object/__init__.pyi +14 -25
- bl_ui/properties_output/__init__.pyi +18 -45
- bl_ui/properties_paint_common/__init__.pyi +9 -10
- bl_ui/properties_particle/__init__.pyi +52 -134
- bl_ui/properties_physics_cloth/__init__.pyi +14 -35
- bl_ui/properties_physics_common/__init__.pyi +1 -2
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +22 -61
- bl_ui/properties_physics_field/__init__.pyi +10 -27
- bl_ui/properties_physics_fluid/__init__.pyi +28 -51
- bl_ui/properties_physics_geometry_nodes/__init__.pyi +1 -2
- bl_ui/properties_physics_rigidbody/__init__.pyi +8 -17
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +13 -14
- bl_ui/properties_physics_softbody/__init__.pyi +15 -44
- bl_ui/properties_render/__init__.pyi +55 -146
- bl_ui/properties_scene/__init__.pyi +15 -28
- bl_ui/properties_texture/__init__.pyi +26 -70
- bl_ui/properties_view_layer/__init__.pyi +49 -80
- bl_ui/properties_workspace/__init__.pyi +4 -8
- bl_ui/properties_world/__init__.pyi +10 -17
- bl_ui/space_clip/__init__.pyi +72 -116
- bl_ui/space_console/__init__.pyi +6 -7
- bl_ui/space_dopesheet/__init__.pyi +39 -56
- bl_ui/space_filebrowser/__init__.pyi +29 -44
- bl_ui/space_graph/__init__.pyi +20 -23
- bl_ui/space_image/__init__.pyi +69 -134
- bl_ui/space_info/__init__.pyi +6 -7
- bl_ui/space_nla/__init__.pyi +17 -26
- bl_ui/space_node/__init__.pyi +28 -35
- bl_ui/space_outliner/__init__.pyi +14 -15
- bl_ui/space_properties/__init__.pyi +3 -4
- bl_ui/space_sequencer/__init__.pyi +80 -134
- bl_ui/space_spreadsheet/__init__.pyi +1 -2
- bl_ui/space_statusbar/__init__.pyi +1 -2
- bl_ui/space_text/__init__.pyi +16 -17
- bl_ui/space_time/__init__.pyi +7 -12
- bl_ui/space_toolsystem_common/__init__.pyi +1 -2
- bl_ui/space_toolsystem_toolbar/__init__.pyi +4 -13
- bl_ui/space_topbar/__init__.pyi +26 -27
- bl_ui/space_userpref/__init__.pyi +91 -196
- bl_ui/space_view3d/__init__.pyi +279 -342
- bl_ui/space_view3d_toolbar/__init__.pyi +613 -897
- bl_ui/temp_anim_layers/__init__.pyi +1 -2
- bpy/ops/sequencer/__init__.pyi +1 -1
- bpy/types/__init__.pyi +29718 -29418
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240723.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240723.dist-info}/RECORD +87 -87
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240723.dist-info}/WHEEL +1 -1
- freestyle/utils/__init__.pyi +1 -1
- nodeitems_builtins/__init__.pyi +4 -4
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240723.dist-info}/top_level.txt +0 -0
|
@@ -2,7 +2,6 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bpy.types
|
|
5
|
-
import bpy_types
|
|
6
5
|
import rna_prop_ui
|
|
7
6
|
|
|
8
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
@@ -13,7 +12,7 @@ class SceneButtonsPanel:
|
|
|
13
12
|
bl_region_type: typing.Any
|
|
14
13
|
bl_space_type: typing.Any
|
|
15
14
|
|
|
16
|
-
class SCENE_PT_audio(bpy.types.Panel
|
|
15
|
+
class SCENE_PT_audio(SceneButtonsPanel, bpy.types.Panel):
|
|
17
16
|
bl_context: typing.Any
|
|
18
17
|
bl_label: typing.Any
|
|
19
18
|
bl_options: typing.Any
|
|
@@ -46,7 +45,7 @@ class SCENE_PT_audio(bpy.types.Panel, SceneButtonsPanel, bpy_types._GenericUI):
|
|
|
46
45
|
...
|
|
47
46
|
|
|
48
47
|
class SCENE_PT_custom_props(
|
|
49
|
-
|
|
48
|
+
rna_prop_ui.PropertyPanel, SceneButtonsPanel, bpy.types.Panel
|
|
50
49
|
):
|
|
51
50
|
"""The subclass should have its own poll function
|
|
52
51
|
and the variable '_context_path' MUST be set.
|
|
@@ -77,9 +76,7 @@ class SCENE_PT_custom_props(
|
|
|
77
76
|
"""
|
|
78
77
|
...
|
|
79
78
|
|
|
80
|
-
class SCENE_PT_eevee_next_light_probes(
|
|
81
|
-
bpy.types.Panel, SceneButtonsPanel, bpy_types._GenericUI
|
|
82
|
-
):
|
|
79
|
+
class SCENE_PT_eevee_next_light_probes(SceneButtonsPanel, bpy.types.Panel):
|
|
83
80
|
COMPAT_ENGINES: typing.Any
|
|
84
81
|
bl_context: typing.Any
|
|
85
82
|
bl_label: typing.Any
|
|
@@ -121,7 +118,7 @@ class SCENE_PT_eevee_next_light_probes(
|
|
|
121
118
|
...
|
|
122
119
|
|
|
123
120
|
class SCENE_PT_keyframing_settings(
|
|
124
|
-
|
|
121
|
+
SceneKeyingSetsPanel, SceneButtonsPanel, bpy.types.Panel
|
|
125
122
|
):
|
|
126
123
|
bl_context: typing.Any
|
|
127
124
|
bl_label: typing.Any
|
|
@@ -163,7 +160,7 @@ class SCENE_PT_keyframing_settings(
|
|
|
163
160
|
...
|
|
164
161
|
|
|
165
162
|
class SCENE_PT_keying_set_paths(
|
|
166
|
-
|
|
163
|
+
SceneKeyingSetsPanel, SceneButtonsPanel, bpy.types.Panel
|
|
167
164
|
):
|
|
168
165
|
bl_context: typing.Any
|
|
169
166
|
bl_label: typing.Any
|
|
@@ -204,9 +201,7 @@ class SCENE_PT_keying_set_paths(
|
|
|
204
201
|
"""
|
|
205
202
|
...
|
|
206
203
|
|
|
207
|
-
class SCENE_PT_keying_sets(
|
|
208
|
-
bpy.types.Panel, SceneButtonsPanel, SceneKeyingSetsPanel, bpy_types._GenericUI
|
|
209
|
-
):
|
|
204
|
+
class SCENE_PT_keying_sets(SceneKeyingSetsPanel, SceneButtonsPanel, bpy.types.Panel):
|
|
210
205
|
bl_context: typing.Any
|
|
211
206
|
bl_label: typing.Any
|
|
212
207
|
bl_options: typing.Any
|
|
@@ -238,7 +233,7 @@ class SCENE_PT_keying_sets(
|
|
|
238
233
|
"""
|
|
239
234
|
...
|
|
240
235
|
|
|
241
|
-
class SCENE_PT_physics(bpy.types.Panel
|
|
236
|
+
class SCENE_PT_physics(SceneButtonsPanel, bpy.types.Panel):
|
|
242
237
|
bl_context: typing.Any
|
|
243
238
|
bl_label: typing.Any
|
|
244
239
|
bl_options: typing.Any
|
|
@@ -277,9 +272,7 @@ class SCENE_PT_physics(bpy.types.Panel, SceneButtonsPanel, bpy_types._GenericUI)
|
|
|
277
272
|
"""
|
|
278
273
|
...
|
|
279
274
|
|
|
280
|
-
class SCENE_PT_rigid_body_cache(
|
|
281
|
-
bpy.types.Panel, RigidBodySubPanel, SceneButtonsPanel, bpy_types._GenericUI
|
|
282
|
-
):
|
|
275
|
+
class SCENE_PT_rigid_body_cache(RigidBodySubPanel, bpy.types.Panel):
|
|
283
276
|
bl_context: typing.Any
|
|
284
277
|
bl_label: typing.Any
|
|
285
278
|
bl_options: typing.Any
|
|
@@ -312,9 +305,7 @@ class SCENE_PT_rigid_body_cache(
|
|
|
312
305
|
"""
|
|
313
306
|
...
|
|
314
307
|
|
|
315
|
-
class SCENE_PT_rigid_body_field_weights(
|
|
316
|
-
bpy.types.Panel, RigidBodySubPanel, SceneButtonsPanel, bpy_types._GenericUI
|
|
317
|
-
):
|
|
308
|
+
class SCENE_PT_rigid_body_field_weights(RigidBodySubPanel, bpy.types.Panel):
|
|
318
309
|
bl_context: typing.Any
|
|
319
310
|
bl_label: typing.Any
|
|
320
311
|
bl_options: typing.Any
|
|
@@ -347,9 +338,7 @@ class SCENE_PT_rigid_body_field_weights(
|
|
|
347
338
|
"""
|
|
348
339
|
...
|
|
349
340
|
|
|
350
|
-
class SCENE_PT_rigid_body_world(
|
|
351
|
-
bpy.types.Panel, SceneButtonsPanel, bpy_types._GenericUI
|
|
352
|
-
):
|
|
341
|
+
class SCENE_PT_rigid_body_world(SceneButtonsPanel, bpy.types.Panel):
|
|
353
342
|
bl_context: typing.Any
|
|
354
343
|
bl_label: typing.Any
|
|
355
344
|
bl_options: typing.Any
|
|
@@ -388,9 +377,7 @@ class SCENE_PT_rigid_body_world(
|
|
|
388
377
|
"""
|
|
389
378
|
...
|
|
390
379
|
|
|
391
|
-
class SCENE_PT_rigid_body_world_settings(
|
|
392
|
-
bpy.types.Panel, RigidBodySubPanel, SceneButtonsPanel, bpy_types._GenericUI
|
|
393
|
-
):
|
|
380
|
+
class SCENE_PT_rigid_body_world_settings(RigidBodySubPanel, bpy.types.Panel):
|
|
394
381
|
bl_context: typing.Any
|
|
395
382
|
bl_label: typing.Any
|
|
396
383
|
bl_parent_id: typing.Any
|
|
@@ -422,7 +409,7 @@ class SCENE_PT_rigid_body_world_settings(
|
|
|
422
409
|
"""
|
|
423
410
|
...
|
|
424
411
|
|
|
425
|
-
class SCENE_PT_scene(bpy.types.Panel
|
|
412
|
+
class SCENE_PT_scene(SceneButtonsPanel, bpy.types.Panel):
|
|
426
413
|
bl_context: typing.Any
|
|
427
414
|
bl_label: typing.Any
|
|
428
415
|
bl_region_type: typing.Any
|
|
@@ -453,7 +440,7 @@ class SCENE_PT_scene(bpy.types.Panel, SceneButtonsPanel, bpy_types._GenericUI):
|
|
|
453
440
|
"""
|
|
454
441
|
...
|
|
455
442
|
|
|
456
|
-
class SCENE_PT_simulation(bpy.types.Panel
|
|
443
|
+
class SCENE_PT_simulation(SceneButtonsPanel, bpy.types.Panel):
|
|
457
444
|
bl_context: typing.Any
|
|
458
445
|
bl_label: typing.Any
|
|
459
446
|
bl_options: typing.Any
|
|
@@ -485,7 +472,7 @@ class SCENE_PT_simulation(bpy.types.Panel, SceneButtonsPanel, bpy_types._Generic
|
|
|
485
472
|
"""
|
|
486
473
|
...
|
|
487
474
|
|
|
488
|
-
class SCENE_PT_unit(bpy.types.Panel
|
|
475
|
+
class SCENE_PT_unit(SceneButtonsPanel, bpy.types.Panel):
|
|
489
476
|
bl_context: typing.Any
|
|
490
477
|
bl_label: typing.Any
|
|
491
478
|
bl_options: typing.Any
|
|
@@ -517,7 +504,7 @@ class SCENE_PT_unit(bpy.types.Panel, SceneButtonsPanel, bpy_types._GenericUI):
|
|
|
517
504
|
"""
|
|
518
505
|
...
|
|
519
506
|
|
|
520
|
-
class SCENE_UL_keying_set_paths(bpy.types.UIList
|
|
507
|
+
class SCENE_UL_keying_set_paths(bpy.types.UIList):
|
|
521
508
|
bl_rna: typing.Any
|
|
522
509
|
id_data: typing.Any
|
|
523
510
|
|
|
@@ -2,13 +2,12 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bpy.types
|
|
5
|
-
import bpy_types
|
|
6
5
|
import rna_prop_ui
|
|
7
6
|
|
|
8
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
9
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
10
9
|
|
|
11
|
-
class TEXTURE_MT_context_menu(bpy.types.Menu
|
|
10
|
+
class TEXTURE_MT_context_menu(bpy.types.Menu):
|
|
12
11
|
COMPAT_ENGINES: typing.Any
|
|
13
12
|
bl_label: typing.Any
|
|
14
13
|
bl_rna: typing.Any
|
|
@@ -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(TextureTypePanel, bpy.types.Panel):
|
|
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(TextureTypePanel, bpy.types.Panel):
|
|
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(TextureColorsPoll, TextureButtonsPanel, bpy.types.Panel):
|
|
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(TextureColorsPoll, TextureButtonsPanel, bpy.types.Panel):
|
|
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(TextureButtonsPanel, bpy.types.Panel):
|
|
189
180
|
COMPAT_ENGINES: typing.Any
|
|
190
181
|
bl_context: typing.Any
|
|
191
182
|
bl_label: typing.Any
|
|
@@ -219,10 +210,7 @@ class TEXTURE_PT_context(bpy.types.Panel, TextureButtonsPanel, bpy_types._Generi
|
|
|
219
210
|
...
|
|
220
211
|
|
|
221
212
|
class TEXTURE_PT_custom_props(
|
|
222
|
-
bpy.types.Panel
|
|
223
|
-
TextureButtonsPanel,
|
|
224
|
-
rna_prop_ui.PropertyPanel,
|
|
225
|
-
bpy_types._GenericUI,
|
|
213
|
+
rna_prop_ui.PropertyPanel, TextureButtonsPanel, bpy.types.Panel
|
|
226
214
|
):
|
|
227
215
|
"""The subclass should have its own poll function
|
|
228
216
|
and the variable '_context_path' MUST be set.
|
|
@@ -262,9 +250,7 @@ class TEXTURE_PT_custom_props(
|
|
|
262
250
|
"""
|
|
263
251
|
...
|
|
264
252
|
|
|
265
|
-
class TEXTURE_PT_distortednoise(
|
|
266
|
-
bpy.types.Panel, TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
267
|
-
):
|
|
253
|
+
class TEXTURE_PT_distortednoise(TextureTypePanel, bpy.types.Panel):
|
|
268
254
|
COMPAT_ENGINES: typing.Any
|
|
269
255
|
bl_context: typing.Any
|
|
270
256
|
bl_label: 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(TextureTypePanel, bpy.types.Panel):
|
|
303
287
|
COMPAT_ENGINES: typing.Any
|
|
304
288
|
bl_context: typing.Any
|
|
305
289
|
bl_label: typing.Any
|
|
@@ -332,9 +316,7 @@ class TEXTURE_PT_image(
|
|
|
332
316
|
"""
|
|
333
317
|
...
|
|
334
318
|
|
|
335
|
-
class TEXTURE_PT_image_alpha(
|
|
336
|
-
bpy.types.Panel, TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
337
|
-
):
|
|
319
|
+
class TEXTURE_PT_image_alpha(TextureTypePanel, bpy.types.Panel):
|
|
338
320
|
COMPAT_ENGINES: typing.Any
|
|
339
321
|
bl_context: typing.Any
|
|
340
322
|
bl_label: typing.Any
|
|
@@ -376,9 +358,7 @@ class TEXTURE_PT_image_alpha(
|
|
|
376
358
|
"""
|
|
377
359
|
...
|
|
378
360
|
|
|
379
|
-
class TEXTURE_PT_image_mapping(
|
|
380
|
-
bpy.types.Panel, TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
381
|
-
):
|
|
361
|
+
class TEXTURE_PT_image_mapping(TextureTypePanel, bpy.types.Panel):
|
|
382
362
|
COMPAT_ENGINES: typing.Any
|
|
383
363
|
bl_context: typing.Any
|
|
384
364
|
bl_label: typing.Any
|
|
@@ -413,9 +393,7 @@ class TEXTURE_PT_image_mapping(
|
|
|
413
393
|
"""
|
|
414
394
|
...
|
|
415
395
|
|
|
416
|
-
class TEXTURE_PT_image_mapping_crop(
|
|
417
|
-
bpy.types.Panel, TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
418
|
-
):
|
|
396
|
+
class TEXTURE_PT_image_mapping_crop(TextureTypePanel, bpy.types.Panel):
|
|
419
397
|
COMPAT_ENGINES: typing.Any
|
|
420
398
|
bl_context: typing.Any
|
|
421
399
|
bl_label: typing.Any
|
|
@@ -450,9 +428,7 @@ class TEXTURE_PT_image_mapping_crop(
|
|
|
450
428
|
"""
|
|
451
429
|
...
|
|
452
430
|
|
|
453
|
-
class TEXTURE_PT_image_sampling(
|
|
454
|
-
bpy.types.Panel, TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
455
|
-
):
|
|
431
|
+
class TEXTURE_PT_image_sampling(TextureTypePanel, bpy.types.Panel):
|
|
456
432
|
COMPAT_ENGINES: typing.Any
|
|
457
433
|
bl_context: typing.Any
|
|
458
434
|
bl_label: typing.Any
|
|
@@ -487,9 +463,7 @@ class TEXTURE_PT_image_sampling(
|
|
|
487
463
|
"""
|
|
488
464
|
...
|
|
489
465
|
|
|
490
|
-
class TEXTURE_PT_image_settings(
|
|
491
|
-
bpy.types.Panel, TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
492
|
-
):
|
|
466
|
+
class TEXTURE_PT_image_settings(TextureTypePanel, bpy.types.Panel):
|
|
493
467
|
COMPAT_ENGINES: typing.Any
|
|
494
468
|
bl_context: typing.Any
|
|
495
469
|
bl_label: typing.Any
|
|
@@ -523,9 +497,7 @@ class TEXTURE_PT_image_settings(
|
|
|
523
497
|
"""
|
|
524
498
|
...
|
|
525
499
|
|
|
526
|
-
class TEXTURE_PT_influence(
|
|
527
|
-
bpy.types.Panel, TextureSlotPanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
528
|
-
):
|
|
500
|
+
class TEXTURE_PT_influence(TextureSlotPanel, bpy.types.Panel):
|
|
529
501
|
COMPAT_ENGINES: typing.Any
|
|
530
502
|
bl_context: typing.Any
|
|
531
503
|
bl_label: typing.Any
|
|
@@ -566,9 +538,7 @@ class TEXTURE_PT_influence(
|
|
|
566
538
|
"""
|
|
567
539
|
...
|
|
568
540
|
|
|
569
|
-
class TEXTURE_PT_magic(
|
|
570
|
-
bpy.types.Panel, TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
571
|
-
):
|
|
541
|
+
class TEXTURE_PT_magic(TextureTypePanel, bpy.types.Panel):
|
|
572
542
|
COMPAT_ENGINES: typing.Any
|
|
573
543
|
bl_context: typing.Any
|
|
574
544
|
bl_label: typing.Any
|
|
@@ -601,9 +571,7 @@ class TEXTURE_PT_magic(
|
|
|
601
571
|
"""
|
|
602
572
|
...
|
|
603
573
|
|
|
604
|
-
class TEXTURE_PT_mapping(
|
|
605
|
-
bpy.types.Panel, TextureSlotPanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
606
|
-
):
|
|
574
|
+
class TEXTURE_PT_mapping(TextureSlotPanel, bpy.types.Panel):
|
|
607
575
|
COMPAT_ENGINES: typing.Any
|
|
608
576
|
bl_context: typing.Any
|
|
609
577
|
bl_label: typing.Any
|
|
@@ -643,9 +611,7 @@ class TEXTURE_PT_mapping(
|
|
|
643
611
|
"""
|
|
644
612
|
...
|
|
645
613
|
|
|
646
|
-
class TEXTURE_PT_marble(
|
|
647
|
-
bpy.types.Panel, TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
648
|
-
):
|
|
614
|
+
class TEXTURE_PT_marble(TextureTypePanel, bpy.types.Panel):
|
|
649
615
|
COMPAT_ENGINES: typing.Any
|
|
650
616
|
bl_context: typing.Any
|
|
651
617
|
bl_label: typing.Any
|
|
@@ -678,9 +644,7 @@ class TEXTURE_PT_marble(
|
|
|
678
644
|
"""
|
|
679
645
|
...
|
|
680
646
|
|
|
681
|
-
class TEXTURE_PT_musgrave(
|
|
682
|
-
bpy.types.Panel, TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
683
|
-
):
|
|
647
|
+
class TEXTURE_PT_musgrave(TextureTypePanel, bpy.types.Panel):
|
|
684
648
|
COMPAT_ENGINES: typing.Any
|
|
685
649
|
bl_context: typing.Any
|
|
686
650
|
bl_label: typing.Any
|
|
@@ -713,7 +677,7 @@ class TEXTURE_PT_musgrave(
|
|
|
713
677
|
"""
|
|
714
678
|
...
|
|
715
679
|
|
|
716
|
-
class TEXTURE_PT_node(bpy.types.Panel
|
|
680
|
+
class TEXTURE_PT_node(TextureButtonsPanel, bpy.types.Panel):
|
|
717
681
|
COMPAT_ENGINES: typing.Any
|
|
718
682
|
bl_context: typing.Any
|
|
719
683
|
bl_label: typing.Any
|
|
@@ -753,7 +717,7 @@ class TEXTURE_PT_node(bpy.types.Panel, TextureButtonsPanel, bpy_types._GenericUI
|
|
|
753
717
|
"""
|
|
754
718
|
...
|
|
755
719
|
|
|
756
|
-
class TEXTURE_PT_preview(bpy.types.Panel
|
|
720
|
+
class TEXTURE_PT_preview(TextureButtonsPanel, bpy.types.Panel):
|
|
757
721
|
COMPAT_ENGINES: typing.Any
|
|
758
722
|
bl_context: typing.Any
|
|
759
723
|
bl_label: typing.Any
|
|
@@ -793,9 +757,7 @@ class TEXTURE_PT_preview(bpy.types.Panel, TextureButtonsPanel, bpy_types._Generi
|
|
|
793
757
|
"""
|
|
794
758
|
...
|
|
795
759
|
|
|
796
|
-
class TEXTURE_PT_stucci(
|
|
797
|
-
bpy.types.Panel, TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
798
|
-
):
|
|
760
|
+
class TEXTURE_PT_stucci(TextureTypePanel, bpy.types.Panel):
|
|
799
761
|
COMPAT_ENGINES: typing.Any
|
|
800
762
|
bl_context: typing.Any
|
|
801
763
|
bl_label: typing.Any
|
|
@@ -828,9 +790,7 @@ class TEXTURE_PT_stucci(
|
|
|
828
790
|
"""
|
|
829
791
|
...
|
|
830
792
|
|
|
831
|
-
class TEXTURE_PT_voronoi(
|
|
832
|
-
bpy.types.Panel, TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
833
|
-
):
|
|
793
|
+
class TEXTURE_PT_voronoi(TextureTypePanel, bpy.types.Panel):
|
|
834
794
|
COMPAT_ENGINES: typing.Any
|
|
835
795
|
bl_context: typing.Any
|
|
836
796
|
bl_label: typing.Any
|
|
@@ -863,9 +823,7 @@ class TEXTURE_PT_voronoi(
|
|
|
863
823
|
"""
|
|
864
824
|
...
|
|
865
825
|
|
|
866
|
-
class TEXTURE_PT_voronoi_feature_weights(
|
|
867
|
-
bpy.types.Panel, TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
868
|
-
):
|
|
826
|
+
class TEXTURE_PT_voronoi_feature_weights(TextureTypePanel, bpy.types.Panel):
|
|
869
827
|
COMPAT_ENGINES: typing.Any
|
|
870
828
|
bl_context: typing.Any
|
|
871
829
|
bl_label: typing.Any
|
|
@@ -899,9 +857,7 @@ class TEXTURE_PT_voronoi_feature_weights(
|
|
|
899
857
|
"""
|
|
900
858
|
...
|
|
901
859
|
|
|
902
|
-
class TEXTURE_PT_wood(
|
|
903
|
-
bpy.types.Panel, TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
904
|
-
):
|
|
860
|
+
class TEXTURE_PT_wood(TextureTypePanel, bpy.types.Panel):
|
|
905
861
|
COMPAT_ENGINES: typing.Any
|
|
906
862
|
bl_context: typing.Any
|
|
907
863
|
bl_label: typing.Any
|
|
@@ -934,7 +890,7 @@ class TEXTURE_PT_wood(
|
|
|
934
890
|
"""
|
|
935
891
|
...
|
|
936
892
|
|
|
937
|
-
class TEXTURE_UL_texslots(bpy.types.UIList
|
|
893
|
+
class TEXTURE_UL_texslots(bpy.types.UIList):
|
|
938
894
|
bl_rna: typing.Any
|
|
939
895
|
id_data: typing.Any
|
|
940
896
|
|
|
@@ -2,13 +2,12 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bpy.types
|
|
5
|
-
import bpy_types
|
|
6
5
|
import rna_prop_ui
|
|
7
6
|
|
|
8
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
9
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
10
9
|
|
|
11
|
-
class VIEWLAYER_MT_lightgroup_sync(bpy.types.Menu
|
|
10
|
+
class VIEWLAYER_MT_lightgroup_sync(bpy.types.Menu):
|
|
12
11
|
bl_label: typing.Any
|
|
13
12
|
bl_rna: typing.Any
|
|
14
13
|
id_data: typing.Any
|
|
@@ -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(ViewLayerButtonsPanel, bpy.types.Panel):
|
|
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(ViewLayerButtonsPanel, bpy.types.Panel):
|
|
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(ViewLayerButtonsPanel, bpy.types.Panel):
|
|
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(ViewLayerButtonsPanel, bpy.types.Panel):
|
|
147
138
|
COMPAT_ENGINES: typing.Any
|
|
148
139
|
bl_context: typing.Any
|
|
149
140
|
bl_label: typing.Any
|
|
@@ -177,7 +168,7 @@ class VIEWLAYER_PT_eevee_next_layer_passes_data(
|
|
|
177
168
|
...
|
|
178
169
|
|
|
179
170
|
class VIEWLAYER_PT_eevee_next_layer_passes_light(
|
|
180
|
-
bpy.types.Panel
|
|
171
|
+
ViewLayerButtonsPanel, bpy.types.Panel
|
|
181
172
|
):
|
|
182
173
|
COMPAT_ENGINES: typing.Any
|
|
183
174
|
bl_context: typing.Any
|
|
@@ -211,7 +202,7 @@ class VIEWLAYER_PT_eevee_next_layer_passes_light(
|
|
|
211
202
|
"""
|
|
212
203
|
...
|
|
213
204
|
|
|
214
|
-
class VIEWLAYER_PT_filter(bpy.types.Panel
|
|
205
|
+
class VIEWLAYER_PT_filter(ViewLayerButtonsPanel, bpy.types.Panel):
|
|
215
206
|
COMPAT_ENGINES: typing.Any
|
|
216
207
|
bl_context: typing.Any
|
|
217
208
|
bl_label: typing.Any
|
|
@@ -244,7 +235,7 @@ class VIEWLAYER_PT_filter(bpy.types.Panel, ViewLayerButtonsPanel, bpy_types._Gen
|
|
|
244
235
|
"""
|
|
245
236
|
...
|
|
246
237
|
|
|
247
|
-
class VIEWLAYER_PT_layer(bpy.types.Panel
|
|
238
|
+
class VIEWLAYER_PT_layer(ViewLayerButtonsPanel, bpy.types.Panel):
|
|
248
239
|
COMPAT_ENGINES: typing.Any
|
|
249
240
|
bl_context: typing.Any
|
|
250
241
|
bl_label: typing.Any
|
|
@@ -276,9 +267,7 @@ class VIEWLAYER_PT_layer(bpy.types.Panel, ViewLayerButtonsPanel, bpy_types._Gene
|
|
|
276
267
|
"""
|
|
277
268
|
...
|
|
278
269
|
|
|
279
|
-
class VIEWLAYER_PT_layer_custom_props(
|
|
280
|
-
bpy.types.Panel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
|
|
281
|
-
):
|
|
270
|
+
class VIEWLAYER_PT_layer_custom_props(rna_prop_ui.PropertyPanel, bpy.types.Panel):
|
|
282
271
|
"""The subclass should have its own poll function
|
|
283
272
|
and the variable '_context_path' MUST be set.
|
|
284
273
|
"""
|
|
@@ -308,9 +297,7 @@ class VIEWLAYER_PT_layer_custom_props(
|
|
|
308
297
|
"""
|
|
309
298
|
...
|
|
310
299
|
|
|
311
|
-
class VIEWLAYER_PT_layer_passes(
|
|
312
|
-
bpy.types.Panel, ViewLayerButtonsPanel, bpy_types._GenericUI
|
|
313
|
-
):
|
|
300
|
+
class VIEWLAYER_PT_layer_passes(ViewLayerButtonsPanel, bpy.types.Panel):
|
|
314
301
|
COMPAT_ENGINES: typing.Any
|
|
315
302
|
bl_context: typing.Any
|
|
316
303
|
bl_label: typing.Any
|
|
@@ -342,13 +329,9 @@ class VIEWLAYER_PT_layer_passes(
|
|
|
342
329
|
"""
|
|
343
330
|
...
|
|
344
331
|
|
|
345
|
-
class
|
|
346
|
-
bpy.types.Panel, ViewLayerAOVPanel, ViewLayerButtonsPanel, bpy_types._GenericUI
|
|
347
|
-
):
|
|
348
|
-
COMPAT_ENGINES: typing.Any
|
|
332
|
+
class ViewLayerAOVPanel(ViewLayerButtonsPanel, bpy.types.Panel):
|
|
349
333
|
bl_context: typing.Any
|
|
350
334
|
bl_label: typing.Any
|
|
351
|
-
bl_parent_id: typing.Any
|
|
352
335
|
bl_region_type: typing.Any
|
|
353
336
|
bl_rna: typing.Any
|
|
354
337
|
bl_space_type: typing.Any
|
|
@@ -370,12 +353,14 @@ class VIEWLAYER_PT_layer_passes_aov(
|
|
|
370
353
|
"""
|
|
371
354
|
...
|
|
372
355
|
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
356
|
+
def draw(self, context):
|
|
357
|
+
"""
|
|
358
|
+
|
|
359
|
+
:param context:
|
|
360
|
+
"""
|
|
361
|
+
...
|
|
362
|
+
|
|
363
|
+
class VIEWLAYER_PT_layer_passes_cryptomatte(ViewLayerCryptomattePanel, bpy.types.Panel):
|
|
379
364
|
COMPAT_ENGINES: typing.Any
|
|
380
365
|
bl_context: typing.Any
|
|
381
366
|
bl_label: typing.Any
|
|
@@ -401,16 +386,9 @@ class VIEWLAYER_PT_layer_passes_cryptomatte(
|
|
|
401
386
|
"""
|
|
402
387
|
...
|
|
403
388
|
|
|
404
|
-
class
|
|
405
|
-
bpy.types.Panel,
|
|
406
|
-
ViewLayerLightgroupsPanel,
|
|
407
|
-
ViewLayerButtonsPanel,
|
|
408
|
-
bpy_types._GenericUI,
|
|
409
|
-
):
|
|
410
|
-
COMPAT_ENGINES: typing.Any
|
|
389
|
+
class ViewLayerLightgroupsPanel(ViewLayerButtonsPanel, bpy.types.Panel):
|
|
411
390
|
bl_context: typing.Any
|
|
412
391
|
bl_label: typing.Any
|
|
413
|
-
bl_parent_id: typing.Any
|
|
414
392
|
bl_region_type: typing.Any
|
|
415
393
|
bl_rna: typing.Any
|
|
416
394
|
bl_space_type: typing.Any
|
|
@@ -432,9 +410,14 @@ class VIEWLAYER_PT_layer_passes_lightgroups(
|
|
|
432
410
|
"""
|
|
433
411
|
...
|
|
434
412
|
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
413
|
+
def draw(self, context):
|
|
414
|
+
"""
|
|
415
|
+
|
|
416
|
+
:param context:
|
|
417
|
+
"""
|
|
418
|
+
...
|
|
419
|
+
|
|
420
|
+
class VIEWLAYER_PT_workbench_layer_passes_data(ViewLayerButtonsPanel, bpy.types.Panel):
|
|
438
421
|
COMPAT_ENGINES: typing.Any
|
|
439
422
|
bl_context: typing.Any
|
|
440
423
|
bl_label: typing.Any
|
|
@@ -467,7 +450,7 @@ class VIEWLAYER_PT_workbench_layer_passes_data(
|
|
|
467
450
|
"""
|
|
468
451
|
...
|
|
469
452
|
|
|
470
|
-
class VIEWLAYER_UL_aov(bpy.types.UIList
|
|
453
|
+
class VIEWLAYER_UL_aov(bpy.types.UIList):
|
|
471
454
|
bl_rna: typing.Any
|
|
472
455
|
id_data: typing.Any
|
|
473
456
|
|
|
@@ -502,7 +485,20 @@ class VIEWLAYER_UL_aov(bpy.types.UIList, bpy_types._GenericUI):
|
|
|
502
485
|
"""
|
|
503
486
|
...
|
|
504
487
|
|
|
505
|
-
class
|
|
488
|
+
class ViewLayerButtonsPanel:
|
|
489
|
+
bl_context: typing.Any
|
|
490
|
+
bl_region_type: typing.Any
|
|
491
|
+
bl_space_type: typing.Any
|
|
492
|
+
|
|
493
|
+
@classmethod
|
|
494
|
+
def poll(cls, context):
|
|
495
|
+
"""
|
|
496
|
+
|
|
497
|
+
:param context:
|
|
498
|
+
"""
|
|
499
|
+
...
|
|
500
|
+
|
|
501
|
+
class ViewLayerCryptomattePanel(ViewLayerButtonsPanel, bpy.types.Panel):
|
|
506
502
|
bl_context: typing.Any
|
|
507
503
|
bl_label: typing.Any
|
|
508
504
|
bl_region_type: typing.Any
|
|
@@ -533,24 +529,11 @@ class ViewLayerAOVPanel(bpy.types.Panel, ViewLayerButtonsPanel, bpy_types._Gener
|
|
|
533
529
|
"""
|
|
534
530
|
...
|
|
535
531
|
|
|
536
|
-
class
|
|
537
|
-
|
|
538
|
-
bl_region_type: typing.Any
|
|
539
|
-
bl_space_type: typing.Any
|
|
540
|
-
|
|
541
|
-
@classmethod
|
|
542
|
-
def poll(cls, context):
|
|
543
|
-
"""
|
|
544
|
-
|
|
545
|
-
:param context:
|
|
546
|
-
"""
|
|
547
|
-
...
|
|
548
|
-
|
|
549
|
-
class ViewLayerCryptomattePanel(
|
|
550
|
-
bpy.types.Panel, ViewLayerButtonsPanel, bpy_types._GenericUI
|
|
551
|
-
):
|
|
532
|
+
class VIEWLAYER_PT_layer_passes_aov(ViewLayerAOVPanel):
|
|
533
|
+
COMPAT_ENGINES: typing.Any
|
|
552
534
|
bl_context: typing.Any
|
|
553
535
|
bl_label: typing.Any
|
|
536
|
+
bl_parent_id: typing.Any
|
|
554
537
|
bl_region_type: typing.Any
|
|
555
538
|
bl_rna: typing.Any
|
|
556
539
|
bl_space_type: typing.Any
|
|
@@ -572,18 +555,11 @@ class ViewLayerCryptomattePanel(
|
|
|
572
555
|
"""
|
|
573
556
|
...
|
|
574
557
|
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
:param context:
|
|
579
|
-
"""
|
|
580
|
-
...
|
|
581
|
-
|
|
582
|
-
class ViewLayerLightgroupsPanel(
|
|
583
|
-
bpy.types.Panel, ViewLayerButtonsPanel, bpy_types._GenericUI
|
|
584
|
-
):
|
|
558
|
+
class VIEWLAYER_PT_layer_passes_lightgroups(ViewLayerLightgroupsPanel):
|
|
559
|
+
COMPAT_ENGINES: typing.Any
|
|
585
560
|
bl_context: typing.Any
|
|
586
561
|
bl_label: typing.Any
|
|
562
|
+
bl_parent_id: typing.Any
|
|
587
563
|
bl_region_type: typing.Any
|
|
588
564
|
bl_rna: typing.Any
|
|
589
565
|
bl_space_type: typing.Any
|
|
@@ -604,10 +580,3 @@ class ViewLayerLightgroupsPanel(
|
|
|
604
580
|
:rtype: typing.Any
|
|
605
581
|
"""
|
|
606
582
|
...
|
|
607
|
-
|
|
608
|
-
def draw(self, context):
|
|
609
|
-
"""
|
|
610
|
-
|
|
611
|
-
:param context:
|
|
612
|
-
"""
|
|
613
|
-
...
|