fake-bpy-module 20240706__py3-none-any.whl → 20240707__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/assets/__init__.pyi +8 -8
- bl_operators/image_as_planes/__init__.pyi +43 -43
- bl_operators/node/__init__.pyi +234 -234
- bl_operators/object_quick_effects/__init__.pyi +21 -21
- bl_operators/presets/__init__.pyi +388 -388
- bl_ui/properties_collection/__init__.pyi +12 -12
- bl_ui/properties_constraint/__init__.pyi +954 -954
- bl_ui/properties_data_armature/__init__.pyi +85 -85
- bl_ui/properties_data_bone/__init__.pyi +12 -12
- bl_ui/properties_data_curve/__init__.pyi +92 -92
- bl_ui/properties_data_curves/__init__.pyi +12 -12
- bl_ui/properties_data_empty/__init__.pyi +12 -12
- bl_ui/properties_data_gpencil/__init__.pyi +265 -265
- bl_ui/properties_data_grease_pencil/__init__.pyi +312 -312
- bl_ui/properties_data_lattice/__init__.pyi +12 -12
- bl_ui/properties_data_light/__init__.pyi +12 -12
- bl_ui/properties_data_lightprobe/__init__.pyi +12 -12
- bl_ui/properties_data_mesh/__init__.pyi +527 -527
- bl_ui/properties_data_metaball/__init__.pyi +12 -12
- bl_ui/properties_data_modifier/__init__.pyi +19 -19
- bl_ui/properties_data_pointcloud/__init__.pyi +140 -140
- bl_ui/properties_data_shaderfx/__init__.pyi +5 -5
- bl_ui/properties_data_speaker/__init__.pyi +12 -12
- bl_ui/properties_data_volume/__init__.pyi +65 -65
- bl_ui/properties_freestyle/__init__.pyi +248 -248
- bl_ui/properties_material/__init__.pyi +145 -145
- bl_ui/properties_material_gpencil/__init__.pyi +86 -86
- bl_ui/properties_object/__init__.pyi +75 -75
- bl_ui/properties_output/__init__.pyi +201 -201
- bl_ui/properties_particle/__init__.pyi +220 -220
- bl_ui/properties_physics_cloth/__init__.pyi +12 -12
- bl_ui/properties_physics_common/__init__.pyi +12 -12
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +187 -187
- bl_ui/properties_physics_field/__init__.pyi +19 -19
- bl_ui/properties_physics_fluid/__init__.pyi +61 -61
- bl_ui/properties_physics_rigidbody/__init__.pyi +5 -5
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +5 -5
- bl_ui/properties_physics_softbody/__init__.pyi +12 -12
- bl_ui/properties_render/__init__.pyi +217 -217
- bl_ui/properties_scene/__init__.pyi +143 -143
- bl_ui/properties_texture/__init__.pyi +156 -156
- bl_ui/properties_view_layer/__init__.pyi +78 -78
- bl_ui/properties_workspace/__init__.pyi +64 -64
- bl_ui/properties_world/__init__.pyi +12 -12
- bl_ui/space_clip/__init__.pyi +366 -366
- bl_ui/space_dopesheet/__init__.pyi +176 -176
- bl_ui/space_filebrowser/__init__.pyi +735 -735
- bl_ui/space_image/__init__.pyi +646 -646
- bl_ui/space_sequencer/__init__.pyi +841 -389
- bl_ui/space_time/__init__.pyi +11 -11
- bl_ui/space_userpref/__init__.pyi +684 -684
- bl_ui/space_view3d/__init__.pyi +1152 -1152
- bl_ui/space_view3d_toolbar/__init__.pyi +2831 -2831
- bpy/types/__init__.pyi +69750 -69696
- {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240707.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240707.dist-info}/RECORD +62 -62
- freestyle/utils/__init__.pyi +1 -1
- keyingsets_builtins/__init__.pyi +87 -87
- mathutils/__init__.pyi +156 -6
- nodeitems_builtins/__init__.pyi +7 -7
- {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240707.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240707.dist-info}/top_level.txt +0 -0
|
@@ -279,22 +279,15 @@ class TEXTURE_MT_context_menu(bpy_types._GenericUI):
|
|
|
279
279
|
"""
|
|
280
280
|
...
|
|
281
281
|
|
|
282
|
-
class TextureButtonsPanel:
|
|
282
|
+
class TEXTURE_PT_blend(TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI):
|
|
283
|
+
COMPAT_ENGINES: typing.Any
|
|
283
284
|
bl_context: typing.Any
|
|
285
|
+
bl_label: typing.Any
|
|
284
286
|
bl_region_type: typing.Any
|
|
285
|
-
bl_space_type: typing.Any
|
|
286
|
-
|
|
287
|
-
class TextureColorsPoll:
|
|
288
|
-
def poll(self, context):
|
|
289
|
-
"""
|
|
290
|
-
|
|
291
|
-
:param context:
|
|
292
|
-
"""
|
|
293
|
-
...
|
|
294
|
-
|
|
295
|
-
class TEXTURE_UL_texslots(bpy_types._GenericUI):
|
|
296
287
|
bl_rna: typing.Any
|
|
288
|
+
bl_space_type: typing.Any
|
|
297
289
|
id_data: typing.Any
|
|
290
|
+
tex_type: typing.Any
|
|
298
291
|
|
|
299
292
|
def append(self, draw_func):
|
|
300
293
|
"""Append a draw function to this menu,
|
|
@@ -328,27 +321,10 @@ class TEXTURE_UL_texslots(bpy_types._GenericUI):
|
|
|
328
321
|
"""
|
|
329
322
|
...
|
|
330
323
|
|
|
331
|
-
def
|
|
332
|
-
self,
|
|
333
|
-
_context,
|
|
334
|
-
layout,
|
|
335
|
-
_data,
|
|
336
|
-
item,
|
|
337
|
-
icon,
|
|
338
|
-
_active_data,
|
|
339
|
-
_active_propname,
|
|
340
|
-
_index,
|
|
341
|
-
):
|
|
324
|
+
def draw(self, context):
|
|
342
325
|
"""
|
|
343
326
|
|
|
344
|
-
:param
|
|
345
|
-
:param layout:
|
|
346
|
-
:param _data:
|
|
347
|
-
:param item:
|
|
348
|
-
:param icon:
|
|
349
|
-
:param _active_data:
|
|
350
|
-
:param _active_propname:
|
|
351
|
-
:param _index:
|
|
327
|
+
:param context:
|
|
352
328
|
"""
|
|
353
329
|
...
|
|
354
330
|
|
|
@@ -474,6 +450,13 @@ class TEXTURE_UL_texslots(bpy_types._GenericUI):
|
|
|
474
450
|
"""Returns the property from the path, raise an exception when not found."""
|
|
475
451
|
...
|
|
476
452
|
|
|
453
|
+
def poll(self, context):
|
|
454
|
+
"""
|
|
455
|
+
|
|
456
|
+
:param context:
|
|
457
|
+
"""
|
|
458
|
+
...
|
|
459
|
+
|
|
477
460
|
def pop(self):
|
|
478
461
|
"""Remove and return the value of the custom property assigned to key or default
|
|
479
462
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -524,15 +507,15 @@ class TEXTURE_UL_texslots(bpy_types._GenericUI):
|
|
|
524
507
|
"""
|
|
525
508
|
...
|
|
526
509
|
|
|
527
|
-
class
|
|
510
|
+
class TEXTURE_PT_clouds(TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI):
|
|
528
511
|
COMPAT_ENGINES: typing.Any
|
|
529
512
|
bl_context: typing.Any
|
|
530
513
|
bl_label: typing.Any
|
|
531
|
-
bl_options: typing.Any
|
|
532
514
|
bl_region_type: typing.Any
|
|
533
515
|
bl_rna: typing.Any
|
|
534
516
|
bl_space_type: typing.Any
|
|
535
517
|
id_data: typing.Any
|
|
518
|
+
tex_type: typing.Any
|
|
536
519
|
|
|
537
520
|
def append(self, draw_func):
|
|
538
521
|
"""Append a draw function to this menu,
|
|
@@ -695,6 +678,13 @@ class TEXTURE_PT_context(TextureButtonsPanel, bpy_types._GenericUI):
|
|
|
695
678
|
"""Returns the property from the path, raise an exception when not found."""
|
|
696
679
|
...
|
|
697
680
|
|
|
681
|
+
def poll(self, context):
|
|
682
|
+
"""
|
|
683
|
+
|
|
684
|
+
:param context:
|
|
685
|
+
"""
|
|
686
|
+
...
|
|
687
|
+
|
|
698
688
|
def pop(self):
|
|
699
689
|
"""Remove and return the value of the custom property assigned to key or default
|
|
700
690
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -745,18 +735,11 @@ class TEXTURE_PT_context(TextureButtonsPanel, bpy_types._GenericUI):
|
|
|
745
735
|
"""
|
|
746
736
|
...
|
|
747
737
|
|
|
748
|
-
class
|
|
749
|
-
TextureButtonsPanel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
|
|
750
|
-
):
|
|
751
|
-
"""The subclass should have its own poll function
|
|
752
|
-
and the variable '_context_path' MUST be set.
|
|
753
|
-
"""
|
|
754
|
-
|
|
738
|
+
class TEXTURE_PT_colors(TextureButtonsPanel, TextureColorsPoll, bpy_types._GenericUI):
|
|
755
739
|
COMPAT_ENGINES: typing.Any
|
|
756
740
|
bl_context: typing.Any
|
|
757
741
|
bl_label: typing.Any
|
|
758
742
|
bl_options: typing.Any
|
|
759
|
-
bl_order: typing.Any
|
|
760
743
|
bl_region_type: typing.Any
|
|
761
744
|
bl_rna: typing.Any
|
|
762
745
|
bl_space_type: typing.Any
|
|
@@ -980,10 +963,14 @@ class TEXTURE_PT_custom_props(
|
|
|
980
963
|
"""
|
|
981
964
|
...
|
|
982
965
|
|
|
983
|
-
class
|
|
966
|
+
class TEXTURE_PT_colors_ramp(
|
|
967
|
+
TextureButtonsPanel, TextureColorsPoll, bpy_types._GenericUI
|
|
968
|
+
):
|
|
984
969
|
COMPAT_ENGINES: typing.Any
|
|
985
970
|
bl_context: typing.Any
|
|
986
971
|
bl_label: typing.Any
|
|
972
|
+
bl_options: typing.Any
|
|
973
|
+
bl_parent_id: typing.Any
|
|
987
974
|
bl_region_type: typing.Any
|
|
988
975
|
bl_rna: typing.Any
|
|
989
976
|
bl_space_type: typing.Any
|
|
@@ -1028,6 +1015,13 @@ class TEXTURE_PT_node(TextureButtonsPanel, bpy_types._GenericUI):
|
|
|
1028
1015
|
"""
|
|
1029
1016
|
...
|
|
1030
1017
|
|
|
1018
|
+
def draw_header(self, context):
|
|
1019
|
+
"""
|
|
1020
|
+
|
|
1021
|
+
:param context:
|
|
1022
|
+
"""
|
|
1023
|
+
...
|
|
1024
|
+
|
|
1031
1025
|
def driver_add(self) -> bpy.types.FCurve:
|
|
1032
1026
|
"""Adds driver(s) to the given property
|
|
1033
1027
|
|
|
@@ -1207,10 +1201,11 @@ class TEXTURE_PT_node(TextureButtonsPanel, bpy_types._GenericUI):
|
|
|
1207
1201
|
"""
|
|
1208
1202
|
...
|
|
1209
1203
|
|
|
1210
|
-
class
|
|
1204
|
+
class TEXTURE_PT_context(TextureButtonsPanel, bpy_types._GenericUI):
|
|
1211
1205
|
COMPAT_ENGINES: typing.Any
|
|
1212
1206
|
bl_context: typing.Any
|
|
1213
1207
|
bl_label: typing.Any
|
|
1208
|
+
bl_options: typing.Any
|
|
1214
1209
|
bl_region_type: typing.Any
|
|
1215
1210
|
bl_rna: typing.Any
|
|
1216
1211
|
bl_space_type: typing.Any
|
|
@@ -1377,13 +1372,6 @@ class TEXTURE_PT_preview(TextureButtonsPanel, bpy_types._GenericUI):
|
|
|
1377
1372
|
"""Returns the property from the path, raise an exception when not found."""
|
|
1378
1373
|
...
|
|
1379
1374
|
|
|
1380
|
-
def poll(self, context):
|
|
1381
|
-
"""
|
|
1382
|
-
|
|
1383
|
-
:param context:
|
|
1384
|
-
"""
|
|
1385
|
-
...
|
|
1386
|
-
|
|
1387
1375
|
def pop(self):
|
|
1388
1376
|
"""Remove and return the value of the custom property assigned to key or default
|
|
1389
1377
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -1434,36 +1422,18 @@ class TEXTURE_PT_preview(TextureButtonsPanel, bpy_types._GenericUI):
|
|
|
1434
1422
|
"""
|
|
1435
1423
|
...
|
|
1436
1424
|
|
|
1437
|
-
class
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
def poll(self, context):
|
|
1444
|
-
"""
|
|
1445
|
-
|
|
1446
|
-
:param context:
|
|
1447
|
-
"""
|
|
1448
|
-
...
|
|
1449
|
-
|
|
1450
|
-
class TextureTypePanel(TextureButtonsPanel):
|
|
1451
|
-
bl_context: typing.Any
|
|
1452
|
-
bl_region_type: typing.Any
|
|
1453
|
-
bl_space_type: typing.Any
|
|
1454
|
-
|
|
1455
|
-
def poll(self, context):
|
|
1456
|
-
"""
|
|
1457
|
-
|
|
1458
|
-
:param context:
|
|
1459
|
-
"""
|
|
1460
|
-
...
|
|
1425
|
+
class TEXTURE_PT_custom_props(
|
|
1426
|
+
TextureButtonsPanel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
|
|
1427
|
+
):
|
|
1428
|
+
"""The subclass should have its own poll function
|
|
1429
|
+
and the variable '_context_path' MUST be set.
|
|
1430
|
+
"""
|
|
1461
1431
|
|
|
1462
|
-
class TEXTURE_PT_colors(TextureButtonsPanel, TextureColorsPoll, bpy_types._GenericUI):
|
|
1463
1432
|
COMPAT_ENGINES: typing.Any
|
|
1464
1433
|
bl_context: typing.Any
|
|
1465
1434
|
bl_label: typing.Any
|
|
1466
1435
|
bl_options: typing.Any
|
|
1436
|
+
bl_order: typing.Any
|
|
1467
1437
|
bl_region_type: typing.Any
|
|
1468
1438
|
bl_rna: typing.Any
|
|
1469
1439
|
bl_space_type: typing.Any
|
|
@@ -1687,18 +1657,17 @@ class TEXTURE_PT_colors(TextureButtonsPanel, TextureColorsPoll, bpy_types._Gener
|
|
|
1687
1657
|
"""
|
|
1688
1658
|
...
|
|
1689
1659
|
|
|
1690
|
-
class
|
|
1691
|
-
|
|
1660
|
+
class TEXTURE_PT_distortednoise(
|
|
1661
|
+
TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
1692
1662
|
):
|
|
1693
1663
|
COMPAT_ENGINES: typing.Any
|
|
1694
1664
|
bl_context: typing.Any
|
|
1695
1665
|
bl_label: typing.Any
|
|
1696
|
-
bl_options: typing.Any
|
|
1697
|
-
bl_parent_id: typing.Any
|
|
1698
1666
|
bl_region_type: typing.Any
|
|
1699
1667
|
bl_rna: typing.Any
|
|
1700
1668
|
bl_space_type: typing.Any
|
|
1701
1669
|
id_data: typing.Any
|
|
1670
|
+
tex_type: typing.Any
|
|
1702
1671
|
|
|
1703
1672
|
def append(self, draw_func):
|
|
1704
1673
|
"""Append a draw function to this menu,
|
|
@@ -1739,13 +1708,6 @@ class TEXTURE_PT_colors_ramp(
|
|
|
1739
1708
|
"""
|
|
1740
1709
|
...
|
|
1741
1710
|
|
|
1742
|
-
def draw_header(self, context):
|
|
1743
|
-
"""
|
|
1744
|
-
|
|
1745
|
-
:param context:
|
|
1746
|
-
"""
|
|
1747
|
-
...
|
|
1748
|
-
|
|
1749
1711
|
def driver_add(self) -> bpy.types.FCurve:
|
|
1750
1712
|
"""Adds driver(s) to the given property
|
|
1751
1713
|
|
|
@@ -1925,15 +1887,15 @@ class TEXTURE_PT_colors_ramp(
|
|
|
1925
1887
|
"""
|
|
1926
1888
|
...
|
|
1927
1889
|
|
|
1928
|
-
class
|
|
1890
|
+
class TEXTURE_PT_image(TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI):
|
|
1929
1891
|
COMPAT_ENGINES: typing.Any
|
|
1930
1892
|
bl_context: typing.Any
|
|
1931
1893
|
bl_label: typing.Any
|
|
1932
|
-
bl_options: typing.Any
|
|
1933
1894
|
bl_region_type: typing.Any
|
|
1934
1895
|
bl_rna: typing.Any
|
|
1935
1896
|
bl_space_type: typing.Any
|
|
1936
1897
|
id_data: typing.Any
|
|
1898
|
+
tex_type: typing.Any
|
|
1937
1899
|
|
|
1938
1900
|
def append(self, draw_func):
|
|
1939
1901
|
"""Append a draw function to this menu,
|
|
@@ -1967,10 +1929,10 @@ class TEXTURE_PT_influence(TextureSlotPanel, TextureButtonsPanel, bpy_types._Gen
|
|
|
1967
1929
|
"""
|
|
1968
1930
|
...
|
|
1969
1931
|
|
|
1970
|
-
def draw(self,
|
|
1932
|
+
def draw(self, _context):
|
|
1971
1933
|
"""
|
|
1972
1934
|
|
|
1973
|
-
:param
|
|
1935
|
+
:param _context:
|
|
1974
1936
|
"""
|
|
1975
1937
|
...
|
|
1976
1938
|
|
|
@@ -2153,14 +2115,19 @@ class TEXTURE_PT_influence(TextureSlotPanel, TextureButtonsPanel, bpy_types._Gen
|
|
|
2153
2115
|
"""
|
|
2154
2116
|
...
|
|
2155
2117
|
|
|
2156
|
-
class
|
|
2118
|
+
class TEXTURE_PT_image_alpha(
|
|
2119
|
+
TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
2120
|
+
):
|
|
2157
2121
|
COMPAT_ENGINES: typing.Any
|
|
2158
2122
|
bl_context: typing.Any
|
|
2159
2123
|
bl_label: typing.Any
|
|
2124
|
+
bl_options: typing.Any
|
|
2125
|
+
bl_parent_id: typing.Any
|
|
2160
2126
|
bl_region_type: typing.Any
|
|
2161
2127
|
bl_rna: typing.Any
|
|
2162
2128
|
bl_space_type: typing.Any
|
|
2163
2129
|
id_data: typing.Any
|
|
2130
|
+
tex_type: typing.Any
|
|
2164
2131
|
|
|
2165
2132
|
def append(self, draw_func):
|
|
2166
2133
|
"""Append a draw function to this menu,
|
|
@@ -2201,6 +2168,13 @@ class TEXTURE_PT_mapping(TextureSlotPanel, TextureButtonsPanel, bpy_types._Gener
|
|
|
2201
2168
|
"""
|
|
2202
2169
|
...
|
|
2203
2170
|
|
|
2171
|
+
def draw_header(self, context):
|
|
2172
|
+
"""
|
|
2173
|
+
|
|
2174
|
+
:param context:
|
|
2175
|
+
"""
|
|
2176
|
+
...
|
|
2177
|
+
|
|
2204
2178
|
def driver_add(self) -> bpy.types.FCurve:
|
|
2205
2179
|
"""Adds driver(s) to the given property
|
|
2206
2180
|
|
|
@@ -2380,10 +2354,14 @@ class TEXTURE_PT_mapping(TextureSlotPanel, TextureButtonsPanel, bpy_types._Gener
|
|
|
2380
2354
|
"""
|
|
2381
2355
|
...
|
|
2382
2356
|
|
|
2383
|
-
class
|
|
2357
|
+
class TEXTURE_PT_image_mapping(
|
|
2358
|
+
TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
2359
|
+
):
|
|
2384
2360
|
COMPAT_ENGINES: typing.Any
|
|
2385
2361
|
bl_context: typing.Any
|
|
2386
2362
|
bl_label: typing.Any
|
|
2363
|
+
bl_options: typing.Any
|
|
2364
|
+
bl_parent_id: typing.Any
|
|
2387
2365
|
bl_region_type: typing.Any
|
|
2388
2366
|
bl_rna: typing.Any
|
|
2389
2367
|
bl_space_type: typing.Any
|
|
@@ -2608,10 +2586,14 @@ class TEXTURE_PT_blend(TextureTypePanel, TextureButtonsPanel, bpy_types._Generic
|
|
|
2608
2586
|
"""
|
|
2609
2587
|
...
|
|
2610
2588
|
|
|
2611
|
-
class
|
|
2589
|
+
class TEXTURE_PT_image_mapping_crop(
|
|
2590
|
+
TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
2591
|
+
):
|
|
2612
2592
|
COMPAT_ENGINES: typing.Any
|
|
2613
2593
|
bl_context: typing.Any
|
|
2614
2594
|
bl_label: typing.Any
|
|
2595
|
+
bl_options: typing.Any
|
|
2596
|
+
bl_parent_id: typing.Any
|
|
2615
2597
|
bl_region_type: typing.Any
|
|
2616
2598
|
bl_rna: typing.Any
|
|
2617
2599
|
bl_space_type: typing.Any
|
|
@@ -2836,12 +2818,14 @@ class TEXTURE_PT_clouds(TextureTypePanel, TextureButtonsPanel, bpy_types._Generi
|
|
|
2836
2818
|
"""
|
|
2837
2819
|
...
|
|
2838
2820
|
|
|
2839
|
-
class
|
|
2821
|
+
class TEXTURE_PT_image_sampling(
|
|
2840
2822
|
TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
2841
2823
|
):
|
|
2842
2824
|
COMPAT_ENGINES: typing.Any
|
|
2843
2825
|
bl_context: typing.Any
|
|
2844
2826
|
bl_label: typing.Any
|
|
2827
|
+
bl_options: typing.Any
|
|
2828
|
+
bl_parent_id: typing.Any
|
|
2845
2829
|
bl_region_type: typing.Any
|
|
2846
2830
|
bl_rna: typing.Any
|
|
2847
2831
|
bl_space_type: typing.Any
|
|
@@ -3066,10 +3050,13 @@ class TEXTURE_PT_distortednoise(
|
|
|
3066
3050
|
"""
|
|
3067
3051
|
...
|
|
3068
3052
|
|
|
3069
|
-
class
|
|
3053
|
+
class TEXTURE_PT_image_settings(
|
|
3054
|
+
TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
3055
|
+
):
|
|
3070
3056
|
COMPAT_ENGINES: typing.Any
|
|
3071
3057
|
bl_context: typing.Any
|
|
3072
3058
|
bl_label: typing.Any
|
|
3059
|
+
bl_parent_id: typing.Any
|
|
3073
3060
|
bl_region_type: typing.Any
|
|
3074
3061
|
bl_rna: typing.Any
|
|
3075
3062
|
bl_space_type: typing.Any
|
|
@@ -3108,10 +3095,10 @@ class TEXTURE_PT_image(TextureTypePanel, TextureButtonsPanel, bpy_types._Generic
|
|
|
3108
3095
|
"""
|
|
3109
3096
|
...
|
|
3110
3097
|
|
|
3111
|
-
def draw(self,
|
|
3098
|
+
def draw(self, context):
|
|
3112
3099
|
"""
|
|
3113
3100
|
|
|
3114
|
-
:param
|
|
3101
|
+
:param context:
|
|
3115
3102
|
"""
|
|
3116
3103
|
...
|
|
3117
3104
|
|
|
@@ -3294,19 +3281,15 @@ class TEXTURE_PT_image(TextureTypePanel, TextureButtonsPanel, bpy_types._Generic
|
|
|
3294
3281
|
"""
|
|
3295
3282
|
...
|
|
3296
3283
|
|
|
3297
|
-
class
|
|
3298
|
-
TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
3299
|
-
):
|
|
3284
|
+
class TEXTURE_PT_influence(TextureSlotPanel, TextureButtonsPanel, bpy_types._GenericUI):
|
|
3300
3285
|
COMPAT_ENGINES: typing.Any
|
|
3301
3286
|
bl_context: typing.Any
|
|
3302
3287
|
bl_label: typing.Any
|
|
3303
3288
|
bl_options: typing.Any
|
|
3304
|
-
bl_parent_id: typing.Any
|
|
3305
3289
|
bl_region_type: typing.Any
|
|
3306
3290
|
bl_rna: typing.Any
|
|
3307
3291
|
bl_space_type: typing.Any
|
|
3308
3292
|
id_data: typing.Any
|
|
3309
|
-
tex_type: typing.Any
|
|
3310
3293
|
|
|
3311
3294
|
def append(self, draw_func):
|
|
3312
3295
|
"""Append a draw function to this menu,
|
|
@@ -3347,13 +3330,6 @@ class TEXTURE_PT_image_alpha(
|
|
|
3347
3330
|
"""
|
|
3348
3331
|
...
|
|
3349
3332
|
|
|
3350
|
-
def draw_header(self, context):
|
|
3351
|
-
"""
|
|
3352
|
-
|
|
3353
|
-
:param context:
|
|
3354
|
-
"""
|
|
3355
|
-
...
|
|
3356
|
-
|
|
3357
3333
|
def driver_add(self) -> bpy.types.FCurve:
|
|
3358
3334
|
"""Adds driver(s) to the given property
|
|
3359
3335
|
|
|
@@ -3533,14 +3509,10 @@ class TEXTURE_PT_image_alpha(
|
|
|
3533
3509
|
"""
|
|
3534
3510
|
...
|
|
3535
3511
|
|
|
3536
|
-
class
|
|
3537
|
-
TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
3538
|
-
):
|
|
3512
|
+
class TEXTURE_PT_magic(TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI):
|
|
3539
3513
|
COMPAT_ENGINES: typing.Any
|
|
3540
3514
|
bl_context: typing.Any
|
|
3541
3515
|
bl_label: typing.Any
|
|
3542
|
-
bl_options: typing.Any
|
|
3543
|
-
bl_parent_id: typing.Any
|
|
3544
3516
|
bl_region_type: typing.Any
|
|
3545
3517
|
bl_rna: typing.Any
|
|
3546
3518
|
bl_space_type: typing.Any
|
|
@@ -3765,19 +3737,14 @@ class TEXTURE_PT_image_mapping(
|
|
|
3765
3737
|
"""
|
|
3766
3738
|
...
|
|
3767
3739
|
|
|
3768
|
-
class
|
|
3769
|
-
TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
3770
|
-
):
|
|
3740
|
+
class TEXTURE_PT_mapping(TextureSlotPanel, TextureButtonsPanel, bpy_types._GenericUI):
|
|
3771
3741
|
COMPAT_ENGINES: typing.Any
|
|
3772
3742
|
bl_context: typing.Any
|
|
3773
3743
|
bl_label: typing.Any
|
|
3774
|
-
bl_options: typing.Any
|
|
3775
|
-
bl_parent_id: typing.Any
|
|
3776
3744
|
bl_region_type: typing.Any
|
|
3777
3745
|
bl_rna: typing.Any
|
|
3778
3746
|
bl_space_type: typing.Any
|
|
3779
3747
|
id_data: typing.Any
|
|
3780
|
-
tex_type: typing.Any
|
|
3781
3748
|
|
|
3782
3749
|
def append(self, draw_func):
|
|
3783
3750
|
"""Append a draw function to this menu,
|
|
@@ -3997,14 +3964,10 @@ class TEXTURE_PT_image_mapping_crop(
|
|
|
3997
3964
|
"""
|
|
3998
3965
|
...
|
|
3999
3966
|
|
|
4000
|
-
class
|
|
4001
|
-
TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
4002
|
-
):
|
|
3967
|
+
class TEXTURE_PT_marble(TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI):
|
|
4003
3968
|
COMPAT_ENGINES: typing.Any
|
|
4004
3969
|
bl_context: typing.Any
|
|
4005
3970
|
bl_label: typing.Any
|
|
4006
|
-
bl_options: typing.Any
|
|
4007
|
-
bl_parent_id: typing.Any
|
|
4008
3971
|
bl_region_type: typing.Any
|
|
4009
3972
|
bl_rna: typing.Any
|
|
4010
3973
|
bl_space_type: typing.Any
|
|
@@ -4229,13 +4192,10 @@ class TEXTURE_PT_image_sampling(
|
|
|
4229
4192
|
"""
|
|
4230
4193
|
...
|
|
4231
4194
|
|
|
4232
|
-
class
|
|
4233
|
-
TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
4234
|
-
):
|
|
4195
|
+
class TEXTURE_PT_musgrave(TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI):
|
|
4235
4196
|
COMPAT_ENGINES: typing.Any
|
|
4236
4197
|
bl_context: typing.Any
|
|
4237
4198
|
bl_label: typing.Any
|
|
4238
|
-
bl_parent_id: typing.Any
|
|
4239
4199
|
bl_region_type: typing.Any
|
|
4240
4200
|
bl_rna: typing.Any
|
|
4241
4201
|
bl_space_type: typing.Any
|
|
@@ -4460,7 +4420,7 @@ class TEXTURE_PT_image_settings(
|
|
|
4460
4420
|
"""
|
|
4461
4421
|
...
|
|
4462
4422
|
|
|
4463
|
-
class
|
|
4423
|
+
class TEXTURE_PT_node(TextureButtonsPanel, bpy_types._GenericUI):
|
|
4464
4424
|
COMPAT_ENGINES: typing.Any
|
|
4465
4425
|
bl_context: typing.Any
|
|
4466
4426
|
bl_label: typing.Any
|
|
@@ -4468,7 +4428,6 @@ class TEXTURE_PT_magic(TextureTypePanel, TextureButtonsPanel, bpy_types._Generic
|
|
|
4468
4428
|
bl_rna: typing.Any
|
|
4469
4429
|
bl_space_type: typing.Any
|
|
4470
4430
|
id_data: typing.Any
|
|
4471
|
-
tex_type: typing.Any
|
|
4472
4431
|
|
|
4473
4432
|
def append(self, draw_func):
|
|
4474
4433
|
"""Append a draw function to this menu,
|
|
@@ -4688,7 +4647,7 @@ class TEXTURE_PT_magic(TextureTypePanel, TextureButtonsPanel, bpy_types._Generic
|
|
|
4688
4647
|
"""
|
|
4689
4648
|
...
|
|
4690
4649
|
|
|
4691
|
-
class
|
|
4650
|
+
class TEXTURE_PT_preview(TextureButtonsPanel, bpy_types._GenericUI):
|
|
4692
4651
|
COMPAT_ENGINES: typing.Any
|
|
4693
4652
|
bl_context: typing.Any
|
|
4694
4653
|
bl_label: typing.Any
|
|
@@ -4696,7 +4655,6 @@ class TEXTURE_PT_marble(TextureTypePanel, TextureButtonsPanel, bpy_types._Generi
|
|
|
4696
4655
|
bl_rna: typing.Any
|
|
4697
4656
|
bl_space_type: typing.Any
|
|
4698
4657
|
id_data: typing.Any
|
|
4699
|
-
tex_type: typing.Any
|
|
4700
4658
|
|
|
4701
4659
|
def append(self, draw_func):
|
|
4702
4660
|
"""Append a draw function to this menu,
|
|
@@ -4916,7 +4874,7 @@ class TEXTURE_PT_marble(TextureTypePanel, TextureButtonsPanel, bpy_types._Generi
|
|
|
4916
4874
|
"""
|
|
4917
4875
|
...
|
|
4918
4876
|
|
|
4919
|
-
class
|
|
4877
|
+
class TEXTURE_PT_stucci(TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI):
|
|
4920
4878
|
COMPAT_ENGINES: typing.Any
|
|
4921
4879
|
bl_context: typing.Any
|
|
4922
4880
|
bl_label: typing.Any
|
|
@@ -5144,7 +5102,7 @@ class TEXTURE_PT_musgrave(TextureTypePanel, TextureButtonsPanel, bpy_types._Gene
|
|
|
5144
5102
|
"""
|
|
5145
5103
|
...
|
|
5146
5104
|
|
|
5147
|
-
class
|
|
5105
|
+
class TEXTURE_PT_voronoi(TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI):
|
|
5148
5106
|
COMPAT_ENGINES: typing.Any
|
|
5149
5107
|
bl_context: typing.Any
|
|
5150
5108
|
bl_label: typing.Any
|
|
@@ -5372,10 +5330,13 @@ class TEXTURE_PT_stucci(TextureTypePanel, TextureButtonsPanel, bpy_types._Generi
|
|
|
5372
5330
|
"""
|
|
5373
5331
|
...
|
|
5374
5332
|
|
|
5375
|
-
class
|
|
5333
|
+
class TEXTURE_PT_voronoi_feature_weights(
|
|
5334
|
+
TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
5335
|
+
):
|
|
5376
5336
|
COMPAT_ENGINES: typing.Any
|
|
5377
5337
|
bl_context: typing.Any
|
|
5378
5338
|
bl_label: typing.Any
|
|
5339
|
+
bl_parent_id: typing.Any
|
|
5379
5340
|
bl_region_type: typing.Any
|
|
5380
5341
|
bl_rna: typing.Any
|
|
5381
5342
|
bl_space_type: typing.Any
|
|
@@ -5600,13 +5561,10 @@ class TEXTURE_PT_voronoi(TextureTypePanel, TextureButtonsPanel, bpy_types._Gener
|
|
|
5600
5561
|
"""
|
|
5601
5562
|
...
|
|
5602
5563
|
|
|
5603
|
-
class
|
|
5604
|
-
TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI
|
|
5605
|
-
):
|
|
5564
|
+
class TEXTURE_PT_wood(TextureTypePanel, TextureButtonsPanel, bpy_types._GenericUI):
|
|
5606
5565
|
COMPAT_ENGINES: typing.Any
|
|
5607
5566
|
bl_context: typing.Any
|
|
5608
5567
|
bl_label: typing.Any
|
|
5609
|
-
bl_parent_id: typing.Any
|
|
5610
5568
|
bl_region_type: typing.Any
|
|
5611
5569
|
bl_rna: typing.Any
|
|
5612
5570
|
bl_space_type: typing.Any
|
|
@@ -5831,15 +5789,9 @@ class TEXTURE_PT_voronoi_feature_weights(
|
|
|
5831
5789
|
"""
|
|
5832
5790
|
...
|
|
5833
5791
|
|
|
5834
|
-
class
|
|
5835
|
-
COMPAT_ENGINES: typing.Any
|
|
5836
|
-
bl_context: typing.Any
|
|
5837
|
-
bl_label: typing.Any
|
|
5838
|
-
bl_region_type: typing.Any
|
|
5792
|
+
class TEXTURE_UL_texslots(bpy_types._GenericUI):
|
|
5839
5793
|
bl_rna: typing.Any
|
|
5840
|
-
bl_space_type: typing.Any
|
|
5841
5794
|
id_data: typing.Any
|
|
5842
|
-
tex_type: typing.Any
|
|
5843
5795
|
|
|
5844
5796
|
def append(self, draw_func):
|
|
5845
5797
|
"""Append a draw function to this menu,
|
|
@@ -5873,10 +5825,27 @@ class TEXTURE_PT_wood(TextureTypePanel, TextureButtonsPanel, bpy_types._GenericU
|
|
|
5873
5825
|
"""
|
|
5874
5826
|
...
|
|
5875
5827
|
|
|
5876
|
-
def
|
|
5828
|
+
def draw_item(
|
|
5829
|
+
self,
|
|
5830
|
+
_context,
|
|
5831
|
+
layout,
|
|
5832
|
+
_data,
|
|
5833
|
+
item,
|
|
5834
|
+
icon,
|
|
5835
|
+
_active_data,
|
|
5836
|
+
_active_propname,
|
|
5837
|
+
_index,
|
|
5838
|
+
):
|
|
5877
5839
|
"""
|
|
5878
5840
|
|
|
5879
|
-
:param
|
|
5841
|
+
:param _context:
|
|
5842
|
+
:param layout:
|
|
5843
|
+
:param _data:
|
|
5844
|
+
:param item:
|
|
5845
|
+
:param icon:
|
|
5846
|
+
:param _active_data:
|
|
5847
|
+
:param _active_propname:
|
|
5848
|
+
:param _index:
|
|
5880
5849
|
"""
|
|
5881
5850
|
...
|
|
5882
5851
|
|
|
@@ -6002,13 +5971,6 @@ class TEXTURE_PT_wood(TextureTypePanel, TextureButtonsPanel, bpy_types._GenericU
|
|
|
6002
5971
|
"""Returns the property from the path, raise an exception when not found."""
|
|
6003
5972
|
...
|
|
6004
5973
|
|
|
6005
|
-
def poll(self, context):
|
|
6006
|
-
"""
|
|
6007
|
-
|
|
6008
|
-
:param context:
|
|
6009
|
-
"""
|
|
6010
|
-
...
|
|
6011
|
-
|
|
6012
5974
|
def pop(self):
|
|
6013
5975
|
"""Remove and return the value of the custom property assigned to key or default
|
|
6014
5976
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -6059,5 +6021,43 @@ class TEXTURE_PT_wood(TextureTypePanel, TextureButtonsPanel, bpy_types._GenericU
|
|
|
6059
6021
|
"""
|
|
6060
6022
|
...
|
|
6061
6023
|
|
|
6024
|
+
class TextureButtonsPanel:
|
|
6025
|
+
bl_context: typing.Any
|
|
6026
|
+
bl_region_type: typing.Any
|
|
6027
|
+
bl_space_type: typing.Any
|
|
6028
|
+
|
|
6029
|
+
class TextureColorsPoll:
|
|
6030
|
+
def poll(self, context):
|
|
6031
|
+
"""
|
|
6032
|
+
|
|
6033
|
+
:param context:
|
|
6034
|
+
"""
|
|
6035
|
+
...
|
|
6036
|
+
|
|
6037
|
+
class TextureSlotPanel(TextureButtonsPanel):
|
|
6038
|
+
COMPAT_ENGINES: typing.Any
|
|
6039
|
+
bl_context: typing.Any
|
|
6040
|
+
bl_region_type: typing.Any
|
|
6041
|
+
bl_space_type: typing.Any
|
|
6042
|
+
|
|
6043
|
+
def poll(self, context):
|
|
6044
|
+
"""
|
|
6045
|
+
|
|
6046
|
+
:param context:
|
|
6047
|
+
"""
|
|
6048
|
+
...
|
|
6049
|
+
|
|
6050
|
+
class TextureTypePanel(TextureButtonsPanel):
|
|
6051
|
+
bl_context: typing.Any
|
|
6052
|
+
bl_region_type: typing.Any
|
|
6053
|
+
bl_space_type: typing.Any
|
|
6054
|
+
|
|
6055
|
+
def poll(self, context):
|
|
6056
|
+
"""
|
|
6057
|
+
|
|
6058
|
+
:param context:
|
|
6059
|
+
"""
|
|
6060
|
+
...
|
|
6061
|
+
|
|
6062
6062
|
def context_tex_datablock(context): ...
|
|
6063
6063
|
def texture_filter_common(tex, layout): ...
|