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
|
@@ -2319,12 +2319,13 @@ class USERPREF_MT_view(bpy_types._GenericUI):
|
|
|
2319
2319
|
"""
|
|
2320
2320
|
...
|
|
2321
2321
|
|
|
2322
|
-
class
|
|
2322
|
+
class USERPREF_PT_addons(AddOnPanel, bpy_types._GenericUI):
|
|
2323
|
+
bl_context: typing.Any
|
|
2323
2324
|
bl_label: typing.Any
|
|
2325
|
+
bl_options: typing.Any
|
|
2324
2326
|
bl_region_type: typing.Any
|
|
2325
2327
|
bl_rna: typing.Any
|
|
2326
2328
|
bl_space_type: typing.Any
|
|
2327
|
-
bl_ui_units_x: typing.Any
|
|
2328
2329
|
id_data: typing.Any
|
|
2329
2330
|
|
|
2330
2331
|
def append(self, draw_func):
|
|
@@ -2366,6 +2367,23 @@ class USERPREF_PT_addons_filter(bpy_types._GenericUI):
|
|
|
2366
2367
|
"""
|
|
2367
2368
|
...
|
|
2368
2369
|
|
|
2370
|
+
def draw_addon_preferences(self, layout, context, addon_preferences):
|
|
2371
|
+
"""
|
|
2372
|
+
|
|
2373
|
+
:param layout:
|
|
2374
|
+
:param context:
|
|
2375
|
+
:param addon_preferences:
|
|
2376
|
+
"""
|
|
2377
|
+
...
|
|
2378
|
+
|
|
2379
|
+
def draw_error(self, layout, message):
|
|
2380
|
+
"""
|
|
2381
|
+
|
|
2382
|
+
:param layout:
|
|
2383
|
+
:param message:
|
|
2384
|
+
"""
|
|
2385
|
+
...
|
|
2386
|
+
|
|
2369
2387
|
def driver_add(self) -> bpy.types.FCurve:
|
|
2370
2388
|
"""Adds driver(s) to the given property
|
|
2371
2389
|
|
|
@@ -2443,6 +2461,14 @@ class USERPREF_PT_addons_filter(bpy_types._GenericUI):
|
|
|
2443
2461
|
"""
|
|
2444
2462
|
...
|
|
2445
2463
|
|
|
2464
|
+
def is_user_addon(self, mod, user_addon_paths):
|
|
2465
|
+
"""
|
|
2466
|
+
|
|
2467
|
+
:param mod:
|
|
2468
|
+
:param user_addon_paths:
|
|
2469
|
+
"""
|
|
2470
|
+
...
|
|
2471
|
+
|
|
2446
2472
|
def items(self):
|
|
2447
2473
|
"""Returns the items of this objects custom properties (matches Python's
|
|
2448
2474
|
dictionary function of the same name).
|
|
@@ -2538,9 +2564,8 @@ class USERPREF_PT_addons_filter(bpy_types._GenericUI):
|
|
|
2538
2564
|
"""
|
|
2539
2565
|
...
|
|
2540
2566
|
|
|
2541
|
-
class
|
|
2567
|
+
class USERPREF_PT_addons_filter(bpy_types._GenericUI):
|
|
2542
2568
|
bl_label: typing.Any
|
|
2543
|
-
bl_options: typing.Any
|
|
2544
2569
|
bl_region_type: typing.Any
|
|
2545
2570
|
bl_rna: typing.Any
|
|
2546
2571
|
bl_space_type: typing.Any
|
|
@@ -2758,9 +2783,15 @@ class USERPREF_PT_extensions_repos(bpy_types._GenericUI):
|
|
|
2758
2783
|
"""
|
|
2759
2784
|
...
|
|
2760
2785
|
|
|
2761
|
-
class
|
|
2786
|
+
class USERPREF_PT_animation_fcurves(
|
|
2787
|
+
AnimationPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
2788
|
+
):
|
|
2789
|
+
"""Base class for panels to center align contents with some horizontal margin.
|
|
2790
|
+
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
2791
|
+
"""
|
|
2792
|
+
|
|
2793
|
+
bl_context: typing.Any
|
|
2762
2794
|
bl_label: typing.Any
|
|
2763
|
-
bl_options: typing.Any
|
|
2764
2795
|
bl_region_type: typing.Any
|
|
2765
2796
|
bl_rna: typing.Any
|
|
2766
2797
|
bl_space_type: typing.Any
|
|
@@ -2805,6 +2836,14 @@ class USERPREF_PT_navigation_bar(bpy_types._GenericUI):
|
|
|
2805
2836
|
"""
|
|
2806
2837
|
...
|
|
2807
2838
|
|
|
2839
|
+
def draw_centered(self, context, layout):
|
|
2840
|
+
"""
|
|
2841
|
+
|
|
2842
|
+
:param context:
|
|
2843
|
+
:param layout:
|
|
2844
|
+
"""
|
|
2845
|
+
...
|
|
2846
|
+
|
|
2808
2847
|
def driver_add(self) -> bpy.types.FCurve:
|
|
2809
2848
|
"""Adds driver(s) to the given property
|
|
2810
2849
|
|
|
@@ -2977,12 +3016,18 @@ class USERPREF_PT_navigation_bar(bpy_types._GenericUI):
|
|
|
2977
3016
|
"""
|
|
2978
3017
|
...
|
|
2979
3018
|
|
|
2980
|
-
class
|
|
3019
|
+
class USERPREF_PT_animation_keyframes(
|
|
3020
|
+
AnimationPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
3021
|
+
):
|
|
3022
|
+
"""Base class for panels to center align contents with some horizontal margin.
|
|
3023
|
+
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
3024
|
+
"""
|
|
3025
|
+
|
|
3026
|
+
bl_context: typing.Any
|
|
2981
3027
|
bl_label: typing.Any
|
|
2982
3028
|
bl_region_type: typing.Any
|
|
2983
3029
|
bl_rna: typing.Any
|
|
2984
3030
|
bl_space_type: typing.Any
|
|
2985
|
-
bl_ui_units_x: typing.Any
|
|
2986
3031
|
id_data: typing.Any
|
|
2987
3032
|
|
|
2988
3033
|
def append(self, draw_func):
|
|
@@ -3024,12 +3069,11 @@ class USERPREF_PT_ndof_settings(bpy_types._GenericUI):
|
|
|
3024
3069
|
"""
|
|
3025
3070
|
...
|
|
3026
3071
|
|
|
3027
|
-
def
|
|
3072
|
+
def draw_centered(self, context, layout):
|
|
3028
3073
|
"""
|
|
3029
3074
|
|
|
3075
|
+
:param context:
|
|
3030
3076
|
:param layout:
|
|
3031
|
-
:param props:
|
|
3032
|
-
:param show_3dview_settings:
|
|
3033
3077
|
"""
|
|
3034
3078
|
...
|
|
3035
3079
|
|
|
@@ -3205,9 +3249,15 @@ class USERPREF_PT_ndof_settings(bpy_types._GenericUI):
|
|
|
3205
3249
|
"""
|
|
3206
3250
|
...
|
|
3207
3251
|
|
|
3208
|
-
class
|
|
3252
|
+
class USERPREF_PT_animation_timeline(
|
|
3253
|
+
AnimationPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
3254
|
+
):
|
|
3255
|
+
"""Base class for panels to center align contents with some horizontal margin.
|
|
3256
|
+
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
3257
|
+
"""
|
|
3258
|
+
|
|
3259
|
+
bl_context: typing.Any
|
|
3209
3260
|
bl_label: typing.Any
|
|
3210
|
-
bl_options: typing.Any
|
|
3211
3261
|
bl_region_type: typing.Any
|
|
3212
3262
|
bl_rna: typing.Any
|
|
3213
3263
|
bl_space_type: typing.Any
|
|
@@ -3252,6 +3302,14 @@ class USERPREF_PT_save_preferences(bpy_types._GenericUI):
|
|
|
3252
3302
|
"""
|
|
3253
3303
|
...
|
|
3254
3304
|
|
|
3305
|
+
def draw_centered(self, context, layout):
|
|
3306
|
+
"""
|
|
3307
|
+
|
|
3308
|
+
:param context:
|
|
3309
|
+
:param layout:
|
|
3310
|
+
"""
|
|
3311
|
+
...
|
|
3312
|
+
|
|
3255
3313
|
def driver_add(self) -> bpy.types.FCurve:
|
|
3256
3314
|
"""Adds driver(s) to the given property
|
|
3257
3315
|
|
|
@@ -3374,13 +3432,6 @@ class USERPREF_PT_save_preferences(bpy_types._GenericUI):
|
|
|
3374
3432
|
"""Returns the property from the path, raise an exception when not found."""
|
|
3375
3433
|
...
|
|
3376
3434
|
|
|
3377
|
-
def poll(self, context):
|
|
3378
|
-
"""
|
|
3379
|
-
|
|
3380
|
-
:param context:
|
|
3381
|
-
"""
|
|
3382
|
-
...
|
|
3383
|
-
|
|
3384
3435
|
def pop(self):
|
|
3385
3436
|
"""Remove and return the value of the custom property assigned to key or default
|
|
3386
3437
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -3431,15 +3482,19 @@ class USERPREF_PT_save_preferences(bpy_types._GenericUI):
|
|
|
3431
3482
|
"""
|
|
3432
3483
|
...
|
|
3433
3484
|
|
|
3434
|
-
class
|
|
3485
|
+
class USERPREF_PT_edit_annotations(
|
|
3486
|
+
EditingPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
3487
|
+
):
|
|
3488
|
+
"""Base class for panels to center align contents with some horizontal margin.
|
|
3489
|
+
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
3490
|
+
"""
|
|
3491
|
+
|
|
3492
|
+
bl_context: typing.Any
|
|
3435
3493
|
bl_label: typing.Any
|
|
3436
3494
|
bl_region_type: typing.Any
|
|
3437
3495
|
bl_rna: typing.Any
|
|
3438
3496
|
bl_space_type: typing.Any
|
|
3439
3497
|
id_data: typing.Any
|
|
3440
|
-
preset_add_operator: typing.Any
|
|
3441
|
-
preset_operator: typing.Any
|
|
3442
|
-
preset_subdir: typing.Any
|
|
3443
3498
|
|
|
3444
3499
|
def append(self, draw_func):
|
|
3445
3500
|
"""Append a draw function to this menu,
|
|
@@ -3480,17 +3535,10 @@ class USERPREF_PT_text_editor_presets(bl_ui.utils.PresetPanel, bpy_types._Generi
|
|
|
3480
3535
|
"""
|
|
3481
3536
|
...
|
|
3482
3537
|
|
|
3483
|
-
def
|
|
3484
|
-
"""
|
|
3485
|
-
|
|
3486
|
-
:param layout:
|
|
3487
|
-
:param text:
|
|
3488
|
-
"""
|
|
3489
|
-
...
|
|
3490
|
-
|
|
3491
|
-
def draw_panel_header(self, layout):
|
|
3538
|
+
def draw_centered(self, context, layout):
|
|
3492
3539
|
"""
|
|
3493
3540
|
|
|
3541
|
+
:param context:
|
|
3494
3542
|
:param layout:
|
|
3495
3543
|
"""
|
|
3496
3544
|
...
|
|
@@ -3613,40 +3661,6 @@ class USERPREF_PT_text_editor_presets(bl_ui.utils.PresetPanel, bpy_types._Generi
|
|
|
3613
3661
|
"""
|
|
3614
3662
|
...
|
|
3615
3663
|
|
|
3616
|
-
def path_menu(
|
|
3617
|
-
self,
|
|
3618
|
-
searchpaths: list[str],
|
|
3619
|
-
operator: str,
|
|
3620
|
-
props_default: dict = None,
|
|
3621
|
-
prop_filepath: str | None = "filepath",
|
|
3622
|
-
filter_ext: collections.abc.Callable | None = None,
|
|
3623
|
-
filter_path=None,
|
|
3624
|
-
display_name: collections.abc.Callable | None = None,
|
|
3625
|
-
add_operator=None,
|
|
3626
|
-
add_operator_props=None,
|
|
3627
|
-
):
|
|
3628
|
-
"""Populate a menu from a list of paths.
|
|
3629
|
-
|
|
3630
|
-
:param searchpaths: Paths to scan.
|
|
3631
|
-
:type searchpaths: list[str]
|
|
3632
|
-
:param operator: The operator id to use with each file.
|
|
3633
|
-
:type operator: str
|
|
3634
|
-
:param props_default: Properties to assign to each operator.
|
|
3635
|
-
:type props_default: dict
|
|
3636
|
-
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
3637
|
-
:type prop_filepath: str | None
|
|
3638
|
-
:param filter_ext: Optional callback that takes the file extensions.
|
|
3639
|
-
|
|
3640
|
-
Returning false excludes the file from the list.
|
|
3641
|
-
:type filter_ext: collections.abc.Callable | None
|
|
3642
|
-
:param filter_path:
|
|
3643
|
-
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
3644
|
-
:type display_name: collections.abc.Callable | None
|
|
3645
|
-
:param add_operator:
|
|
3646
|
-
:param add_operator_props:
|
|
3647
|
-
"""
|
|
3648
|
-
...
|
|
3649
|
-
|
|
3650
3664
|
def path_resolve(self):
|
|
3651
3665
|
"""Returns the property from the path, raise an exception when not found."""
|
|
3652
3666
|
...
|
|
@@ -3701,13 +3715,16 @@ class USERPREF_PT_text_editor_presets(bl_ui.utils.PresetPanel, bpy_types._Generi
|
|
|
3701
3715
|
"""
|
|
3702
3716
|
...
|
|
3703
3717
|
|
|
3704
|
-
class
|
|
3718
|
+
class USERPREF_PT_edit_cursor(EditingPanel, CenterAlignMixIn, bpy_types._GenericUI):
|
|
3719
|
+
"""Base class for panels to center align contents with some horizontal margin.
|
|
3720
|
+
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
3721
|
+
"""
|
|
3722
|
+
|
|
3705
3723
|
bl_context: typing.Any
|
|
3724
|
+
bl_label: typing.Any
|
|
3706
3725
|
bl_region_type: typing.Any
|
|
3707
|
-
bl_space_type: typing.Any
|
|
3708
|
-
|
|
3709
|
-
class USERPREF_UL_asset_libraries(bpy_types._GenericUI):
|
|
3710
3726
|
bl_rna: typing.Any
|
|
3727
|
+
bl_space_type: typing.Any
|
|
3711
3728
|
id_data: typing.Any
|
|
3712
3729
|
|
|
3713
3730
|
def append(self, draw_func):
|
|
@@ -3742,27 +3759,18 @@ class USERPREF_UL_asset_libraries(bpy_types._GenericUI):
|
|
|
3742
3759
|
"""
|
|
3743
3760
|
...
|
|
3744
3761
|
|
|
3745
|
-
def
|
|
3746
|
-
self,
|
|
3747
|
-
_context,
|
|
3748
|
-
layout,
|
|
3749
|
-
_data,
|
|
3750
|
-
item,
|
|
3751
|
-
icon,
|
|
3752
|
-
_active_data,
|
|
3753
|
-
_active_propname,
|
|
3754
|
-
_index,
|
|
3755
|
-
):
|
|
3762
|
+
def draw(self, context):
|
|
3756
3763
|
"""
|
|
3757
3764
|
|
|
3758
|
-
:param
|
|
3765
|
+
:param context:
|
|
3766
|
+
"""
|
|
3767
|
+
...
|
|
3768
|
+
|
|
3769
|
+
def draw_centered(self, context, layout):
|
|
3770
|
+
"""
|
|
3771
|
+
|
|
3772
|
+
:param context:
|
|
3759
3773
|
:param layout:
|
|
3760
|
-
:param _data:
|
|
3761
|
-
:param item:
|
|
3762
|
-
:param icon:
|
|
3763
|
-
:param _active_data:
|
|
3764
|
-
:param _active_propname:
|
|
3765
|
-
:param _index:
|
|
3766
3774
|
"""
|
|
3767
3775
|
...
|
|
3768
3776
|
|
|
@@ -3938,8 +3946,17 @@ class USERPREF_UL_asset_libraries(bpy_types._GenericUI):
|
|
|
3938
3946
|
"""
|
|
3939
3947
|
...
|
|
3940
3948
|
|
|
3941
|
-
class
|
|
3949
|
+
class USERPREF_PT_edit_gpencil(EditingPanel, CenterAlignMixIn, bpy_types._GenericUI):
|
|
3950
|
+
"""Base class for panels to center align contents with some horizontal margin.
|
|
3951
|
+
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
3952
|
+
"""
|
|
3953
|
+
|
|
3954
|
+
bl_context: typing.Any
|
|
3955
|
+
bl_label: typing.Any
|
|
3956
|
+
bl_options: typing.Any
|
|
3957
|
+
bl_region_type: typing.Any
|
|
3942
3958
|
bl_rna: typing.Any
|
|
3959
|
+
bl_space_type: typing.Any
|
|
3943
3960
|
id_data: typing.Any
|
|
3944
3961
|
|
|
3945
3962
|
def append(self, draw_func):
|
|
@@ -3974,27 +3991,18 @@ class USERPREF_UL_extension_repos(bpy_types._GenericUI):
|
|
|
3974
3991
|
"""
|
|
3975
3992
|
...
|
|
3976
3993
|
|
|
3977
|
-
def
|
|
3978
|
-
self,
|
|
3979
|
-
_context,
|
|
3980
|
-
layout,
|
|
3981
|
-
_data,
|
|
3982
|
-
item,
|
|
3983
|
-
icon,
|
|
3984
|
-
_active_data,
|
|
3985
|
-
_active_propname,
|
|
3986
|
-
_index,
|
|
3987
|
-
):
|
|
3994
|
+
def draw(self, context):
|
|
3988
3995
|
"""
|
|
3989
3996
|
|
|
3990
|
-
:param
|
|
3997
|
+
:param context:
|
|
3998
|
+
"""
|
|
3999
|
+
...
|
|
4000
|
+
|
|
4001
|
+
def draw_centered(self, context, layout):
|
|
4002
|
+
"""
|
|
4003
|
+
|
|
4004
|
+
:param context:
|
|
3991
4005
|
:param layout:
|
|
3992
|
-
:param _data:
|
|
3993
|
-
:param item:
|
|
3994
|
-
:param icon:
|
|
3995
|
-
:param _active_data:
|
|
3996
|
-
:param _active_propname:
|
|
3997
|
-
:param _index:
|
|
3998
4006
|
"""
|
|
3999
4007
|
...
|
|
4000
4008
|
|
|
@@ -4014,15 +4022,6 @@ class USERPREF_UL_extension_repos(bpy_types._GenericUI):
|
|
|
4014
4022
|
"""
|
|
4015
4023
|
...
|
|
4016
4024
|
|
|
4017
|
-
def filter_items(self, _context, data, propname):
|
|
4018
|
-
"""
|
|
4019
|
-
|
|
4020
|
-
:param _context:
|
|
4021
|
-
:param data:
|
|
4022
|
-
:param propname:
|
|
4023
|
-
"""
|
|
4024
|
-
...
|
|
4025
|
-
|
|
4026
4025
|
def get(self):
|
|
4027
4026
|
"""Returns the value of the custom property assigned to key or default
|
|
4028
4027
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -4179,7 +4178,11 @@ class USERPREF_UL_extension_repos(bpy_types._GenericUI):
|
|
|
4179
4178
|
"""
|
|
4180
4179
|
...
|
|
4181
4180
|
|
|
4182
|
-
class
|
|
4181
|
+
class USERPREF_PT_edit_misc(EditingPanel, CenterAlignMixIn, bpy_types._GenericUI):
|
|
4182
|
+
"""Base class for panels to center align contents with some horizontal margin.
|
|
4183
|
+
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
4184
|
+
"""
|
|
4185
|
+
|
|
4183
4186
|
bl_context: typing.Any
|
|
4184
4187
|
bl_label: typing.Any
|
|
4185
4188
|
bl_options: typing.Any
|
|
@@ -4227,20 +4230,11 @@ class USERPREF_PT_addons(AddOnPanel, bpy_types._GenericUI):
|
|
|
4227
4230
|
"""
|
|
4228
4231
|
...
|
|
4229
4232
|
|
|
4230
|
-
def
|
|
4233
|
+
def draw_centered(self, context, layout):
|
|
4231
4234
|
"""
|
|
4232
4235
|
|
|
4233
|
-
:param layout:
|
|
4234
4236
|
:param context:
|
|
4235
|
-
:param addon_preferences:
|
|
4236
|
-
"""
|
|
4237
|
-
...
|
|
4238
|
-
|
|
4239
|
-
def draw_error(self, layout, message):
|
|
4240
|
-
"""
|
|
4241
|
-
|
|
4242
4237
|
:param layout:
|
|
4243
|
-
:param message:
|
|
4244
4238
|
"""
|
|
4245
4239
|
...
|
|
4246
4240
|
|
|
@@ -4321,14 +4315,6 @@ class USERPREF_PT_addons(AddOnPanel, bpy_types._GenericUI):
|
|
|
4321
4315
|
"""
|
|
4322
4316
|
...
|
|
4323
4317
|
|
|
4324
|
-
def is_user_addon(self, mod, user_addon_paths):
|
|
4325
|
-
"""
|
|
4326
|
-
|
|
4327
|
-
:param mod:
|
|
4328
|
-
:param user_addon_paths:
|
|
4329
|
-
"""
|
|
4330
|
-
...
|
|
4331
|
-
|
|
4332
4318
|
def items(self):
|
|
4333
4319
|
"""Returns the items of this objects custom properties (matches Python's
|
|
4334
4320
|
dictionary function of the same name).
|
|
@@ -4424,8 +4410,8 @@ class USERPREF_PT_addons(AddOnPanel, bpy_types._GenericUI):
|
|
|
4424
4410
|
"""
|
|
4425
4411
|
...
|
|
4426
4412
|
|
|
4427
|
-
class
|
|
4428
|
-
|
|
4413
|
+
class USERPREF_PT_edit_node_editor(
|
|
4414
|
+
EditingPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
4429
4415
|
):
|
|
4430
4416
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
4431
4417
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
@@ -4433,6 +4419,7 @@ class USERPREF_PT_animation_fcurves(
|
|
|
4433
4419
|
|
|
4434
4420
|
bl_context: typing.Any
|
|
4435
4421
|
bl_label: typing.Any
|
|
4422
|
+
bl_options: typing.Any
|
|
4436
4423
|
bl_region_type: typing.Any
|
|
4437
4424
|
bl_rna: typing.Any
|
|
4438
4425
|
bl_space_type: typing.Any
|
|
@@ -4657,13 +4644,7 @@ class USERPREF_PT_animation_fcurves(
|
|
|
4657
4644
|
"""
|
|
4658
4645
|
...
|
|
4659
4646
|
|
|
4660
|
-
class
|
|
4661
|
-
AnimationPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
4662
|
-
):
|
|
4663
|
-
"""Base class for panels to center align contents with some horizontal margin.
|
|
4664
|
-
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
4665
|
-
"""
|
|
4666
|
-
|
|
4647
|
+
class USERPREF_PT_edit_objects(EditingPanel, bpy_types._GenericUI):
|
|
4667
4648
|
bl_context: typing.Any
|
|
4668
4649
|
bl_label: typing.Any
|
|
4669
4650
|
bl_region_type: typing.Any
|
|
@@ -4710,14 +4691,6 @@ class USERPREF_PT_animation_keyframes(
|
|
|
4710
4691
|
"""
|
|
4711
4692
|
...
|
|
4712
4693
|
|
|
4713
|
-
def draw_centered(self, context, layout):
|
|
4714
|
-
"""
|
|
4715
|
-
|
|
4716
|
-
:param context:
|
|
4717
|
-
:param layout:
|
|
4718
|
-
"""
|
|
4719
|
-
...
|
|
4720
|
-
|
|
4721
4694
|
def driver_add(self) -> bpy.types.FCurve:
|
|
4722
4695
|
"""Adds driver(s) to the given property
|
|
4723
4696
|
|
|
@@ -4890,8 +4863,8 @@ class USERPREF_PT_animation_keyframes(
|
|
|
4890
4863
|
"""
|
|
4891
4864
|
...
|
|
4892
4865
|
|
|
4893
|
-
class
|
|
4894
|
-
|
|
4866
|
+
class USERPREF_PT_edit_objects_duplicate_data(
|
|
4867
|
+
EditingPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
4895
4868
|
):
|
|
4896
4869
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
4897
4870
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
@@ -4899,6 +4872,8 @@ class USERPREF_PT_animation_timeline(
|
|
|
4899
4872
|
|
|
4900
4873
|
bl_context: typing.Any
|
|
4901
4874
|
bl_label: typing.Any
|
|
4875
|
+
bl_options: typing.Any
|
|
4876
|
+
bl_parent_id: typing.Any
|
|
4902
4877
|
bl_region_type: typing.Any
|
|
4903
4878
|
bl_rna: typing.Any
|
|
4904
4879
|
bl_space_type: typing.Any
|
|
@@ -5123,7 +5098,7 @@ class USERPREF_PT_animation_timeline(
|
|
|
5123
5098
|
"""
|
|
5124
5099
|
...
|
|
5125
5100
|
|
|
5126
|
-
class
|
|
5101
|
+
class USERPREF_PT_edit_objects_new(
|
|
5127
5102
|
EditingPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
5128
5103
|
):
|
|
5129
5104
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
@@ -5132,6 +5107,7 @@ class USERPREF_PT_edit_annotations(
|
|
|
5132
5107
|
|
|
5133
5108
|
bl_context: typing.Any
|
|
5134
5109
|
bl_label: typing.Any
|
|
5110
|
+
bl_parent_id: typing.Any
|
|
5135
5111
|
bl_region_type: typing.Any
|
|
5136
5112
|
bl_rna: typing.Any
|
|
5137
5113
|
bl_space_type: typing.Any
|
|
@@ -5356,13 +5332,16 @@ class USERPREF_PT_edit_annotations(
|
|
|
5356
5332
|
"""
|
|
5357
5333
|
...
|
|
5358
5334
|
|
|
5359
|
-
class
|
|
5335
|
+
class USERPREF_PT_edit_sequence_editor(
|
|
5336
|
+
EditingPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
5337
|
+
):
|
|
5360
5338
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
5361
5339
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
5362
5340
|
"""
|
|
5363
5341
|
|
|
5364
5342
|
bl_context: typing.Any
|
|
5365
5343
|
bl_label: typing.Any
|
|
5344
|
+
bl_options: typing.Any
|
|
5366
5345
|
bl_region_type: typing.Any
|
|
5367
5346
|
bl_rna: typing.Any
|
|
5368
5347
|
bl_space_type: typing.Any
|
|
@@ -5587,7 +5566,9 @@ class USERPREF_PT_edit_cursor(EditingPanel, CenterAlignMixIn, bpy_types._Generic
|
|
|
5587
5566
|
"""
|
|
5588
5567
|
...
|
|
5589
5568
|
|
|
5590
|
-
class
|
|
5569
|
+
class USERPREF_PT_edit_text_editor(
|
|
5570
|
+
EditingPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
5571
|
+
):
|
|
5591
5572
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
5592
5573
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
5593
5574
|
"""
|
|
@@ -5819,7 +5800,9 @@ class USERPREF_PT_edit_gpencil(EditingPanel, CenterAlignMixIn, bpy_types._Generi
|
|
|
5819
5800
|
"""
|
|
5820
5801
|
...
|
|
5821
5802
|
|
|
5822
|
-
class
|
|
5803
|
+
class USERPREF_PT_edit_weight_paint(
|
|
5804
|
+
EditingPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
5805
|
+
):
|
|
5823
5806
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
5824
5807
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
5825
5808
|
"""
|
|
@@ -6051,20 +6034,14 @@ class USERPREF_PT_edit_misc(EditingPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
|
6051
6034
|
"""
|
|
6052
6035
|
...
|
|
6053
6036
|
|
|
6054
|
-
class
|
|
6055
|
-
EditingPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
6056
|
-
):
|
|
6057
|
-
"""Base class for panels to center align contents with some horizontal margin.
|
|
6058
|
-
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
6059
|
-
"""
|
|
6060
|
-
|
|
6037
|
+
class USERPREF_PT_experimental_debugging(ExperimentalPanel, bpy_types._GenericUI):
|
|
6061
6038
|
bl_context: typing.Any
|
|
6062
6039
|
bl_label: typing.Any
|
|
6063
|
-
bl_options: typing.Any
|
|
6064
6040
|
bl_region_type: typing.Any
|
|
6065
6041
|
bl_rna: typing.Any
|
|
6066
6042
|
bl_space_type: typing.Any
|
|
6067
6043
|
id_data: typing.Any
|
|
6044
|
+
url_prefix: typing.Any
|
|
6068
6045
|
|
|
6069
6046
|
def append(self, draw_func):
|
|
6070
6047
|
"""Append a draw function to this menu,
|
|
@@ -6105,14 +6082,6 @@ class USERPREF_PT_edit_node_editor(
|
|
|
6105
6082
|
"""
|
|
6106
6083
|
...
|
|
6107
6084
|
|
|
6108
|
-
def draw_centered(self, context, layout):
|
|
6109
|
-
"""
|
|
6110
|
-
|
|
6111
|
-
:param context:
|
|
6112
|
-
:param layout:
|
|
6113
|
-
"""
|
|
6114
|
-
...
|
|
6115
|
-
|
|
6116
6085
|
def driver_add(self) -> bpy.types.FCurve:
|
|
6117
6086
|
"""Adds driver(s) to the given property
|
|
6118
6087
|
|
|
@@ -6235,6 +6204,13 @@ class USERPREF_PT_edit_node_editor(
|
|
|
6235
6204
|
"""Returns the property from the path, raise an exception when not found."""
|
|
6236
6205
|
...
|
|
6237
6206
|
|
|
6207
|
+
def poll(self, _context):
|
|
6208
|
+
"""
|
|
6209
|
+
|
|
6210
|
+
:param _context:
|
|
6211
|
+
"""
|
|
6212
|
+
...
|
|
6213
|
+
|
|
6238
6214
|
def pop(self):
|
|
6239
6215
|
"""Remove and return the value of the custom property assigned to key or default
|
|
6240
6216
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -6285,13 +6261,14 @@ class USERPREF_PT_edit_node_editor(
|
|
|
6285
6261
|
"""
|
|
6286
6262
|
...
|
|
6287
6263
|
|
|
6288
|
-
class
|
|
6264
|
+
class USERPREF_PT_experimental_new_features(ExperimentalPanel, bpy_types._GenericUI):
|
|
6289
6265
|
bl_context: typing.Any
|
|
6290
6266
|
bl_label: typing.Any
|
|
6291
6267
|
bl_region_type: typing.Any
|
|
6292
6268
|
bl_rna: typing.Any
|
|
6293
6269
|
bl_space_type: typing.Any
|
|
6294
6270
|
id_data: typing.Any
|
|
6271
|
+
url_prefix: typing.Any
|
|
6295
6272
|
|
|
6296
6273
|
def append(self, draw_func):
|
|
6297
6274
|
"""Append a draw function to this menu,
|
|
@@ -6454,6 +6431,13 @@ class USERPREF_PT_edit_objects(EditingPanel, bpy_types._GenericUI):
|
|
|
6454
6431
|
"""Returns the property from the path, raise an exception when not found."""
|
|
6455
6432
|
...
|
|
6456
6433
|
|
|
6434
|
+
def poll(self, _context):
|
|
6435
|
+
"""
|
|
6436
|
+
|
|
6437
|
+
:param _context:
|
|
6438
|
+
"""
|
|
6439
|
+
...
|
|
6440
|
+
|
|
6457
6441
|
def pop(self):
|
|
6458
6442
|
"""Remove and return the value of the custom property assigned to key or default
|
|
6459
6443
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -6504,21 +6488,14 @@ class USERPREF_PT_edit_objects(EditingPanel, bpy_types._GenericUI):
|
|
|
6504
6488
|
"""
|
|
6505
6489
|
...
|
|
6506
6490
|
|
|
6507
|
-
class
|
|
6508
|
-
EditingPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
6509
|
-
):
|
|
6510
|
-
"""Base class for panels to center align contents with some horizontal margin.
|
|
6511
|
-
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
6512
|
-
"""
|
|
6513
|
-
|
|
6491
|
+
class USERPREF_PT_experimental_prototypes(ExperimentalPanel, bpy_types._GenericUI):
|
|
6514
6492
|
bl_context: typing.Any
|
|
6515
6493
|
bl_label: typing.Any
|
|
6516
|
-
bl_options: typing.Any
|
|
6517
|
-
bl_parent_id: typing.Any
|
|
6518
6494
|
bl_region_type: typing.Any
|
|
6519
6495
|
bl_rna: typing.Any
|
|
6520
6496
|
bl_space_type: typing.Any
|
|
6521
6497
|
id_data: typing.Any
|
|
6498
|
+
url_prefix: typing.Any
|
|
6522
6499
|
|
|
6523
6500
|
def append(self, draw_func):
|
|
6524
6501
|
"""Append a draw function to this menu,
|
|
@@ -6559,14 +6536,6 @@ class USERPREF_PT_edit_objects_duplicate_data(
|
|
|
6559
6536
|
"""
|
|
6560
6537
|
...
|
|
6561
6538
|
|
|
6562
|
-
def draw_centered(self, context, layout):
|
|
6563
|
-
"""
|
|
6564
|
-
|
|
6565
|
-
:param context:
|
|
6566
|
-
:param layout:
|
|
6567
|
-
"""
|
|
6568
|
-
...
|
|
6569
|
-
|
|
6570
6539
|
def driver_add(self) -> bpy.types.FCurve:
|
|
6571
6540
|
"""Adds driver(s) to the given property
|
|
6572
6541
|
|
|
@@ -6689,6 +6658,13 @@ class USERPREF_PT_edit_objects_duplicate_data(
|
|
|
6689
6658
|
"""Returns the property from the path, raise an exception when not found."""
|
|
6690
6659
|
...
|
|
6691
6660
|
|
|
6661
|
+
def poll(self, _context):
|
|
6662
|
+
"""
|
|
6663
|
+
|
|
6664
|
+
:param _context:
|
|
6665
|
+
"""
|
|
6666
|
+
...
|
|
6667
|
+
|
|
6692
6668
|
def pop(self):
|
|
6693
6669
|
"""Remove and return the value of the custom property assigned to key or default
|
|
6694
6670
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -6739,16 +6715,10 @@ class USERPREF_PT_edit_objects_duplicate_data(
|
|
|
6739
6715
|
"""
|
|
6740
6716
|
...
|
|
6741
6717
|
|
|
6742
|
-
class
|
|
6743
|
-
EditingPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
6744
|
-
):
|
|
6745
|
-
"""Base class for panels to center align contents with some horizontal margin.
|
|
6746
|
-
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
6747
|
-
"""
|
|
6748
|
-
|
|
6718
|
+
class USERPREF_PT_extensions(ExtensionsPanel, bpy_types._GenericUI):
|
|
6749
6719
|
bl_context: typing.Any
|
|
6750
6720
|
bl_label: typing.Any
|
|
6751
|
-
|
|
6721
|
+
bl_options: typing.Any
|
|
6752
6722
|
bl_region_type: typing.Any
|
|
6753
6723
|
bl_rna: typing.Any
|
|
6754
6724
|
bl_space_type: typing.Any
|
|
@@ -6793,14 +6763,6 @@ class USERPREF_PT_edit_objects_new(
|
|
|
6793
6763
|
"""
|
|
6794
6764
|
...
|
|
6795
6765
|
|
|
6796
|
-
def draw_centered(self, context, layout):
|
|
6797
|
-
"""
|
|
6798
|
-
|
|
6799
|
-
:param context:
|
|
6800
|
-
:param layout:
|
|
6801
|
-
"""
|
|
6802
|
-
...
|
|
6803
|
-
|
|
6804
6766
|
def driver_add(self) -> bpy.types.FCurve:
|
|
6805
6767
|
"""Adds driver(s) to the given property
|
|
6806
6768
|
|
|
@@ -6973,19 +6935,13 @@ class USERPREF_PT_edit_objects_new(
|
|
|
6973
6935
|
"""
|
|
6974
6936
|
...
|
|
6975
6937
|
|
|
6976
|
-
class
|
|
6977
|
-
EditingPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
6978
|
-
):
|
|
6979
|
-
"""Base class for panels to center align contents with some horizontal margin.
|
|
6980
|
-
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
6981
|
-
"""
|
|
6982
|
-
|
|
6983
|
-
bl_context: typing.Any
|
|
6938
|
+
class USERPREF_PT_extensions_repos(bpy_types._GenericUI):
|
|
6984
6939
|
bl_label: typing.Any
|
|
6985
6940
|
bl_options: typing.Any
|
|
6986
6941
|
bl_region_type: typing.Any
|
|
6987
6942
|
bl_rna: typing.Any
|
|
6988
6943
|
bl_space_type: typing.Any
|
|
6944
|
+
bl_ui_units_x: typing.Any
|
|
6989
6945
|
id_data: typing.Any
|
|
6990
6946
|
|
|
6991
6947
|
def append(self, draw_func):
|
|
@@ -7027,14 +6983,6 @@ class USERPREF_PT_edit_sequence_editor(
|
|
|
7027
6983
|
"""
|
|
7028
6984
|
...
|
|
7029
6985
|
|
|
7030
|
-
def draw_centered(self, context, layout):
|
|
7031
|
-
"""
|
|
7032
|
-
|
|
7033
|
-
:param context:
|
|
7034
|
-
:param layout:
|
|
7035
|
-
"""
|
|
7036
|
-
...
|
|
7037
|
-
|
|
7038
6986
|
def driver_add(self) -> bpy.types.FCurve:
|
|
7039
6987
|
"""Adds driver(s) to the given property
|
|
7040
6988
|
|
|
@@ -7207,13 +7155,7 @@ class USERPREF_PT_edit_sequence_editor(
|
|
|
7207
7155
|
"""
|
|
7208
7156
|
...
|
|
7209
7157
|
|
|
7210
|
-
class
|
|
7211
|
-
EditingPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
7212
|
-
):
|
|
7213
|
-
"""Base class for panels to center align contents with some horizontal margin.
|
|
7214
|
-
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
7215
|
-
"""
|
|
7216
|
-
|
|
7158
|
+
class USERPREF_PT_file_paths_applications(FilePathsPanel, bpy_types._GenericUI):
|
|
7217
7159
|
bl_context: typing.Any
|
|
7218
7160
|
bl_label: typing.Any
|
|
7219
7161
|
bl_options: typing.Any
|
|
@@ -7261,14 +7203,6 @@ class USERPREF_PT_edit_text_editor(
|
|
|
7261
7203
|
"""
|
|
7262
7204
|
...
|
|
7263
7205
|
|
|
7264
|
-
def draw_centered(self, context, layout):
|
|
7265
|
-
"""
|
|
7266
|
-
|
|
7267
|
-
:param context:
|
|
7268
|
-
:param layout:
|
|
7269
|
-
"""
|
|
7270
|
-
...
|
|
7271
|
-
|
|
7272
7206
|
def driver_add(self) -> bpy.types.FCurve:
|
|
7273
7207
|
"""Adds driver(s) to the given property
|
|
7274
7208
|
|
|
@@ -7441,16 +7375,9 @@ class USERPREF_PT_edit_text_editor(
|
|
|
7441
7375
|
"""
|
|
7442
7376
|
...
|
|
7443
7377
|
|
|
7444
|
-
class
|
|
7445
|
-
EditingPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
7446
|
-
):
|
|
7447
|
-
"""Base class for panels to center align contents with some horizontal margin.
|
|
7448
|
-
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
7449
|
-
"""
|
|
7450
|
-
|
|
7378
|
+
class USERPREF_PT_file_paths_asset_libraries(FilePathsPanel, bpy_types._GenericUI):
|
|
7451
7379
|
bl_context: typing.Any
|
|
7452
7380
|
bl_label: typing.Any
|
|
7453
|
-
bl_options: typing.Any
|
|
7454
7381
|
bl_region_type: typing.Any
|
|
7455
7382
|
bl_rna: typing.Any
|
|
7456
7383
|
bl_space_type: typing.Any
|
|
@@ -7495,14 +7422,6 @@ class USERPREF_PT_edit_weight_paint(
|
|
|
7495
7422
|
"""
|
|
7496
7423
|
...
|
|
7497
7424
|
|
|
7498
|
-
def draw_centered(self, context, layout):
|
|
7499
|
-
"""
|
|
7500
|
-
|
|
7501
|
-
:param context:
|
|
7502
|
-
:param layout:
|
|
7503
|
-
"""
|
|
7504
|
-
...
|
|
7505
|
-
|
|
7506
7425
|
def driver_add(self) -> bpy.types.FCurve:
|
|
7507
7426
|
"""Adds driver(s) to the given property
|
|
7508
7427
|
|
|
@@ -7675,14 +7594,13 @@ class USERPREF_PT_edit_weight_paint(
|
|
|
7675
7594
|
"""
|
|
7676
7595
|
...
|
|
7677
7596
|
|
|
7678
|
-
class
|
|
7597
|
+
class USERPREF_PT_file_paths_data(FilePathsPanel, bpy_types._GenericUI):
|
|
7679
7598
|
bl_context: typing.Any
|
|
7680
7599
|
bl_label: typing.Any
|
|
7681
7600
|
bl_region_type: typing.Any
|
|
7682
7601
|
bl_rna: typing.Any
|
|
7683
7602
|
bl_space_type: typing.Any
|
|
7684
7603
|
id_data: typing.Any
|
|
7685
|
-
url_prefix: typing.Any
|
|
7686
7604
|
|
|
7687
7605
|
def append(self, draw_func):
|
|
7688
7606
|
"""Append a draw function to this menu,
|
|
@@ -7845,13 +7763,6 @@ class USERPREF_PT_experimental_debugging(ExperimentalPanel, bpy_types._GenericUI
|
|
|
7845
7763
|
"""Returns the property from the path, raise an exception when not found."""
|
|
7846
7764
|
...
|
|
7847
7765
|
|
|
7848
|
-
def poll(self, _context):
|
|
7849
|
-
"""
|
|
7850
|
-
|
|
7851
|
-
:param _context:
|
|
7852
|
-
"""
|
|
7853
|
-
...
|
|
7854
|
-
|
|
7855
7766
|
def pop(self):
|
|
7856
7767
|
"""Remove and return the value of the custom property assigned to key or default
|
|
7857
7768
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -7902,14 +7813,14 @@ class USERPREF_PT_experimental_debugging(ExperimentalPanel, bpy_types._GenericUI
|
|
|
7902
7813
|
"""
|
|
7903
7814
|
...
|
|
7904
7815
|
|
|
7905
|
-
class
|
|
7816
|
+
class USERPREF_PT_file_paths_development(FilePathsPanel, bpy_types._GenericUI):
|
|
7906
7817
|
bl_context: typing.Any
|
|
7907
7818
|
bl_label: typing.Any
|
|
7819
|
+
bl_options: typing.Any
|
|
7908
7820
|
bl_region_type: typing.Any
|
|
7909
7821
|
bl_rna: typing.Any
|
|
7910
7822
|
bl_space_type: typing.Any
|
|
7911
7823
|
id_data: typing.Any
|
|
7912
|
-
url_prefix: typing.Any
|
|
7913
7824
|
|
|
7914
7825
|
def append(self, draw_func):
|
|
7915
7826
|
"""Append a draw function to this menu,
|
|
@@ -8072,10 +7983,10 @@ class USERPREF_PT_experimental_new_features(ExperimentalPanel, bpy_types._Generi
|
|
|
8072
7983
|
"""Returns the property from the path, raise an exception when not found."""
|
|
8073
7984
|
...
|
|
8074
7985
|
|
|
8075
|
-
def poll(self,
|
|
7986
|
+
def poll(self, context):
|
|
8076
7987
|
"""
|
|
8077
7988
|
|
|
8078
|
-
:param
|
|
7989
|
+
:param context:
|
|
8079
7990
|
"""
|
|
8080
7991
|
...
|
|
8081
7992
|
|
|
@@ -8129,14 +8040,14 @@ class USERPREF_PT_experimental_new_features(ExperimentalPanel, bpy_types._Generi
|
|
|
8129
8040
|
"""
|
|
8130
8041
|
...
|
|
8131
8042
|
|
|
8132
|
-
class
|
|
8043
|
+
class USERPREF_PT_file_paths_render(FilePathsPanel, bpy_types._GenericUI):
|
|
8133
8044
|
bl_context: typing.Any
|
|
8134
8045
|
bl_label: typing.Any
|
|
8046
|
+
bl_parent_id: typing.Any
|
|
8135
8047
|
bl_region_type: typing.Any
|
|
8136
8048
|
bl_rna: typing.Any
|
|
8137
8049
|
bl_space_type: typing.Any
|
|
8138
8050
|
id_data: typing.Any
|
|
8139
|
-
url_prefix: typing.Any
|
|
8140
8051
|
|
|
8141
8052
|
def append(self, draw_func):
|
|
8142
8053
|
"""Append a draw function to this menu,
|
|
@@ -8299,13 +8210,6 @@ class USERPREF_PT_experimental_prototypes(ExperimentalPanel, bpy_types._GenericU
|
|
|
8299
8210
|
"""Returns the property from the path, raise an exception when not found."""
|
|
8300
8211
|
...
|
|
8301
8212
|
|
|
8302
|
-
def poll(self, _context):
|
|
8303
|
-
"""
|
|
8304
|
-
|
|
8305
|
-
:param _context:
|
|
8306
|
-
"""
|
|
8307
|
-
...
|
|
8308
|
-
|
|
8309
8213
|
def pop(self):
|
|
8310
8214
|
"""Remove and return the value of the custom property assigned to key or default
|
|
8311
8215
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -8356,10 +8260,9 @@ class USERPREF_PT_experimental_prototypes(ExperimentalPanel, bpy_types._GenericU
|
|
|
8356
8260
|
"""
|
|
8357
8261
|
...
|
|
8358
8262
|
|
|
8359
|
-
class
|
|
8263
|
+
class USERPREF_PT_file_paths_script_directories(FilePathsPanel, bpy_types._GenericUI):
|
|
8360
8264
|
bl_context: typing.Any
|
|
8361
8265
|
bl_label: typing.Any
|
|
8362
|
-
bl_options: typing.Any
|
|
8363
8266
|
bl_region_type: typing.Any
|
|
8364
8267
|
bl_rna: typing.Any
|
|
8365
8268
|
bl_space_type: typing.Any
|
|
@@ -8576,10 +8479,13 @@ class USERPREF_PT_extensions(ExtensionsPanel, bpy_types._GenericUI):
|
|
|
8576
8479
|
"""
|
|
8577
8480
|
...
|
|
8578
8481
|
|
|
8579
|
-
class
|
|
8482
|
+
class USERPREF_PT_input_keyboard(InputPanel, CenterAlignMixIn, bpy_types._GenericUI):
|
|
8483
|
+
"""Base class for panels to center align contents with some horizontal margin.
|
|
8484
|
+
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
8485
|
+
"""
|
|
8486
|
+
|
|
8580
8487
|
bl_context: typing.Any
|
|
8581
8488
|
bl_label: typing.Any
|
|
8582
|
-
bl_options: typing.Any
|
|
8583
8489
|
bl_region_type: typing.Any
|
|
8584
8490
|
bl_rna: typing.Any
|
|
8585
8491
|
bl_space_type: typing.Any
|
|
@@ -8624,6 +8530,14 @@ class USERPREF_PT_file_paths_applications(FilePathsPanel, bpy_types._GenericUI):
|
|
|
8624
8530
|
"""
|
|
8625
8531
|
...
|
|
8626
8532
|
|
|
8533
|
+
def draw_centered(self, context, layout):
|
|
8534
|
+
"""
|
|
8535
|
+
|
|
8536
|
+
:param context:
|
|
8537
|
+
:param layout:
|
|
8538
|
+
"""
|
|
8539
|
+
...
|
|
8540
|
+
|
|
8627
8541
|
def driver_add(self) -> bpy.types.FCurve:
|
|
8628
8542
|
"""Adds driver(s) to the given property
|
|
8629
8543
|
|
|
@@ -8796,7 +8710,11 @@ class USERPREF_PT_file_paths_applications(FilePathsPanel, bpy_types._GenericUI):
|
|
|
8796
8710
|
"""
|
|
8797
8711
|
...
|
|
8798
8712
|
|
|
8799
|
-
class
|
|
8713
|
+
class USERPREF_PT_input_mouse(InputPanel, CenterAlignMixIn, bpy_types._GenericUI):
|
|
8714
|
+
"""Base class for panels to center align contents with some horizontal margin.
|
|
8715
|
+
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
8716
|
+
"""
|
|
8717
|
+
|
|
8800
8718
|
bl_context: typing.Any
|
|
8801
8719
|
bl_label: typing.Any
|
|
8802
8720
|
bl_region_type: typing.Any
|
|
@@ -8843,6 +8761,14 @@ class USERPREF_PT_file_paths_asset_libraries(FilePathsPanel, bpy_types._GenericU
|
|
|
8843
8761
|
"""
|
|
8844
8762
|
...
|
|
8845
8763
|
|
|
8764
|
+
def draw_centered(self, context, layout):
|
|
8765
|
+
"""
|
|
8766
|
+
|
|
8767
|
+
:param context:
|
|
8768
|
+
:param layout:
|
|
8769
|
+
"""
|
|
8770
|
+
...
|
|
8771
|
+
|
|
8846
8772
|
def driver_add(self) -> bpy.types.FCurve:
|
|
8847
8773
|
"""Adds driver(s) to the given property
|
|
8848
8774
|
|
|
@@ -9015,9 +8941,14 @@ class USERPREF_PT_file_paths_asset_libraries(FilePathsPanel, bpy_types._GenericU
|
|
|
9015
8941
|
"""
|
|
9016
8942
|
...
|
|
9017
8943
|
|
|
9018
|
-
class
|
|
8944
|
+
class USERPREF_PT_input_ndof(InputPanel, CenterAlignMixIn, bpy_types._GenericUI):
|
|
8945
|
+
"""Base class for panels to center align contents with some horizontal margin.
|
|
8946
|
+
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
8947
|
+
"""
|
|
8948
|
+
|
|
9019
8949
|
bl_context: typing.Any
|
|
9020
8950
|
bl_label: typing.Any
|
|
8951
|
+
bl_options: typing.Any
|
|
9021
8952
|
bl_region_type: typing.Any
|
|
9022
8953
|
bl_rna: typing.Any
|
|
9023
8954
|
bl_space_type: typing.Any
|
|
@@ -9062,6 +8993,14 @@ class USERPREF_PT_file_paths_data(FilePathsPanel, bpy_types._GenericUI):
|
|
|
9062
8993
|
"""
|
|
9063
8994
|
...
|
|
9064
8995
|
|
|
8996
|
+
def draw_centered(self, context, layout):
|
|
8997
|
+
"""
|
|
8998
|
+
|
|
8999
|
+
:param context:
|
|
9000
|
+
:param layout:
|
|
9001
|
+
"""
|
|
9002
|
+
...
|
|
9003
|
+
|
|
9065
9004
|
def driver_add(self) -> bpy.types.FCurve:
|
|
9066
9005
|
"""Adds driver(s) to the given property
|
|
9067
9006
|
|
|
@@ -9184,6 +9123,13 @@ class USERPREF_PT_file_paths_data(FilePathsPanel, bpy_types._GenericUI):
|
|
|
9184
9123
|
"""Returns the property from the path, raise an exception when not found."""
|
|
9185
9124
|
...
|
|
9186
9125
|
|
|
9126
|
+
def poll(self, context):
|
|
9127
|
+
"""
|
|
9128
|
+
|
|
9129
|
+
:param context:
|
|
9130
|
+
"""
|
|
9131
|
+
...
|
|
9132
|
+
|
|
9187
9133
|
def pop(self):
|
|
9188
9134
|
"""Remove and return the value of the custom property assigned to key or default
|
|
9189
9135
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -9234,10 +9180,13 @@ class USERPREF_PT_file_paths_data(FilePathsPanel, bpy_types._GenericUI):
|
|
|
9234
9180
|
"""
|
|
9235
9181
|
...
|
|
9236
9182
|
|
|
9237
|
-
class
|
|
9183
|
+
class USERPREF_PT_input_tablet(InputPanel, CenterAlignMixIn, bpy_types._GenericUI):
|
|
9184
|
+
"""Base class for panels to center align contents with some horizontal margin.
|
|
9185
|
+
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
9186
|
+
"""
|
|
9187
|
+
|
|
9238
9188
|
bl_context: typing.Any
|
|
9239
9189
|
bl_label: typing.Any
|
|
9240
|
-
bl_options: typing.Any
|
|
9241
9190
|
bl_region_type: typing.Any
|
|
9242
9191
|
bl_rna: typing.Any
|
|
9243
9192
|
bl_space_type: typing.Any
|
|
@@ -9282,6 +9231,14 @@ class USERPREF_PT_file_paths_development(FilePathsPanel, bpy_types._GenericUI):
|
|
|
9282
9231
|
"""
|
|
9283
9232
|
...
|
|
9284
9233
|
|
|
9234
|
+
def draw_centered(self, context, layout):
|
|
9235
|
+
"""
|
|
9236
|
+
|
|
9237
|
+
:param context:
|
|
9238
|
+
:param layout:
|
|
9239
|
+
"""
|
|
9240
|
+
...
|
|
9241
|
+
|
|
9285
9242
|
def driver_add(self) -> bpy.types.FCurve:
|
|
9286
9243
|
"""Adds driver(s) to the given property
|
|
9287
9244
|
|
|
@@ -9404,13 +9361,6 @@ class USERPREF_PT_file_paths_development(FilePathsPanel, bpy_types._GenericUI):
|
|
|
9404
9361
|
"""Returns the property from the path, raise an exception when not found."""
|
|
9405
9362
|
...
|
|
9406
9363
|
|
|
9407
|
-
def poll(self, context):
|
|
9408
|
-
"""
|
|
9409
|
-
|
|
9410
|
-
:param context:
|
|
9411
|
-
"""
|
|
9412
|
-
...
|
|
9413
|
-
|
|
9414
9364
|
def pop(self):
|
|
9415
9365
|
"""Remove and return the value of the custom property assigned to key or default
|
|
9416
9366
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -9461,10 +9411,14 @@ class USERPREF_PT_file_paths_development(FilePathsPanel, bpy_types._GenericUI):
|
|
|
9461
9411
|
"""
|
|
9462
9412
|
...
|
|
9463
9413
|
|
|
9464
|
-
class
|
|
9414
|
+
class USERPREF_PT_input_touchpad(InputPanel, CenterAlignMixIn, bpy_types._GenericUI):
|
|
9415
|
+
"""Base class for panels to center align contents with some horizontal margin.
|
|
9416
|
+
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
9417
|
+
"""
|
|
9418
|
+
|
|
9465
9419
|
bl_context: typing.Any
|
|
9466
9420
|
bl_label: typing.Any
|
|
9467
|
-
|
|
9421
|
+
bl_options: typing.Any
|
|
9468
9422
|
bl_region_type: typing.Any
|
|
9469
9423
|
bl_rna: typing.Any
|
|
9470
9424
|
bl_space_type: typing.Any
|
|
@@ -9509,6 +9463,14 @@ class USERPREF_PT_file_paths_render(FilePathsPanel, bpy_types._GenericUI):
|
|
|
9509
9463
|
"""
|
|
9510
9464
|
...
|
|
9511
9465
|
|
|
9466
|
+
def draw_centered(self, context, layout):
|
|
9467
|
+
"""
|
|
9468
|
+
|
|
9469
|
+
:param context:
|
|
9470
|
+
:param layout:
|
|
9471
|
+
"""
|
|
9472
|
+
...
|
|
9473
|
+
|
|
9512
9474
|
def driver_add(self) -> bpy.types.FCurve:
|
|
9513
9475
|
"""Adds driver(s) to the given property
|
|
9514
9476
|
|
|
@@ -9631,6 +9593,13 @@ class USERPREF_PT_file_paths_render(FilePathsPanel, bpy_types._GenericUI):
|
|
|
9631
9593
|
"""Returns the property from the path, raise an exception when not found."""
|
|
9632
9594
|
...
|
|
9633
9595
|
|
|
9596
|
+
def poll(self, context):
|
|
9597
|
+
"""
|
|
9598
|
+
|
|
9599
|
+
:param context:
|
|
9600
|
+
"""
|
|
9601
|
+
...
|
|
9602
|
+
|
|
9634
9603
|
def pop(self):
|
|
9635
9604
|
"""Remove and return the value of the custom property assigned to key or default
|
|
9636
9605
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -9681,7 +9650,13 @@ class USERPREF_PT_file_paths_render(FilePathsPanel, bpy_types._GenericUI):
|
|
|
9681
9650
|
"""
|
|
9682
9651
|
...
|
|
9683
9652
|
|
|
9684
|
-
class
|
|
9653
|
+
class USERPREF_PT_interface_display(
|
|
9654
|
+
InterfacePanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
9655
|
+
):
|
|
9656
|
+
"""Base class for panels to center align contents with some horizontal margin.
|
|
9657
|
+
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
9658
|
+
"""
|
|
9659
|
+
|
|
9685
9660
|
bl_context: typing.Any
|
|
9686
9661
|
bl_label: typing.Any
|
|
9687
9662
|
bl_region_type: typing.Any
|
|
@@ -9728,6 +9703,14 @@ class USERPREF_PT_file_paths_script_directories(FilePathsPanel, bpy_types._Gener
|
|
|
9728
9703
|
"""
|
|
9729
9704
|
...
|
|
9730
9705
|
|
|
9706
|
+
def draw_centered(self, context, layout):
|
|
9707
|
+
"""
|
|
9708
|
+
|
|
9709
|
+
:param context:
|
|
9710
|
+
:param layout:
|
|
9711
|
+
"""
|
|
9712
|
+
...
|
|
9713
|
+
|
|
9731
9714
|
def driver_add(self) -> bpy.types.FCurve:
|
|
9732
9715
|
"""Adds driver(s) to the given property
|
|
9733
9716
|
|
|
@@ -9900,10 +9883,15 @@ class USERPREF_PT_file_paths_script_directories(FilePathsPanel, bpy_types._Gener
|
|
|
9900
9883
|
"""
|
|
9901
9884
|
...
|
|
9902
9885
|
|
|
9903
|
-
class
|
|
9886
|
+
class USERPREF_PT_interface_editors(
|
|
9887
|
+
InterfacePanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
9888
|
+
):
|
|
9889
|
+
"""Base class for panels to center align contents with some horizontal margin.
|
|
9890
|
+
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
9891
|
+
"""
|
|
9892
|
+
|
|
9904
9893
|
bl_context: typing.Any
|
|
9905
9894
|
bl_label: typing.Any
|
|
9906
|
-
bl_parent_id: typing.Any
|
|
9907
9895
|
bl_region_type: typing.Any
|
|
9908
9896
|
bl_rna: typing.Any
|
|
9909
9897
|
bl_space_type: typing.Any
|
|
@@ -9948,10 +9936,11 @@ class USERPREF_PT_saveload_autorun(FilePathsPanel, bpy_types._GenericUI):
|
|
|
9948
9936
|
"""
|
|
9949
9937
|
...
|
|
9950
9938
|
|
|
9951
|
-
def
|
|
9939
|
+
def draw_centered(self, context, layout):
|
|
9952
9940
|
"""
|
|
9953
9941
|
|
|
9954
9942
|
:param context:
|
|
9943
|
+
:param layout:
|
|
9955
9944
|
"""
|
|
9956
9945
|
...
|
|
9957
9946
|
|
|
@@ -10127,10 +10116,10 @@ class USERPREF_PT_saveload_autorun(FilePathsPanel, bpy_types._GenericUI):
|
|
|
10127
10116
|
"""
|
|
10128
10117
|
...
|
|
10129
10118
|
|
|
10130
|
-
class
|
|
10119
|
+
class USERPREF_PT_interface_menus(InterfacePanel, bpy_types._GenericUI):
|
|
10131
10120
|
bl_context: typing.Any
|
|
10132
10121
|
bl_label: typing.Any
|
|
10133
|
-
|
|
10122
|
+
bl_options: typing.Any
|
|
10134
10123
|
bl_region_type: typing.Any
|
|
10135
10124
|
bl_rna: typing.Any
|
|
10136
10125
|
bl_space_type: typing.Any
|
|
@@ -10175,13 +10164,6 @@ class USERPREF_PT_text_editor(FilePathsPanel, bpy_types._GenericUI):
|
|
|
10175
10164
|
"""
|
|
10176
10165
|
...
|
|
10177
10166
|
|
|
10178
|
-
def draw_header_preset(self, _context):
|
|
10179
|
-
"""
|
|
10180
|
-
|
|
10181
|
-
:param _context:
|
|
10182
|
-
"""
|
|
10183
|
-
...
|
|
10184
|
-
|
|
10185
10167
|
def driver_add(self) -> bpy.types.FCurve:
|
|
10186
10168
|
"""Adds driver(s) to the given property
|
|
10187
10169
|
|
|
@@ -10354,13 +10336,16 @@ class USERPREF_PT_text_editor(FilePathsPanel, bpy_types._GenericUI):
|
|
|
10354
10336
|
"""
|
|
10355
10337
|
...
|
|
10356
10338
|
|
|
10357
|
-
class
|
|
10339
|
+
class USERPREF_PT_interface_menus_mouse_over(
|
|
10340
|
+
InterfacePanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
10341
|
+
):
|
|
10358
10342
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
10359
10343
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
10360
10344
|
"""
|
|
10361
10345
|
|
|
10362
10346
|
bl_context: typing.Any
|
|
10363
10347
|
bl_label: typing.Any
|
|
10348
|
+
bl_parent_id: typing.Any
|
|
10364
10349
|
bl_region_type: typing.Any
|
|
10365
10350
|
bl_rna: typing.Any
|
|
10366
10351
|
bl_space_type: typing.Any
|
|
@@ -10413,6 +10398,13 @@ class USERPREF_PT_input_keyboard(InputPanel, CenterAlignMixIn, bpy_types._Generi
|
|
|
10413
10398
|
"""
|
|
10414
10399
|
...
|
|
10415
10400
|
|
|
10401
|
+
def draw_header(self, context):
|
|
10402
|
+
"""
|
|
10403
|
+
|
|
10404
|
+
:param context:
|
|
10405
|
+
"""
|
|
10406
|
+
...
|
|
10407
|
+
|
|
10416
10408
|
def driver_add(self) -> bpy.types.FCurve:
|
|
10417
10409
|
"""Adds driver(s) to the given property
|
|
10418
10410
|
|
|
@@ -10585,13 +10577,16 @@ class USERPREF_PT_input_keyboard(InputPanel, CenterAlignMixIn, bpy_types._Generi
|
|
|
10585
10577
|
"""
|
|
10586
10578
|
...
|
|
10587
10579
|
|
|
10588
|
-
class
|
|
10580
|
+
class USERPREF_PT_interface_menus_pie(
|
|
10581
|
+
InterfacePanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
10582
|
+
):
|
|
10589
10583
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
10590
10584
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
10591
10585
|
"""
|
|
10592
10586
|
|
|
10593
10587
|
bl_context: typing.Any
|
|
10594
10588
|
bl_label: typing.Any
|
|
10589
|
+
bl_parent_id: typing.Any
|
|
10595
10590
|
bl_region_type: typing.Any
|
|
10596
10591
|
bl_rna: typing.Any
|
|
10597
10592
|
bl_space_type: typing.Any
|
|
@@ -10816,7 +10811,9 @@ class USERPREF_PT_input_mouse(InputPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
|
10816
10811
|
"""
|
|
10817
10812
|
...
|
|
10818
10813
|
|
|
10819
|
-
class
|
|
10814
|
+
class USERPREF_PT_interface_statusbar(
|
|
10815
|
+
InterfacePanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
10816
|
+
):
|
|
10820
10817
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
10821
10818
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
10822
10819
|
"""
|
|
@@ -10824,6 +10821,7 @@ class USERPREF_PT_input_ndof(InputPanel, CenterAlignMixIn, bpy_types._GenericUI)
|
|
|
10824
10821
|
bl_context: typing.Any
|
|
10825
10822
|
bl_label: typing.Any
|
|
10826
10823
|
bl_options: typing.Any
|
|
10824
|
+
bl_parent_id: typing.Any
|
|
10827
10825
|
bl_region_type: typing.Any
|
|
10828
10826
|
bl_rna: typing.Any
|
|
10829
10827
|
bl_space_type: typing.Any
|
|
@@ -10998,13 +10996,6 @@ class USERPREF_PT_input_ndof(InputPanel, CenterAlignMixIn, bpy_types._GenericUI)
|
|
|
10998
10996
|
"""Returns the property from the path, raise an exception when not found."""
|
|
10999
10997
|
...
|
|
11000
10998
|
|
|
11001
|
-
def poll(self, context):
|
|
11002
|
-
"""
|
|
11003
|
-
|
|
11004
|
-
:param context:
|
|
11005
|
-
"""
|
|
11006
|
-
...
|
|
11007
|
-
|
|
11008
10999
|
def pop(self):
|
|
11009
11000
|
"""Remove and return the value of the custom property assigned to key or default
|
|
11010
11001
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -11055,13 +11046,17 @@ class USERPREF_PT_input_ndof(InputPanel, CenterAlignMixIn, bpy_types._GenericUI)
|
|
|
11055
11046
|
"""
|
|
11056
11047
|
...
|
|
11057
11048
|
|
|
11058
|
-
class
|
|
11049
|
+
class USERPREF_PT_interface_temporary_windows(
|
|
11050
|
+
InterfacePanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
11051
|
+
):
|
|
11059
11052
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
11060
11053
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
11061
11054
|
"""
|
|
11062
11055
|
|
|
11063
11056
|
bl_context: typing.Any
|
|
11064
11057
|
bl_label: typing.Any
|
|
11058
|
+
bl_options: typing.Any
|
|
11059
|
+
bl_parent_id: typing.Any
|
|
11065
11060
|
bl_region_type: typing.Any
|
|
11066
11061
|
bl_rna: typing.Any
|
|
11067
11062
|
bl_space_type: typing.Any
|
|
@@ -11286,7 +11281,9 @@ class USERPREF_PT_input_tablet(InputPanel, CenterAlignMixIn, bpy_types._GenericU
|
|
|
11286
11281
|
"""
|
|
11287
11282
|
...
|
|
11288
11283
|
|
|
11289
|
-
class
|
|
11284
|
+
class USERPREF_PT_interface_text(
|
|
11285
|
+
InterfacePanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
11286
|
+
):
|
|
11290
11287
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
11291
11288
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
11292
11289
|
"""
|
|
@@ -11468,13 +11465,6 @@ class USERPREF_PT_input_touchpad(InputPanel, CenterAlignMixIn, bpy_types._Generi
|
|
|
11468
11465
|
"""Returns the property from the path, raise an exception when not found."""
|
|
11469
11466
|
...
|
|
11470
11467
|
|
|
11471
|
-
def poll(self, context):
|
|
11472
|
-
"""
|
|
11473
|
-
|
|
11474
|
-
:param context:
|
|
11475
|
-
"""
|
|
11476
|
-
...
|
|
11477
|
-
|
|
11478
11468
|
def pop(self):
|
|
11479
11469
|
"""Remove and return the value of the custom property assigned to key or default
|
|
11480
11470
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -11525,7 +11515,7 @@ class USERPREF_PT_input_touchpad(InputPanel, CenterAlignMixIn, bpy_types._Generi
|
|
|
11525
11515
|
"""
|
|
11526
11516
|
...
|
|
11527
11517
|
|
|
11528
|
-
class
|
|
11518
|
+
class USERPREF_PT_interface_translation(
|
|
11529
11519
|
InterfacePanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
11530
11520
|
):
|
|
11531
11521
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
@@ -11537,6 +11527,7 @@ class USERPREF_PT_interface_display(
|
|
|
11537
11527
|
bl_region_type: typing.Any
|
|
11538
11528
|
bl_rna: typing.Any
|
|
11539
11529
|
bl_space_type: typing.Any
|
|
11530
|
+
bl_translation_context: typing.Any
|
|
11540
11531
|
id_data: typing.Any
|
|
11541
11532
|
|
|
11542
11533
|
def append(self, draw_func):
|
|
@@ -11708,6 +11699,13 @@ class USERPREF_PT_interface_display(
|
|
|
11708
11699
|
"""Returns the property from the path, raise an exception when not found."""
|
|
11709
11700
|
...
|
|
11710
11701
|
|
|
11702
|
+
def poll(self, _context):
|
|
11703
|
+
"""
|
|
11704
|
+
|
|
11705
|
+
:param _context:
|
|
11706
|
+
"""
|
|
11707
|
+
...
|
|
11708
|
+
|
|
11711
11709
|
def pop(self):
|
|
11712
11710
|
"""Remove and return the value of the custom property assigned to key or default
|
|
11713
11711
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -11758,15 +11756,10 @@ class USERPREF_PT_interface_display(
|
|
|
11758
11756
|
"""
|
|
11759
11757
|
...
|
|
11760
11758
|
|
|
11761
|
-
class
|
|
11762
|
-
InterfacePanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
11763
|
-
):
|
|
11764
|
-
"""Base class for panels to center align contents with some horizontal margin.
|
|
11765
|
-
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
11766
|
-
"""
|
|
11767
|
-
|
|
11759
|
+
class USERPREF_PT_keymap(KeymapPanel, bpy_types._GenericUI):
|
|
11768
11760
|
bl_context: typing.Any
|
|
11769
11761
|
bl_label: typing.Any
|
|
11762
|
+
bl_options: typing.Any
|
|
11770
11763
|
bl_region_type: typing.Any
|
|
11771
11764
|
bl_rna: typing.Any
|
|
11772
11765
|
bl_space_type: typing.Any
|
|
@@ -11811,14 +11804,6 @@ class USERPREF_PT_interface_editors(
|
|
|
11811
11804
|
"""
|
|
11812
11805
|
...
|
|
11813
11806
|
|
|
11814
|
-
def draw_centered(self, context, layout):
|
|
11815
|
-
"""
|
|
11816
|
-
|
|
11817
|
-
:param context:
|
|
11818
|
-
:param layout:
|
|
11819
|
-
"""
|
|
11820
|
-
...
|
|
11821
|
-
|
|
11822
11807
|
def driver_add(self) -> bpy.types.FCurve:
|
|
11823
11808
|
"""Adds driver(s) to the given property
|
|
11824
11809
|
|
|
@@ -11991,8 +11976,7 @@ class USERPREF_PT_interface_editors(
|
|
|
11991
11976
|
"""
|
|
11992
11977
|
...
|
|
11993
11978
|
|
|
11994
|
-
class
|
|
11995
|
-
bl_context: typing.Any
|
|
11979
|
+
class USERPREF_PT_navigation_bar(bpy_types._GenericUI):
|
|
11996
11980
|
bl_label: typing.Any
|
|
11997
11981
|
bl_options: typing.Any
|
|
11998
11982
|
bl_region_type: typing.Any
|
|
@@ -12211,8 +12195,8 @@ class USERPREF_PT_interface_menus(InterfacePanel, bpy_types._GenericUI):
|
|
|
12211
12195
|
"""
|
|
12212
12196
|
...
|
|
12213
12197
|
|
|
12214
|
-
class
|
|
12215
|
-
|
|
12198
|
+
class USERPREF_PT_navigation_fly_walk(
|
|
12199
|
+
NavigationPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
12216
12200
|
):
|
|
12217
12201
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
12218
12202
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
@@ -12220,7 +12204,6 @@ class USERPREF_PT_interface_menus_mouse_over(
|
|
|
12220
12204
|
|
|
12221
12205
|
bl_context: typing.Any
|
|
12222
12206
|
bl_label: typing.Any
|
|
12223
|
-
bl_parent_id: typing.Any
|
|
12224
12207
|
bl_region_type: typing.Any
|
|
12225
12208
|
bl_rna: typing.Any
|
|
12226
12209
|
bl_space_type: typing.Any
|
|
@@ -12273,13 +12256,6 @@ class USERPREF_PT_interface_menus_mouse_over(
|
|
|
12273
12256
|
"""
|
|
12274
12257
|
...
|
|
12275
12258
|
|
|
12276
|
-
def draw_header(self, context):
|
|
12277
|
-
"""
|
|
12278
|
-
|
|
12279
|
-
:param context:
|
|
12280
|
-
"""
|
|
12281
|
-
...
|
|
12282
|
-
|
|
12283
12259
|
def driver_add(self) -> bpy.types.FCurve:
|
|
12284
12260
|
"""Adds driver(s) to the given property
|
|
12285
12261
|
|
|
@@ -12452,8 +12428,8 @@ class USERPREF_PT_interface_menus_mouse_over(
|
|
|
12452
12428
|
"""
|
|
12453
12429
|
...
|
|
12454
12430
|
|
|
12455
|
-
class
|
|
12456
|
-
|
|
12431
|
+
class USERPREF_PT_navigation_fly_walk_gravity(
|
|
12432
|
+
NavigationPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
12457
12433
|
):
|
|
12458
12434
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
12459
12435
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
@@ -12461,6 +12437,7 @@ class USERPREF_PT_interface_menus_pie(
|
|
|
12461
12437
|
|
|
12462
12438
|
bl_context: typing.Any
|
|
12463
12439
|
bl_label: typing.Any
|
|
12440
|
+
bl_options: typing.Any
|
|
12464
12441
|
bl_parent_id: typing.Any
|
|
12465
12442
|
bl_region_type: typing.Any
|
|
12466
12443
|
bl_rna: typing.Any
|
|
@@ -12514,6 +12491,13 @@ class USERPREF_PT_interface_menus_pie(
|
|
|
12514
12491
|
"""
|
|
12515
12492
|
...
|
|
12516
12493
|
|
|
12494
|
+
def draw_header(self, context):
|
|
12495
|
+
"""
|
|
12496
|
+
|
|
12497
|
+
:param context:
|
|
12498
|
+
"""
|
|
12499
|
+
...
|
|
12500
|
+
|
|
12517
12501
|
def driver_add(self) -> bpy.types.FCurve:
|
|
12518
12502
|
"""Adds driver(s) to the given property
|
|
12519
12503
|
|
|
@@ -12636,6 +12620,13 @@ class USERPREF_PT_interface_menus_pie(
|
|
|
12636
12620
|
"""Returns the property from the path, raise an exception when not found."""
|
|
12637
12621
|
...
|
|
12638
12622
|
|
|
12623
|
+
def poll(self, context):
|
|
12624
|
+
"""
|
|
12625
|
+
|
|
12626
|
+
:param context:
|
|
12627
|
+
"""
|
|
12628
|
+
...
|
|
12629
|
+
|
|
12639
12630
|
def pop(self):
|
|
12640
12631
|
"""Remove and return the value of the custom property assigned to key or default
|
|
12641
12632
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -12686,8 +12677,8 @@ class USERPREF_PT_interface_menus_pie(
|
|
|
12686
12677
|
"""
|
|
12687
12678
|
...
|
|
12688
12679
|
|
|
12689
|
-
class
|
|
12690
|
-
|
|
12680
|
+
class USERPREF_PT_navigation_fly_walk_navigation(
|
|
12681
|
+
NavigationPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
12691
12682
|
):
|
|
12692
12683
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
12693
12684
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
@@ -12871,6 +12862,13 @@ class USERPREF_PT_interface_statusbar(
|
|
|
12871
12862
|
"""Returns the property from the path, raise an exception when not found."""
|
|
12872
12863
|
...
|
|
12873
12864
|
|
|
12865
|
+
def poll(self, context):
|
|
12866
|
+
"""
|
|
12867
|
+
|
|
12868
|
+
:param context:
|
|
12869
|
+
"""
|
|
12870
|
+
...
|
|
12871
|
+
|
|
12874
12872
|
def pop(self):
|
|
12875
12873
|
"""Remove and return the value of the custom property assigned to key or default
|
|
12876
12874
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -12921,8 +12919,8 @@ class USERPREF_PT_interface_statusbar(
|
|
|
12921
12919
|
"""
|
|
12922
12920
|
...
|
|
12923
12921
|
|
|
12924
|
-
class
|
|
12925
|
-
|
|
12922
|
+
class USERPREF_PT_navigation_orbit(
|
|
12923
|
+
NavigationPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
12926
12924
|
):
|
|
12927
12925
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
12928
12926
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
@@ -12930,8 +12928,6 @@ class USERPREF_PT_interface_temporary_windows(
|
|
|
12930
12928
|
|
|
12931
12929
|
bl_context: typing.Any
|
|
12932
12930
|
bl_label: typing.Any
|
|
12933
|
-
bl_options: typing.Any
|
|
12934
|
-
bl_parent_id: typing.Any
|
|
12935
12931
|
bl_region_type: typing.Any
|
|
12936
12932
|
bl_rna: typing.Any
|
|
12937
12933
|
bl_space_type: typing.Any
|
|
@@ -13156,8 +13152,8 @@ class USERPREF_PT_interface_temporary_windows(
|
|
|
13156
13152
|
"""
|
|
13157
13153
|
...
|
|
13158
13154
|
|
|
13159
|
-
class
|
|
13160
|
-
|
|
13155
|
+
class USERPREF_PT_navigation_zoom(
|
|
13156
|
+
NavigationPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
13161
13157
|
):
|
|
13162
13158
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
13163
13159
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
@@ -13165,7 +13161,6 @@ class USERPREF_PT_interface_text(
|
|
|
13165
13161
|
|
|
13166
13162
|
bl_context: typing.Any
|
|
13167
13163
|
bl_label: typing.Any
|
|
13168
|
-
bl_options: typing.Any
|
|
13169
13164
|
bl_region_type: typing.Any
|
|
13170
13165
|
bl_rna: typing.Any
|
|
13171
13166
|
bl_space_type: typing.Any
|
|
@@ -13390,19 +13385,12 @@ class USERPREF_PT_interface_text(
|
|
|
13390
13385
|
"""
|
|
13391
13386
|
...
|
|
13392
13387
|
|
|
13393
|
-
class
|
|
13394
|
-
InterfacePanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
13395
|
-
):
|
|
13396
|
-
"""Base class for panels to center align contents with some horizontal margin.
|
|
13397
|
-
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
13398
|
-
"""
|
|
13399
|
-
|
|
13400
|
-
bl_context: typing.Any
|
|
13388
|
+
class USERPREF_PT_ndof_settings(bpy_types._GenericUI):
|
|
13401
13389
|
bl_label: typing.Any
|
|
13402
13390
|
bl_region_type: typing.Any
|
|
13403
13391
|
bl_rna: typing.Any
|
|
13404
13392
|
bl_space_type: typing.Any
|
|
13405
|
-
|
|
13393
|
+
bl_ui_units_x: typing.Any
|
|
13406
13394
|
id_data: typing.Any
|
|
13407
13395
|
|
|
13408
13396
|
def append(self, draw_func):
|
|
@@ -13444,11 +13432,12 @@ class USERPREF_PT_interface_translation(
|
|
|
13444
13432
|
"""
|
|
13445
13433
|
...
|
|
13446
13434
|
|
|
13447
|
-
def
|
|
13435
|
+
def draw_settings(self, layout, props, show_3dview_settings=True):
|
|
13448
13436
|
"""
|
|
13449
13437
|
|
|
13450
|
-
:param context:
|
|
13451
13438
|
:param layout:
|
|
13439
|
+
:param props:
|
|
13440
|
+
:param show_3dview_settings:
|
|
13452
13441
|
"""
|
|
13453
13442
|
...
|
|
13454
13443
|
|
|
@@ -13574,13 +13563,6 @@ class USERPREF_PT_interface_translation(
|
|
|
13574
13563
|
"""Returns the property from the path, raise an exception when not found."""
|
|
13575
13564
|
...
|
|
13576
13565
|
|
|
13577
|
-
def poll(self, _context):
|
|
13578
|
-
"""
|
|
13579
|
-
|
|
13580
|
-
:param _context:
|
|
13581
|
-
"""
|
|
13582
|
-
...
|
|
13583
|
-
|
|
13584
13566
|
def pop(self):
|
|
13585
13567
|
"""Remove and return the value of the custom property assigned to key or default
|
|
13586
13568
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -13631,8 +13613,7 @@ class USERPREF_PT_interface_translation(
|
|
|
13631
13613
|
"""
|
|
13632
13614
|
...
|
|
13633
13615
|
|
|
13634
|
-
class
|
|
13635
|
-
bl_context: typing.Any
|
|
13616
|
+
class USERPREF_PT_save_preferences(bpy_types._GenericUI):
|
|
13636
13617
|
bl_label: typing.Any
|
|
13637
13618
|
bl_options: typing.Any
|
|
13638
13619
|
bl_region_type: typing.Any
|
|
@@ -13801,6 +13782,13 @@ class USERPREF_PT_keymap(KeymapPanel, bpy_types._GenericUI):
|
|
|
13801
13782
|
"""Returns the property from the path, raise an exception when not found."""
|
|
13802
13783
|
...
|
|
13803
13784
|
|
|
13785
|
+
def poll(self, context):
|
|
13786
|
+
"""
|
|
13787
|
+
|
|
13788
|
+
:param context:
|
|
13789
|
+
"""
|
|
13790
|
+
...
|
|
13791
|
+
|
|
13804
13792
|
def pop(self):
|
|
13805
13793
|
"""Remove and return the value of the custom property assigned to key or default
|
|
13806
13794
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -13851,15 +13839,10 @@ class USERPREF_PT_keymap(KeymapPanel, bpy_types._GenericUI):
|
|
|
13851
13839
|
"""
|
|
13852
13840
|
...
|
|
13853
13841
|
|
|
13854
|
-
class
|
|
13855
|
-
NavigationPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
13856
|
-
):
|
|
13857
|
-
"""Base class for panels to center align contents with some horizontal margin.
|
|
13858
|
-
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
13859
|
-
"""
|
|
13860
|
-
|
|
13842
|
+
class USERPREF_PT_saveload_autorun(FilePathsPanel, bpy_types._GenericUI):
|
|
13861
13843
|
bl_context: typing.Any
|
|
13862
13844
|
bl_label: typing.Any
|
|
13845
|
+
bl_parent_id: typing.Any
|
|
13863
13846
|
bl_region_type: typing.Any
|
|
13864
13847
|
bl_rna: typing.Any
|
|
13865
13848
|
bl_space_type: typing.Any
|
|
@@ -13904,11 +13887,10 @@ class USERPREF_PT_navigation_fly_walk(
|
|
|
13904
13887
|
"""
|
|
13905
13888
|
...
|
|
13906
13889
|
|
|
13907
|
-
def
|
|
13890
|
+
def draw_header(self, context):
|
|
13908
13891
|
"""
|
|
13909
13892
|
|
|
13910
13893
|
:param context:
|
|
13911
|
-
:param layout:
|
|
13912
13894
|
"""
|
|
13913
13895
|
...
|
|
13914
13896
|
|
|
@@ -14084,17 +14066,13 @@ class USERPREF_PT_navigation_fly_walk(
|
|
|
14084
14066
|
"""
|
|
14085
14067
|
...
|
|
14086
14068
|
|
|
14087
|
-
class
|
|
14088
|
-
NavigationPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
14089
|
-
):
|
|
14069
|
+
class USERPREF_PT_saveload_blend(SaveLoadPanel, CenterAlignMixIn, bpy_types._GenericUI):
|
|
14090
14070
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
14091
14071
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
14092
14072
|
"""
|
|
14093
14073
|
|
|
14094
14074
|
bl_context: typing.Any
|
|
14095
14075
|
bl_label: typing.Any
|
|
14096
|
-
bl_options: typing.Any
|
|
14097
|
-
bl_parent_id: typing.Any
|
|
14098
14076
|
bl_region_type: typing.Any
|
|
14099
14077
|
bl_rna: typing.Any
|
|
14100
14078
|
bl_space_type: typing.Any
|
|
@@ -14147,13 +14125,6 @@ class USERPREF_PT_navigation_fly_walk_gravity(
|
|
|
14147
14125
|
"""
|
|
14148
14126
|
...
|
|
14149
14127
|
|
|
14150
|
-
def draw_header(self, context):
|
|
14151
|
-
"""
|
|
14152
|
-
|
|
14153
|
-
:param context:
|
|
14154
|
-
"""
|
|
14155
|
-
...
|
|
14156
|
-
|
|
14157
14128
|
def driver_add(self) -> bpy.types.FCurve:
|
|
14158
14129
|
"""Adds driver(s) to the given property
|
|
14159
14130
|
|
|
@@ -14276,13 +14247,6 @@ class USERPREF_PT_navigation_fly_walk_gravity(
|
|
|
14276
14247
|
"""Returns the property from the path, raise an exception when not found."""
|
|
14277
14248
|
...
|
|
14278
14249
|
|
|
14279
|
-
def poll(self, context):
|
|
14280
|
-
"""
|
|
14281
|
-
|
|
14282
|
-
:param context:
|
|
14283
|
-
"""
|
|
14284
|
-
...
|
|
14285
|
-
|
|
14286
14250
|
def pop(self):
|
|
14287
14251
|
"""Remove and return the value of the custom property assigned to key or default
|
|
14288
14252
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -14333,8 +14297,8 @@ class USERPREF_PT_navigation_fly_walk_gravity(
|
|
|
14333
14297
|
"""
|
|
14334
14298
|
...
|
|
14335
14299
|
|
|
14336
|
-
class
|
|
14337
|
-
|
|
14300
|
+
class USERPREF_PT_saveload_file_browser(
|
|
14301
|
+
SaveLoadPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
14338
14302
|
):
|
|
14339
14303
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
14340
14304
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
@@ -14342,8 +14306,6 @@ class USERPREF_PT_navigation_fly_walk_navigation(
|
|
|
14342
14306
|
|
|
14343
14307
|
bl_context: typing.Any
|
|
14344
14308
|
bl_label: typing.Any
|
|
14345
|
-
bl_options: typing.Any
|
|
14346
|
-
bl_parent_id: typing.Any
|
|
14347
14309
|
bl_region_type: typing.Any
|
|
14348
14310
|
bl_rna: typing.Any
|
|
14349
14311
|
bl_space_type: typing.Any
|
|
@@ -14518,13 +14480,6 @@ class USERPREF_PT_navigation_fly_walk_navigation(
|
|
|
14518
14480
|
"""Returns the property from the path, raise an exception when not found."""
|
|
14519
14481
|
...
|
|
14520
14482
|
|
|
14521
|
-
def poll(self, context):
|
|
14522
|
-
"""
|
|
14523
|
-
|
|
14524
|
-
:param context:
|
|
14525
|
-
"""
|
|
14526
|
-
...
|
|
14527
|
-
|
|
14528
14483
|
def pop(self):
|
|
14529
14484
|
"""Remove and return the value of the custom property assigned to key or default
|
|
14530
14485
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -14575,15 +14530,11 @@ class USERPREF_PT_navigation_fly_walk_navigation(
|
|
|
14575
14530
|
"""
|
|
14576
14531
|
...
|
|
14577
14532
|
|
|
14578
|
-
class
|
|
14579
|
-
NavigationPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
14580
|
-
):
|
|
14581
|
-
"""Base class for panels to center align contents with some horizontal margin.
|
|
14582
|
-
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
14583
|
-
"""
|
|
14584
|
-
|
|
14533
|
+
class USERPREF_PT_studiolight_light_editor(StudioLightPanel, bpy_types._GenericUI):
|
|
14585
14534
|
bl_context: typing.Any
|
|
14586
14535
|
bl_label: typing.Any
|
|
14536
|
+
bl_options: typing.Any
|
|
14537
|
+
bl_parent_id: typing.Any
|
|
14587
14538
|
bl_region_type: typing.Any
|
|
14588
14539
|
bl_rna: typing.Any
|
|
14589
14540
|
bl_space_type: typing.Any
|
|
@@ -14628,14 +14579,6 @@ class USERPREF_PT_navigation_orbit(
|
|
|
14628
14579
|
"""
|
|
14629
14580
|
...
|
|
14630
14581
|
|
|
14631
|
-
def draw_centered(self, context, layout):
|
|
14632
|
-
"""
|
|
14633
|
-
|
|
14634
|
-
:param context:
|
|
14635
|
-
:param layout:
|
|
14636
|
-
"""
|
|
14637
|
-
...
|
|
14638
|
-
|
|
14639
14582
|
def driver_add(self) -> bpy.types.FCurve:
|
|
14640
14583
|
"""Adds driver(s) to the given property
|
|
14641
14584
|
|
|
@@ -14745,6 +14688,14 @@ class USERPREF_PT_navigation_orbit(
|
|
|
14745
14688
|
"""
|
|
14746
14689
|
...
|
|
14747
14690
|
|
|
14691
|
+
def opengl_light_buttons(self, layout, light):
|
|
14692
|
+
"""
|
|
14693
|
+
|
|
14694
|
+
:param layout:
|
|
14695
|
+
:param light:
|
|
14696
|
+
"""
|
|
14697
|
+
...
|
|
14698
|
+
|
|
14748
14699
|
def path_from_id(self) -> str:
|
|
14749
14700
|
"""Returns the data path from the ID to this object (string).
|
|
14750
14701
|
|
|
@@ -14808,19 +14759,16 @@ class USERPREF_PT_navigation_orbit(
|
|
|
14808
14759
|
"""
|
|
14809
14760
|
...
|
|
14810
14761
|
|
|
14811
|
-
class
|
|
14812
|
-
|
|
14762
|
+
class USERPREF_PT_studiolight_lights(
|
|
14763
|
+
StudioLightPanel, StudioLightPanelMixin, bpy_types._GenericUI
|
|
14813
14764
|
):
|
|
14814
|
-
"""Base class for panels to center align contents with some horizontal margin.
|
|
14815
|
-
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
14816
|
-
"""
|
|
14817
|
-
|
|
14818
14765
|
bl_context: typing.Any
|
|
14819
14766
|
bl_label: typing.Any
|
|
14820
14767
|
bl_region_type: typing.Any
|
|
14821
14768
|
bl_rna: typing.Any
|
|
14822
14769
|
bl_space_type: typing.Any
|
|
14823
14770
|
id_data: typing.Any
|
|
14771
|
+
sl_type: typing.Any
|
|
14824
14772
|
|
|
14825
14773
|
def append(self, draw_func):
|
|
14826
14774
|
"""Append a draw function to this menu,
|
|
@@ -14861,11 +14809,26 @@ class USERPREF_PT_navigation_zoom(
|
|
|
14861
14809
|
"""
|
|
14862
14810
|
...
|
|
14863
14811
|
|
|
14864
|
-
def
|
|
14812
|
+
def draw_header_preset(self, _context):
|
|
14813
|
+
"""
|
|
14814
|
+
|
|
14815
|
+
:param _context:
|
|
14816
|
+
"""
|
|
14817
|
+
...
|
|
14818
|
+
|
|
14819
|
+
def draw_light_list(self, layout, lights):
|
|
14820
|
+
"""
|
|
14821
|
+
|
|
14822
|
+
:param layout:
|
|
14823
|
+
:param lights:
|
|
14824
|
+
"""
|
|
14825
|
+
...
|
|
14826
|
+
|
|
14827
|
+
def draw_studio_light(self, layout, studio_light):
|
|
14865
14828
|
"""
|
|
14866
14829
|
|
|
14867
|
-
:param context:
|
|
14868
14830
|
:param layout:
|
|
14831
|
+
:param studio_light:
|
|
14869
14832
|
"""
|
|
14870
14833
|
...
|
|
14871
14834
|
|
|
@@ -14892,6 +14855,7 @@ class USERPREF_PT_navigation_zoom(
|
|
|
14892
14855
|
"""
|
|
14893
14856
|
...
|
|
14894
14857
|
|
|
14858
|
+
def get_error_message(self): ...
|
|
14895
14859
|
def id_properties_clear(self):
|
|
14896
14860
|
"""
|
|
14897
14861
|
|
|
@@ -15041,17 +15005,16 @@ class USERPREF_PT_navigation_zoom(
|
|
|
15041
15005
|
"""
|
|
15042
15006
|
...
|
|
15043
15007
|
|
|
15044
|
-
class
|
|
15045
|
-
|
|
15046
|
-
|
|
15047
|
-
"""
|
|
15048
|
-
|
|
15008
|
+
class USERPREF_PT_studiolight_matcaps(
|
|
15009
|
+
StudioLightPanel, StudioLightPanelMixin, bpy_types._GenericUI
|
|
15010
|
+
):
|
|
15049
15011
|
bl_context: typing.Any
|
|
15050
15012
|
bl_label: typing.Any
|
|
15051
15013
|
bl_region_type: typing.Any
|
|
15052
15014
|
bl_rna: typing.Any
|
|
15053
15015
|
bl_space_type: typing.Any
|
|
15054
15016
|
id_data: typing.Any
|
|
15017
|
+
sl_type: typing.Any
|
|
15055
15018
|
|
|
15056
15019
|
def append(self, draw_func):
|
|
15057
15020
|
"""Append a draw function to this menu,
|
|
@@ -15092,11 +15055,26 @@ class USERPREF_PT_saveload_blend(SaveLoadPanel, CenterAlignMixIn, bpy_types._Gen
|
|
|
15092
15055
|
"""
|
|
15093
15056
|
...
|
|
15094
15057
|
|
|
15095
|
-
def
|
|
15058
|
+
def draw_header_preset(self, _context):
|
|
15059
|
+
"""
|
|
15060
|
+
|
|
15061
|
+
:param _context:
|
|
15062
|
+
"""
|
|
15063
|
+
...
|
|
15064
|
+
|
|
15065
|
+
def draw_light_list(self, layout, lights):
|
|
15066
|
+
"""
|
|
15067
|
+
|
|
15068
|
+
:param layout:
|
|
15069
|
+
:param lights:
|
|
15070
|
+
"""
|
|
15071
|
+
...
|
|
15072
|
+
|
|
15073
|
+
def draw_studio_light(self, layout, studio_light):
|
|
15096
15074
|
"""
|
|
15097
15075
|
|
|
15098
|
-
:param context:
|
|
15099
15076
|
:param layout:
|
|
15077
|
+
:param studio_light:
|
|
15100
15078
|
"""
|
|
15101
15079
|
...
|
|
15102
15080
|
|
|
@@ -15123,6 +15101,7 @@ class USERPREF_PT_saveload_blend(SaveLoadPanel, CenterAlignMixIn, bpy_types._Gen
|
|
|
15123
15101
|
"""
|
|
15124
15102
|
...
|
|
15125
15103
|
|
|
15104
|
+
def get_error_message(self): ...
|
|
15126
15105
|
def id_properties_clear(self):
|
|
15127
15106
|
"""
|
|
15128
15107
|
|
|
@@ -15272,19 +15251,16 @@ class USERPREF_PT_saveload_blend(SaveLoadPanel, CenterAlignMixIn, bpy_types._Gen
|
|
|
15272
15251
|
"""
|
|
15273
15252
|
...
|
|
15274
15253
|
|
|
15275
|
-
class
|
|
15276
|
-
|
|
15254
|
+
class USERPREF_PT_studiolight_world(
|
|
15255
|
+
StudioLightPanel, StudioLightPanelMixin, bpy_types._GenericUI
|
|
15277
15256
|
):
|
|
15278
|
-
"""Base class for panels to center align contents with some horizontal margin.
|
|
15279
|
-
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
15280
|
-
"""
|
|
15281
|
-
|
|
15282
15257
|
bl_context: typing.Any
|
|
15283
15258
|
bl_label: typing.Any
|
|
15284
15259
|
bl_region_type: typing.Any
|
|
15285
15260
|
bl_rna: typing.Any
|
|
15286
15261
|
bl_space_type: typing.Any
|
|
15287
15262
|
id_data: typing.Any
|
|
15263
|
+
sl_type: typing.Any
|
|
15288
15264
|
|
|
15289
15265
|
def append(self, draw_func):
|
|
15290
15266
|
"""Append a draw function to this menu,
|
|
@@ -15325,11 +15301,26 @@ class USERPREF_PT_saveload_file_browser(
|
|
|
15325
15301
|
"""
|
|
15326
15302
|
...
|
|
15327
15303
|
|
|
15328
|
-
def
|
|
15304
|
+
def draw_header_preset(self, _context):
|
|
15305
|
+
"""
|
|
15306
|
+
|
|
15307
|
+
:param _context:
|
|
15308
|
+
"""
|
|
15309
|
+
...
|
|
15310
|
+
|
|
15311
|
+
def draw_light_list(self, layout, lights):
|
|
15312
|
+
"""
|
|
15313
|
+
|
|
15314
|
+
:param layout:
|
|
15315
|
+
:param lights:
|
|
15316
|
+
"""
|
|
15317
|
+
...
|
|
15318
|
+
|
|
15319
|
+
def draw_studio_light(self, layout, studio_light):
|
|
15329
15320
|
"""
|
|
15330
15321
|
|
|
15331
|
-
:param context:
|
|
15332
15322
|
:param layout:
|
|
15323
|
+
:param studio_light:
|
|
15333
15324
|
"""
|
|
15334
15325
|
...
|
|
15335
15326
|
|
|
@@ -15356,6 +15347,7 @@ class USERPREF_PT_saveload_file_browser(
|
|
|
15356
15347
|
"""
|
|
15357
15348
|
...
|
|
15358
15349
|
|
|
15350
|
+
def get_error_message(self): ...
|
|
15359
15351
|
def id_properties_clear(self):
|
|
15360
15352
|
"""
|
|
15361
15353
|
|
|
@@ -15505,11 +15497,15 @@ class USERPREF_PT_saveload_file_browser(
|
|
|
15505
15497
|
"""
|
|
15506
15498
|
...
|
|
15507
15499
|
|
|
15508
|
-
class
|
|
15500
|
+
class USERPREF_PT_system_cycles_devices(
|
|
15501
|
+
SystemPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
15502
|
+
):
|
|
15503
|
+
"""Base class for panels to center align contents with some horizontal margin.
|
|
15504
|
+
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
15505
|
+
"""
|
|
15506
|
+
|
|
15509
15507
|
bl_context: typing.Any
|
|
15510
15508
|
bl_label: typing.Any
|
|
15511
|
-
bl_options: typing.Any
|
|
15512
|
-
bl_parent_id: typing.Any
|
|
15513
15509
|
bl_region_type: typing.Any
|
|
15514
15510
|
bl_rna: typing.Any
|
|
15515
15511
|
bl_space_type: typing.Any
|
|
@@ -15554,6 +15550,14 @@ class USERPREF_PT_studiolight_light_editor(StudioLightPanel, bpy_types._GenericU
|
|
|
15554
15550
|
"""
|
|
15555
15551
|
...
|
|
15556
15552
|
|
|
15553
|
+
def draw_centered(self, context, layout):
|
|
15554
|
+
"""
|
|
15555
|
+
|
|
15556
|
+
:param context:
|
|
15557
|
+
:param layout:
|
|
15558
|
+
"""
|
|
15559
|
+
...
|
|
15560
|
+
|
|
15557
15561
|
def driver_add(self) -> bpy.types.FCurve:
|
|
15558
15562
|
"""Adds driver(s) to the given property
|
|
15559
15563
|
|
|
@@ -15663,14 +15667,6 @@ class USERPREF_PT_studiolight_light_editor(StudioLightPanel, bpy_types._GenericU
|
|
|
15663
15667
|
"""
|
|
15664
15668
|
...
|
|
15665
15669
|
|
|
15666
|
-
def opengl_light_buttons(self, layout, light):
|
|
15667
|
-
"""
|
|
15668
|
-
|
|
15669
|
-
:param layout:
|
|
15670
|
-
:param light:
|
|
15671
|
-
"""
|
|
15672
|
-
...
|
|
15673
|
-
|
|
15674
15670
|
def path_from_id(self) -> str:
|
|
15675
15671
|
"""Returns the data path from the ID to this object (string).
|
|
15676
15672
|
|
|
@@ -15734,16 +15730,17 @@ class USERPREF_PT_studiolight_light_editor(StudioLightPanel, bpy_types._GenericU
|
|
|
15734
15730
|
"""
|
|
15735
15731
|
...
|
|
15736
15732
|
|
|
15737
|
-
class
|
|
15738
|
-
|
|
15739
|
-
)
|
|
15733
|
+
class USERPREF_PT_system_memory(SystemPanel, CenterAlignMixIn, bpy_types._GenericUI):
|
|
15734
|
+
"""Base class for panels to center align contents with some horizontal margin.
|
|
15735
|
+
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
15736
|
+
"""
|
|
15737
|
+
|
|
15740
15738
|
bl_context: typing.Any
|
|
15741
15739
|
bl_label: typing.Any
|
|
15742
15740
|
bl_region_type: typing.Any
|
|
15743
15741
|
bl_rna: typing.Any
|
|
15744
15742
|
bl_space_type: typing.Any
|
|
15745
15743
|
id_data: typing.Any
|
|
15746
|
-
sl_type: typing.Any
|
|
15747
15744
|
|
|
15748
15745
|
def append(self, draw_func):
|
|
15749
15746
|
"""Append a draw function to this menu,
|
|
@@ -15784,26 +15781,11 @@ class USERPREF_PT_studiolight_lights(
|
|
|
15784
15781
|
"""
|
|
15785
15782
|
...
|
|
15786
15783
|
|
|
15787
|
-
def
|
|
15788
|
-
"""
|
|
15789
|
-
|
|
15790
|
-
:param _context:
|
|
15791
|
-
"""
|
|
15792
|
-
...
|
|
15793
|
-
|
|
15794
|
-
def draw_light_list(self, layout, lights):
|
|
15795
|
-
"""
|
|
15796
|
-
|
|
15797
|
-
:param layout:
|
|
15798
|
-
:param lights:
|
|
15799
|
-
"""
|
|
15800
|
-
...
|
|
15801
|
-
|
|
15802
|
-
def draw_studio_light(self, layout, studio_light):
|
|
15784
|
+
def draw_centered(self, context, layout):
|
|
15803
15785
|
"""
|
|
15804
15786
|
|
|
15787
|
+
:param context:
|
|
15805
15788
|
:param layout:
|
|
15806
|
-
:param studio_light:
|
|
15807
15789
|
"""
|
|
15808
15790
|
...
|
|
15809
15791
|
|
|
@@ -15830,7 +15812,6 @@ class USERPREF_PT_studiolight_lights(
|
|
|
15830
15812
|
"""
|
|
15831
15813
|
...
|
|
15832
15814
|
|
|
15833
|
-
def get_error_message(self): ...
|
|
15834
15815
|
def id_properties_clear(self):
|
|
15835
15816
|
"""
|
|
15836
15817
|
|
|
@@ -15980,16 +15961,17 @@ class USERPREF_PT_studiolight_lights(
|
|
|
15980
15961
|
"""
|
|
15981
15962
|
...
|
|
15982
15963
|
|
|
15983
|
-
class
|
|
15984
|
-
|
|
15985
|
-
)
|
|
15964
|
+
class USERPREF_PT_system_network(SystemPanel, CenterAlignMixIn, bpy_types._GenericUI):
|
|
15965
|
+
"""Base class for panels to center align contents with some horizontal margin.
|
|
15966
|
+
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
15967
|
+
"""
|
|
15968
|
+
|
|
15986
15969
|
bl_context: typing.Any
|
|
15987
15970
|
bl_label: typing.Any
|
|
15988
15971
|
bl_region_type: typing.Any
|
|
15989
15972
|
bl_rna: typing.Any
|
|
15990
15973
|
bl_space_type: typing.Any
|
|
15991
15974
|
id_data: typing.Any
|
|
15992
|
-
sl_type: typing.Any
|
|
15993
15975
|
|
|
15994
15976
|
def append(self, draw_func):
|
|
15995
15977
|
"""Append a draw function to this menu,
|
|
@@ -16030,26 +16012,11 @@ class USERPREF_PT_studiolight_matcaps(
|
|
|
16030
16012
|
"""
|
|
16031
16013
|
...
|
|
16032
16014
|
|
|
16033
|
-
def
|
|
16034
|
-
"""
|
|
16035
|
-
|
|
16036
|
-
:param _context:
|
|
16037
|
-
"""
|
|
16038
|
-
...
|
|
16039
|
-
|
|
16040
|
-
def draw_light_list(self, layout, lights):
|
|
16041
|
-
"""
|
|
16042
|
-
|
|
16043
|
-
:param layout:
|
|
16044
|
-
:param lights:
|
|
16045
|
-
"""
|
|
16046
|
-
...
|
|
16047
|
-
|
|
16048
|
-
def draw_studio_light(self, layout, studio_light):
|
|
16015
|
+
def draw_centered(self, context, layout):
|
|
16049
16016
|
"""
|
|
16050
16017
|
|
|
16018
|
+
:param context:
|
|
16051
16019
|
:param layout:
|
|
16052
|
-
:param studio_light:
|
|
16053
16020
|
"""
|
|
16054
16021
|
...
|
|
16055
16022
|
|
|
@@ -16076,7 +16043,6 @@ class USERPREF_PT_studiolight_matcaps(
|
|
|
16076
16043
|
"""
|
|
16077
16044
|
...
|
|
16078
16045
|
|
|
16079
|
-
def get_error_message(self): ...
|
|
16080
16046
|
def id_properties_clear(self):
|
|
16081
16047
|
"""
|
|
16082
16048
|
|
|
@@ -16226,16 +16192,19 @@ class USERPREF_PT_studiolight_matcaps(
|
|
|
16226
16192
|
"""
|
|
16227
16193
|
...
|
|
16228
16194
|
|
|
16229
|
-
class
|
|
16230
|
-
|
|
16195
|
+
class USERPREF_PT_system_os_settings(
|
|
16196
|
+
SystemPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
16231
16197
|
):
|
|
16198
|
+
"""Base class for panels to center align contents with some horizontal margin.
|
|
16199
|
+
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
16200
|
+
"""
|
|
16201
|
+
|
|
16232
16202
|
bl_context: typing.Any
|
|
16233
16203
|
bl_label: typing.Any
|
|
16234
16204
|
bl_region_type: typing.Any
|
|
16235
16205
|
bl_rna: typing.Any
|
|
16236
16206
|
bl_space_type: typing.Any
|
|
16237
16207
|
id_data: typing.Any
|
|
16238
|
-
sl_type: typing.Any
|
|
16239
16208
|
|
|
16240
16209
|
def append(self, draw_func):
|
|
16241
16210
|
"""Append a draw function to this menu,
|
|
@@ -16276,26 +16245,11 @@ class USERPREF_PT_studiolight_world(
|
|
|
16276
16245
|
"""
|
|
16277
16246
|
...
|
|
16278
16247
|
|
|
16279
|
-
def
|
|
16280
|
-
"""
|
|
16281
|
-
|
|
16282
|
-
:param _context:
|
|
16283
|
-
"""
|
|
16284
|
-
...
|
|
16285
|
-
|
|
16286
|
-
def draw_light_list(self, layout, lights):
|
|
16287
|
-
"""
|
|
16288
|
-
|
|
16289
|
-
:param layout:
|
|
16290
|
-
:param lights:
|
|
16291
|
-
"""
|
|
16292
|
-
...
|
|
16293
|
-
|
|
16294
|
-
def draw_studio_light(self, layout, studio_light):
|
|
16248
|
+
def draw_centered(self, context, layout):
|
|
16295
16249
|
"""
|
|
16296
16250
|
|
|
16251
|
+
:param context:
|
|
16297
16252
|
:param layout:
|
|
16298
|
-
:param studio_light:
|
|
16299
16253
|
"""
|
|
16300
16254
|
...
|
|
16301
16255
|
|
|
@@ -16322,7 +16276,6 @@ class USERPREF_PT_studiolight_world(
|
|
|
16322
16276
|
"""
|
|
16323
16277
|
...
|
|
16324
16278
|
|
|
16325
|
-
def get_error_message(self): ...
|
|
16326
16279
|
def id_properties_clear(self):
|
|
16327
16280
|
"""
|
|
16328
16281
|
|
|
@@ -16422,6 +16375,13 @@ class USERPREF_PT_studiolight_world(
|
|
|
16422
16375
|
"""Returns the property from the path, raise an exception when not found."""
|
|
16423
16376
|
...
|
|
16424
16377
|
|
|
16378
|
+
def poll(self, _context):
|
|
16379
|
+
"""
|
|
16380
|
+
|
|
16381
|
+
:param _context:
|
|
16382
|
+
"""
|
|
16383
|
+
...
|
|
16384
|
+
|
|
16425
16385
|
def pop(self):
|
|
16426
16386
|
"""Remove and return the value of the custom property assigned to key or default
|
|
16427
16387
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -16472,15 +16432,14 @@ class USERPREF_PT_studiolight_world(
|
|
|
16472
16432
|
"""
|
|
16473
16433
|
...
|
|
16474
16434
|
|
|
16475
|
-
class
|
|
16476
|
-
SystemPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
16477
|
-
):
|
|
16435
|
+
class USERPREF_PT_system_sound(SystemPanel, CenterAlignMixIn, bpy_types._GenericUI):
|
|
16478
16436
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
16479
16437
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
16480
16438
|
"""
|
|
16481
16439
|
|
|
16482
16440
|
bl_context: typing.Any
|
|
16483
16441
|
bl_label: typing.Any
|
|
16442
|
+
bl_options: typing.Any
|
|
16484
16443
|
bl_region_type: typing.Any
|
|
16485
16444
|
bl_rna: typing.Any
|
|
16486
16445
|
bl_space_type: typing.Any
|
|
@@ -16705,7 +16664,9 @@ class USERPREF_PT_system_cycles_devices(
|
|
|
16705
16664
|
"""
|
|
16706
16665
|
...
|
|
16707
16666
|
|
|
16708
|
-
class
|
|
16667
|
+
class USERPREF_PT_system_video_sequencer(
|
|
16668
|
+
SystemPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
16669
|
+
):
|
|
16709
16670
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
16710
16671
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
16711
16672
|
"""
|
|
@@ -16936,13 +16897,10 @@ class USERPREF_PT_system_memory(SystemPanel, CenterAlignMixIn, bpy_types._Generi
|
|
|
16936
16897
|
"""
|
|
16937
16898
|
...
|
|
16938
16899
|
|
|
16939
|
-
class
|
|
16940
|
-
"""Base class for panels to center align contents with some horizontal margin.
|
|
16941
|
-
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
16942
|
-
"""
|
|
16943
|
-
|
|
16900
|
+
class USERPREF_PT_text_editor(FilePathsPanel, bpy_types._GenericUI):
|
|
16944
16901
|
bl_context: typing.Any
|
|
16945
16902
|
bl_label: typing.Any
|
|
16903
|
+
bl_parent_id: typing.Any
|
|
16946
16904
|
bl_region_type: typing.Any
|
|
16947
16905
|
bl_rna: typing.Any
|
|
16948
16906
|
bl_space_type: typing.Any
|
|
@@ -16987,11 +16945,10 @@ class USERPREF_PT_system_network(SystemPanel, CenterAlignMixIn, bpy_types._Gener
|
|
|
16987
16945
|
"""
|
|
16988
16946
|
...
|
|
16989
16947
|
|
|
16990
|
-
def
|
|
16948
|
+
def draw_header_preset(self, _context):
|
|
16991
16949
|
"""
|
|
16992
16950
|
|
|
16993
|
-
:param
|
|
16994
|
-
:param layout:
|
|
16951
|
+
:param _context:
|
|
16995
16952
|
"""
|
|
16996
16953
|
...
|
|
16997
16954
|
|
|
@@ -17167,19 +17124,15 @@ class USERPREF_PT_system_network(SystemPanel, CenterAlignMixIn, bpy_types._Gener
|
|
|
17167
17124
|
"""
|
|
17168
17125
|
...
|
|
17169
17126
|
|
|
17170
|
-
class
|
|
17171
|
-
SystemPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
17172
|
-
):
|
|
17173
|
-
"""Base class for panels to center align contents with some horizontal margin.
|
|
17174
|
-
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
17175
|
-
"""
|
|
17176
|
-
|
|
17177
|
-
bl_context: typing.Any
|
|
17127
|
+
class USERPREF_PT_text_editor_presets(bl_ui.utils.PresetPanel, bpy_types._GenericUI):
|
|
17178
17128
|
bl_label: typing.Any
|
|
17179
17129
|
bl_region_type: typing.Any
|
|
17180
17130
|
bl_rna: typing.Any
|
|
17181
17131
|
bl_space_type: typing.Any
|
|
17182
17132
|
id_data: typing.Any
|
|
17133
|
+
preset_add_operator: typing.Any
|
|
17134
|
+
preset_operator: typing.Any
|
|
17135
|
+
preset_subdir: typing.Any
|
|
17183
17136
|
|
|
17184
17137
|
def append(self, draw_func):
|
|
17185
17138
|
"""Append a draw function to this menu,
|
|
@@ -17220,10 +17173,17 @@ class USERPREF_PT_system_os_settings(
|
|
|
17220
17173
|
"""
|
|
17221
17174
|
...
|
|
17222
17175
|
|
|
17223
|
-
def
|
|
17176
|
+
def draw_menu(self, layout, text=None):
|
|
17177
|
+
"""
|
|
17178
|
+
|
|
17179
|
+
:param layout:
|
|
17180
|
+
:param text:
|
|
17181
|
+
"""
|
|
17182
|
+
...
|
|
17183
|
+
|
|
17184
|
+
def draw_panel_header(self, layout):
|
|
17224
17185
|
"""
|
|
17225
17186
|
|
|
17226
|
-
:param context:
|
|
17227
17187
|
:param layout:
|
|
17228
17188
|
"""
|
|
17229
17189
|
...
|
|
@@ -17346,17 +17306,44 @@ class USERPREF_PT_system_os_settings(
|
|
|
17346
17306
|
"""
|
|
17347
17307
|
...
|
|
17348
17308
|
|
|
17309
|
+
def path_menu(
|
|
17310
|
+
self,
|
|
17311
|
+
searchpaths: list[str],
|
|
17312
|
+
operator: str,
|
|
17313
|
+
props_default: dict = None,
|
|
17314
|
+
prop_filepath: str | None = "filepath",
|
|
17315
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
17316
|
+
filter_path=None,
|
|
17317
|
+
display_name: collections.abc.Callable | None = None,
|
|
17318
|
+
add_operator=None,
|
|
17319
|
+
add_operator_props=None,
|
|
17320
|
+
):
|
|
17321
|
+
"""Populate a menu from a list of paths.
|
|
17322
|
+
|
|
17323
|
+
:param searchpaths: Paths to scan.
|
|
17324
|
+
:type searchpaths: list[str]
|
|
17325
|
+
:param operator: The operator id to use with each file.
|
|
17326
|
+
:type operator: str
|
|
17327
|
+
:param props_default: Properties to assign to each operator.
|
|
17328
|
+
:type props_default: dict
|
|
17329
|
+
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
17330
|
+
:type prop_filepath: str | None
|
|
17331
|
+
:param filter_ext: Optional callback that takes the file extensions.
|
|
17332
|
+
|
|
17333
|
+
Returning false excludes the file from the list.
|
|
17334
|
+
:type filter_ext: collections.abc.Callable | None
|
|
17335
|
+
:param filter_path:
|
|
17336
|
+
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
17337
|
+
:type display_name: collections.abc.Callable | None
|
|
17338
|
+
:param add_operator:
|
|
17339
|
+
:param add_operator_props:
|
|
17340
|
+
"""
|
|
17341
|
+
...
|
|
17342
|
+
|
|
17349
17343
|
def path_resolve(self):
|
|
17350
17344
|
"""Returns the property from the path, raise an exception when not found."""
|
|
17351
17345
|
...
|
|
17352
17346
|
|
|
17353
|
-
def poll(self, _context):
|
|
17354
|
-
"""
|
|
17355
|
-
|
|
17356
|
-
:param _context:
|
|
17357
|
-
"""
|
|
17358
|
-
...
|
|
17359
|
-
|
|
17360
17347
|
def pop(self):
|
|
17361
17348
|
"""Remove and return the value of the custom property assigned to key or default
|
|
17362
17349
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -17407,11 +17394,7 @@ class USERPREF_PT_system_os_settings(
|
|
|
17407
17394
|
"""
|
|
17408
17395
|
...
|
|
17409
17396
|
|
|
17410
|
-
class
|
|
17411
|
-
"""Base class for panels to center align contents with some horizontal margin.
|
|
17412
|
-
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
17413
|
-
"""
|
|
17414
|
-
|
|
17397
|
+
class USERPREF_PT_theme(ThemePanel, bpy_types._GenericUI):
|
|
17415
17398
|
bl_context: typing.Any
|
|
17416
17399
|
bl_label: typing.Any
|
|
17417
17400
|
bl_options: typing.Any
|
|
@@ -17459,14 +17442,6 @@ class USERPREF_PT_system_sound(SystemPanel, CenterAlignMixIn, bpy_types._Generic
|
|
|
17459
17442
|
"""
|
|
17460
17443
|
...
|
|
17461
17444
|
|
|
17462
|
-
def draw_centered(self, context, layout):
|
|
17463
|
-
"""
|
|
17464
|
-
|
|
17465
|
-
:param context:
|
|
17466
|
-
:param layout:
|
|
17467
|
-
"""
|
|
17468
|
-
...
|
|
17469
|
-
|
|
17470
17445
|
def driver_add(self) -> bpy.types.FCurve:
|
|
17471
17446
|
"""Adds driver(s) to the given property
|
|
17472
17447
|
|
|
@@ -17639,8 +17614,8 @@ class USERPREF_PT_system_sound(SystemPanel, CenterAlignMixIn, bpy_types._Generic
|
|
|
17639
17614
|
"""
|
|
17640
17615
|
...
|
|
17641
17616
|
|
|
17642
|
-
class
|
|
17643
|
-
|
|
17617
|
+
class USERPREF_PT_theme_bone_color_sets(
|
|
17618
|
+
ThemePanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
17644
17619
|
):
|
|
17645
17620
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
17646
17621
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
@@ -17648,6 +17623,7 @@ class USERPREF_PT_system_video_sequencer(
|
|
|
17648
17623
|
|
|
17649
17624
|
bl_context: typing.Any
|
|
17650
17625
|
bl_label: typing.Any
|
|
17626
|
+
bl_options: typing.Any
|
|
17651
17627
|
bl_region_type: typing.Any
|
|
17652
17628
|
bl_rna: typing.Any
|
|
17653
17629
|
bl_space_type: typing.Any
|
|
@@ -17700,6 +17676,13 @@ class USERPREF_PT_system_video_sequencer(
|
|
|
17700
17676
|
"""
|
|
17701
17677
|
...
|
|
17702
17678
|
|
|
17679
|
+
def draw_header(self, _context):
|
|
17680
|
+
"""
|
|
17681
|
+
|
|
17682
|
+
:param _context:
|
|
17683
|
+
"""
|
|
17684
|
+
...
|
|
17685
|
+
|
|
17703
17686
|
def driver_add(self) -> bpy.types.FCurve:
|
|
17704
17687
|
"""Adds driver(s) to the given property
|
|
17705
17688
|
|
|
@@ -17872,7 +17855,13 @@ class USERPREF_PT_system_video_sequencer(
|
|
|
17872
17855
|
"""
|
|
17873
17856
|
...
|
|
17874
17857
|
|
|
17875
|
-
class
|
|
17858
|
+
class USERPREF_PT_theme_collection_colors(
|
|
17859
|
+
ThemePanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
17860
|
+
):
|
|
17861
|
+
"""Base class for panels to center align contents with some horizontal margin.
|
|
17862
|
+
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
17863
|
+
"""
|
|
17864
|
+
|
|
17876
17865
|
bl_context: typing.Any
|
|
17877
17866
|
bl_label: typing.Any
|
|
17878
17867
|
bl_options: typing.Any
|
|
@@ -17920,6 +17909,21 @@ class USERPREF_PT_theme(ThemePanel, bpy_types._GenericUI):
|
|
|
17920
17909
|
"""
|
|
17921
17910
|
...
|
|
17922
17911
|
|
|
17912
|
+
def draw_centered(self, context, layout):
|
|
17913
|
+
"""
|
|
17914
|
+
|
|
17915
|
+
:param context:
|
|
17916
|
+
:param layout:
|
|
17917
|
+
"""
|
|
17918
|
+
...
|
|
17919
|
+
|
|
17920
|
+
def draw_header(self, _context):
|
|
17921
|
+
"""
|
|
17922
|
+
|
|
17923
|
+
:param _context:
|
|
17924
|
+
"""
|
|
17925
|
+
...
|
|
17926
|
+
|
|
17923
17927
|
def driver_add(self) -> bpy.types.FCurve:
|
|
17924
17928
|
"""Adds driver(s) to the given property
|
|
17925
17929
|
|
|
@@ -18092,7 +18096,7 @@ class USERPREF_PT_theme(ThemePanel, bpy_types._GenericUI):
|
|
|
18092
18096
|
"""
|
|
18093
18097
|
...
|
|
18094
18098
|
|
|
18095
|
-
class
|
|
18099
|
+
class USERPREF_PT_theme_interface_gizmos(
|
|
18096
18100
|
ThemePanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
18097
18101
|
):
|
|
18098
18102
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
@@ -18102,6 +18106,7 @@ class USERPREF_PT_theme_bone_color_sets(
|
|
|
18102
18106
|
bl_context: typing.Any
|
|
18103
18107
|
bl_label: typing.Any
|
|
18104
18108
|
bl_options: typing.Any
|
|
18109
|
+
bl_parent_id: typing.Any
|
|
18105
18110
|
bl_region_type: typing.Any
|
|
18106
18111
|
bl_rna: typing.Any
|
|
18107
18112
|
bl_space_type: typing.Any
|
|
@@ -18154,13 +18159,6 @@ class USERPREF_PT_theme_bone_color_sets(
|
|
|
18154
18159
|
"""
|
|
18155
18160
|
...
|
|
18156
18161
|
|
|
18157
|
-
def draw_header(self, _context):
|
|
18158
|
-
"""
|
|
18159
|
-
|
|
18160
|
-
:param _context:
|
|
18161
|
-
"""
|
|
18162
|
-
...
|
|
18163
|
-
|
|
18164
18162
|
def driver_add(self) -> bpy.types.FCurve:
|
|
18165
18163
|
"""Adds driver(s) to the given property
|
|
18166
18164
|
|
|
@@ -18333,7 +18331,7 @@ class USERPREF_PT_theme_bone_color_sets(
|
|
|
18333
18331
|
"""
|
|
18334
18332
|
...
|
|
18335
18333
|
|
|
18336
|
-
class
|
|
18334
|
+
class USERPREF_PT_theme_interface_icons(
|
|
18337
18335
|
ThemePanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
18338
18336
|
):
|
|
18339
18337
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
@@ -18343,6 +18341,7 @@ class USERPREF_PT_theme_collection_colors(
|
|
|
18343
18341
|
bl_context: typing.Any
|
|
18344
18342
|
bl_label: typing.Any
|
|
18345
18343
|
bl_options: typing.Any
|
|
18344
|
+
bl_parent_id: typing.Any
|
|
18346
18345
|
bl_region_type: typing.Any
|
|
18347
18346
|
bl_rna: typing.Any
|
|
18348
18347
|
bl_space_type: typing.Any
|
|
@@ -18395,13 +18394,6 @@ class USERPREF_PT_theme_collection_colors(
|
|
|
18395
18394
|
"""
|
|
18396
18395
|
...
|
|
18397
18396
|
|
|
18398
|
-
def draw_header(self, _context):
|
|
18399
|
-
"""
|
|
18400
|
-
|
|
18401
|
-
:param _context:
|
|
18402
|
-
"""
|
|
18403
|
-
...
|
|
18404
|
-
|
|
18405
18397
|
def driver_add(self) -> bpy.types.FCurve:
|
|
18406
18398
|
"""Adds driver(s) to the given property
|
|
18407
18399
|
|
|
@@ -18574,7 +18566,7 @@ class USERPREF_PT_theme_collection_colors(
|
|
|
18574
18566
|
"""
|
|
18575
18567
|
...
|
|
18576
18568
|
|
|
18577
|
-
class
|
|
18569
|
+
class USERPREF_PT_theme_interface_state(
|
|
18578
18570
|
ThemePanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
18579
18571
|
):
|
|
18580
18572
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
@@ -18809,7 +18801,7 @@ class USERPREF_PT_theme_interface_gizmos(
|
|
|
18809
18801
|
"""
|
|
18810
18802
|
...
|
|
18811
18803
|
|
|
18812
|
-
class
|
|
18804
|
+
class USERPREF_PT_theme_interface_styles(
|
|
18813
18805
|
ThemePanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
18814
18806
|
):
|
|
18815
18807
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
@@ -19044,7 +19036,7 @@ class USERPREF_PT_theme_interface_icons(
|
|
|
19044
19036
|
"""
|
|
19045
19037
|
...
|
|
19046
19038
|
|
|
19047
|
-
class
|
|
19039
|
+
class USERPREF_PT_theme_interface_transparent_checker(
|
|
19048
19040
|
ThemePanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
19049
19041
|
):
|
|
19050
19042
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
@@ -19279,7 +19271,7 @@ class USERPREF_PT_theme_interface_state(
|
|
|
19279
19271
|
"""
|
|
19280
19272
|
...
|
|
19281
19273
|
|
|
19282
|
-
class
|
|
19274
|
+
class USERPREF_PT_theme_strip_colors(
|
|
19283
19275
|
ThemePanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
19284
19276
|
):
|
|
19285
19277
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
@@ -19289,7 +19281,6 @@ class USERPREF_PT_theme_interface_styles(
|
|
|
19289
19281
|
bl_context: typing.Any
|
|
19290
19282
|
bl_label: typing.Any
|
|
19291
19283
|
bl_options: typing.Any
|
|
19292
|
-
bl_parent_id: typing.Any
|
|
19293
19284
|
bl_region_type: typing.Any
|
|
19294
19285
|
bl_rna: typing.Any
|
|
19295
19286
|
bl_space_type: typing.Any
|
|
@@ -19342,6 +19333,13 @@ class USERPREF_PT_theme_interface_styles(
|
|
|
19342
19333
|
"""
|
|
19343
19334
|
...
|
|
19344
19335
|
|
|
19336
|
+
def draw_header(self, _context):
|
|
19337
|
+
"""
|
|
19338
|
+
|
|
19339
|
+
:param _context:
|
|
19340
|
+
"""
|
|
19341
|
+
...
|
|
19342
|
+
|
|
19345
19343
|
def driver_add(self) -> bpy.types.FCurve:
|
|
19346
19344
|
"""Adds driver(s) to the given property
|
|
19347
19345
|
|
|
@@ -19514,9 +19512,7 @@ class USERPREF_PT_theme_interface_styles(
|
|
|
19514
19512
|
"""
|
|
19515
19513
|
...
|
|
19516
19514
|
|
|
19517
|
-
class
|
|
19518
|
-
ThemePanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
19519
|
-
):
|
|
19515
|
+
class USERPREF_PT_theme_text_style(ThemePanel, CenterAlignMixIn, bpy_types._GenericUI):
|
|
19520
19516
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
19521
19517
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
19522
19518
|
"""
|
|
@@ -19524,7 +19520,6 @@ class USERPREF_PT_theme_interface_transparent_checker(
|
|
|
19524
19520
|
bl_context: typing.Any
|
|
19525
19521
|
bl_label: typing.Any
|
|
19526
19522
|
bl_options: typing.Any
|
|
19527
|
-
bl_parent_id: typing.Any
|
|
19528
19523
|
bl_region_type: typing.Any
|
|
19529
19524
|
bl_rna: typing.Any
|
|
19530
19525
|
bl_space_type: typing.Any
|
|
@@ -19577,6 +19572,13 @@ class USERPREF_PT_theme_interface_transparent_checker(
|
|
|
19577
19572
|
"""
|
|
19578
19573
|
...
|
|
19579
19574
|
|
|
19575
|
+
def draw_header(self, _context):
|
|
19576
|
+
"""
|
|
19577
|
+
|
|
19578
|
+
:param _context:
|
|
19579
|
+
"""
|
|
19580
|
+
...
|
|
19581
|
+
|
|
19580
19582
|
def driver_add(self) -> bpy.types.FCurve:
|
|
19581
19583
|
"""Adds driver(s) to the given property
|
|
19582
19584
|
|
|
@@ -19749,7 +19751,7 @@ class USERPREF_PT_theme_interface_transparent_checker(
|
|
|
19749
19751
|
"""
|
|
19750
19752
|
...
|
|
19751
19753
|
|
|
19752
|
-
class
|
|
19754
|
+
class USERPREF_PT_theme_user_interface(
|
|
19753
19755
|
ThemePanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
19754
19756
|
):
|
|
19755
19757
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
@@ -19803,14 +19805,6 @@ class USERPREF_PT_theme_strip_colors(
|
|
|
19803
19805
|
"""
|
|
19804
19806
|
...
|
|
19805
19807
|
|
|
19806
|
-
def draw_centered(self, context, layout):
|
|
19807
|
-
"""
|
|
19808
|
-
|
|
19809
|
-
:param context:
|
|
19810
|
-
:param layout:
|
|
19811
|
-
"""
|
|
19812
|
-
...
|
|
19813
|
-
|
|
19814
19808
|
def draw_header(self, _context):
|
|
19815
19809
|
"""
|
|
19816
19810
|
|
|
@@ -19990,14 +19984,15 @@ class USERPREF_PT_theme_strip_colors(
|
|
|
19990
19984
|
"""
|
|
19991
19985
|
...
|
|
19992
19986
|
|
|
19993
|
-
class
|
|
19987
|
+
class USERPREF_PT_viewport_display(
|
|
19988
|
+
ViewportPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
19989
|
+
):
|
|
19994
19990
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
19995
19991
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
19996
19992
|
"""
|
|
19997
19993
|
|
|
19998
19994
|
bl_context: typing.Any
|
|
19999
19995
|
bl_label: typing.Any
|
|
20000
|
-
bl_options: typing.Any
|
|
20001
19996
|
bl_region_type: typing.Any
|
|
20002
19997
|
bl_rna: typing.Any
|
|
20003
19998
|
bl_space_type: typing.Any
|
|
@@ -20050,13 +20045,6 @@ class USERPREF_PT_theme_text_style(ThemePanel, CenterAlignMixIn, bpy_types._Gene
|
|
|
20050
20045
|
"""
|
|
20051
20046
|
...
|
|
20052
20047
|
|
|
20053
|
-
def draw_header(self, _context):
|
|
20054
|
-
"""
|
|
20055
|
-
|
|
20056
|
-
:param _context:
|
|
20057
|
-
"""
|
|
20058
|
-
...
|
|
20059
|
-
|
|
20060
20048
|
def driver_add(self) -> bpy.types.FCurve:
|
|
20061
20049
|
"""Adds driver(s) to the given property
|
|
20062
20050
|
|
|
@@ -20229,8 +20217,8 @@ class USERPREF_PT_theme_text_style(ThemePanel, CenterAlignMixIn, bpy_types._Gene
|
|
|
20229
20217
|
"""
|
|
20230
20218
|
...
|
|
20231
20219
|
|
|
20232
|
-
class
|
|
20233
|
-
|
|
20220
|
+
class USERPREF_PT_viewport_quality(
|
|
20221
|
+
ViewportPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
20234
20222
|
):
|
|
20235
20223
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
20236
20224
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
@@ -20238,7 +20226,6 @@ class USERPREF_PT_theme_user_interface(
|
|
|
20238
20226
|
|
|
20239
20227
|
bl_context: typing.Any
|
|
20240
20228
|
bl_label: typing.Any
|
|
20241
|
-
bl_options: typing.Any
|
|
20242
20229
|
bl_region_type: typing.Any
|
|
20243
20230
|
bl_rna: typing.Any
|
|
20244
20231
|
bl_space_type: typing.Any
|
|
@@ -20283,10 +20270,11 @@ class USERPREF_PT_theme_user_interface(
|
|
|
20283
20270
|
"""
|
|
20284
20271
|
...
|
|
20285
20272
|
|
|
20286
|
-
def
|
|
20273
|
+
def draw_centered(self, context, layout):
|
|
20287
20274
|
"""
|
|
20288
20275
|
|
|
20289
|
-
:param
|
|
20276
|
+
:param context:
|
|
20277
|
+
:param layout:
|
|
20290
20278
|
"""
|
|
20291
20279
|
...
|
|
20292
20280
|
|
|
@@ -20462,7 +20450,7 @@ class USERPREF_PT_theme_user_interface(
|
|
|
20462
20450
|
"""
|
|
20463
20451
|
...
|
|
20464
20452
|
|
|
20465
|
-
class
|
|
20453
|
+
class USERPREF_PT_viewport_selection(
|
|
20466
20454
|
ViewportPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
20467
20455
|
):
|
|
20468
20456
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
@@ -20471,6 +20459,7 @@ class USERPREF_PT_viewport_display(
|
|
|
20471
20459
|
|
|
20472
20460
|
bl_context: typing.Any
|
|
20473
20461
|
bl_label: typing.Any
|
|
20462
|
+
bl_options: typing.Any
|
|
20474
20463
|
bl_region_type: typing.Any
|
|
20475
20464
|
bl_rna: typing.Any
|
|
20476
20465
|
bl_space_type: typing.Any
|
|
@@ -20695,7 +20684,7 @@ class USERPREF_PT_viewport_display(
|
|
|
20695
20684
|
"""
|
|
20696
20685
|
...
|
|
20697
20686
|
|
|
20698
|
-
class
|
|
20687
|
+
class USERPREF_PT_viewport_subdivision(
|
|
20699
20688
|
ViewportPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
20700
20689
|
):
|
|
20701
20690
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
@@ -20704,6 +20693,7 @@ class USERPREF_PT_viewport_quality(
|
|
|
20704
20693
|
|
|
20705
20694
|
bl_context: typing.Any
|
|
20706
20695
|
bl_label: typing.Any
|
|
20696
|
+
bl_options: typing.Any
|
|
20707
20697
|
bl_region_type: typing.Any
|
|
20708
20698
|
bl_rna: typing.Any
|
|
20709
20699
|
bl_space_type: typing.Any
|
|
@@ -20878,6 +20868,13 @@ class USERPREF_PT_viewport_quality(
|
|
|
20878
20868
|
"""Returns the property from the path, raise an exception when not found."""
|
|
20879
20869
|
...
|
|
20880
20870
|
|
|
20871
|
+
def poll(self, context):
|
|
20872
|
+
"""
|
|
20873
|
+
|
|
20874
|
+
:param context:
|
|
20875
|
+
"""
|
|
20876
|
+
...
|
|
20877
|
+
|
|
20881
20878
|
def pop(self):
|
|
20882
20879
|
"""Remove and return the value of the custom property assigned to key or default
|
|
20883
20880
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -20928,7 +20925,7 @@ class USERPREF_PT_viewport_quality(
|
|
|
20928
20925
|
"""
|
|
20929
20926
|
...
|
|
20930
20927
|
|
|
20931
|
-
class
|
|
20928
|
+
class USERPREF_PT_viewport_textures(
|
|
20932
20929
|
ViewportPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
20933
20930
|
):
|
|
20934
20931
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
@@ -20937,7 +20934,6 @@ class USERPREF_PT_viewport_selection(
|
|
|
20937
20934
|
|
|
20938
20935
|
bl_context: typing.Any
|
|
20939
20936
|
bl_label: typing.Any
|
|
20940
|
-
bl_options: typing.Any
|
|
20941
20937
|
bl_region_type: typing.Any
|
|
20942
20938
|
bl_rna: typing.Any
|
|
20943
20939
|
bl_space_type: typing.Any
|
|
@@ -21162,19 +21158,8 @@ class USERPREF_PT_viewport_selection(
|
|
|
21162
21158
|
"""
|
|
21163
21159
|
...
|
|
21164
21160
|
|
|
21165
|
-
class
|
|
21166
|
-
ViewportPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
21167
|
-
):
|
|
21168
|
-
"""Base class for panels to center align contents with some horizontal margin.
|
|
21169
|
-
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
21170
|
-
"""
|
|
21171
|
-
|
|
21172
|
-
bl_context: typing.Any
|
|
21173
|
-
bl_label: typing.Any
|
|
21174
|
-
bl_options: typing.Any
|
|
21175
|
-
bl_region_type: typing.Any
|
|
21161
|
+
class USERPREF_UL_asset_libraries(bpy_types._GenericUI):
|
|
21176
21162
|
bl_rna: typing.Any
|
|
21177
|
-
bl_space_type: typing.Any
|
|
21178
21163
|
id_data: typing.Any
|
|
21179
21164
|
|
|
21180
21165
|
def append(self, draw_func):
|
|
@@ -21209,18 +21194,27 @@ class USERPREF_PT_viewport_subdivision(
|
|
|
21209
21194
|
"""
|
|
21210
21195
|
...
|
|
21211
21196
|
|
|
21212
|
-
def
|
|
21213
|
-
|
|
21214
|
-
|
|
21215
|
-
|
|
21216
|
-
|
|
21217
|
-
|
|
21218
|
-
|
|
21219
|
-
|
|
21197
|
+
def draw_item(
|
|
21198
|
+
self,
|
|
21199
|
+
_context,
|
|
21200
|
+
layout,
|
|
21201
|
+
_data,
|
|
21202
|
+
item,
|
|
21203
|
+
icon,
|
|
21204
|
+
_active_data,
|
|
21205
|
+
_active_propname,
|
|
21206
|
+
_index,
|
|
21207
|
+
):
|
|
21220
21208
|
"""
|
|
21221
21209
|
|
|
21222
|
-
:param
|
|
21210
|
+
:param _context:
|
|
21223
21211
|
:param layout:
|
|
21212
|
+
:param _data:
|
|
21213
|
+
:param item:
|
|
21214
|
+
:param icon:
|
|
21215
|
+
:param _active_data:
|
|
21216
|
+
:param _active_propname:
|
|
21217
|
+
:param _index:
|
|
21224
21218
|
"""
|
|
21225
21219
|
...
|
|
21226
21220
|
|
|
@@ -21346,13 +21340,6 @@ class USERPREF_PT_viewport_subdivision(
|
|
|
21346
21340
|
"""Returns the property from the path, raise an exception when not found."""
|
|
21347
21341
|
...
|
|
21348
21342
|
|
|
21349
|
-
def poll(self, context):
|
|
21350
|
-
"""
|
|
21351
|
-
|
|
21352
|
-
:param context:
|
|
21353
|
-
"""
|
|
21354
|
-
...
|
|
21355
|
-
|
|
21356
21343
|
def pop(self):
|
|
21357
21344
|
"""Remove and return the value of the custom property assigned to key or default
|
|
21358
21345
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -21403,18 +21390,8 @@ class USERPREF_PT_viewport_subdivision(
|
|
|
21403
21390
|
"""
|
|
21404
21391
|
...
|
|
21405
21392
|
|
|
21406
|
-
class
|
|
21407
|
-
ViewportPanel, CenterAlignMixIn, bpy_types._GenericUI
|
|
21408
|
-
):
|
|
21409
|
-
"""Base class for panels to center align contents with some horizontal margin.
|
|
21410
|
-
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
21411
|
-
"""
|
|
21412
|
-
|
|
21413
|
-
bl_context: typing.Any
|
|
21414
|
-
bl_label: typing.Any
|
|
21415
|
-
bl_region_type: typing.Any
|
|
21393
|
+
class USERPREF_UL_extension_repos(bpy_types._GenericUI):
|
|
21416
21394
|
bl_rna: typing.Any
|
|
21417
|
-
bl_space_type: typing.Any
|
|
21418
21395
|
id_data: typing.Any
|
|
21419
21396
|
|
|
21420
21397
|
def append(self, draw_func):
|
|
@@ -21449,18 +21426,27 @@ class USERPREF_PT_viewport_textures(
|
|
|
21449
21426
|
"""
|
|
21450
21427
|
...
|
|
21451
21428
|
|
|
21452
|
-
def
|
|
21453
|
-
|
|
21454
|
-
|
|
21455
|
-
|
|
21456
|
-
|
|
21457
|
-
|
|
21458
|
-
|
|
21459
|
-
|
|
21429
|
+
def draw_item(
|
|
21430
|
+
self,
|
|
21431
|
+
_context,
|
|
21432
|
+
layout,
|
|
21433
|
+
_data,
|
|
21434
|
+
item,
|
|
21435
|
+
icon,
|
|
21436
|
+
_active_data,
|
|
21437
|
+
_active_propname,
|
|
21438
|
+
_index,
|
|
21439
|
+
):
|
|
21460
21440
|
"""
|
|
21461
21441
|
|
|
21462
|
-
:param
|
|
21442
|
+
:param _context:
|
|
21463
21443
|
:param layout:
|
|
21444
|
+
:param _data:
|
|
21445
|
+
:param item:
|
|
21446
|
+
:param icon:
|
|
21447
|
+
:param _active_data:
|
|
21448
|
+
:param _active_propname:
|
|
21449
|
+
:param _index:
|
|
21464
21450
|
"""
|
|
21465
21451
|
...
|
|
21466
21452
|
|
|
@@ -21480,6 +21466,15 @@ class USERPREF_PT_viewport_textures(
|
|
|
21480
21466
|
"""
|
|
21481
21467
|
...
|
|
21482
21468
|
|
|
21469
|
+
def filter_items(self, _context, data, propname):
|
|
21470
|
+
"""
|
|
21471
|
+
|
|
21472
|
+
:param _context:
|
|
21473
|
+
:param data:
|
|
21474
|
+
:param propname:
|
|
21475
|
+
"""
|
|
21476
|
+
...
|
|
21477
|
+
|
|
21483
21478
|
def get(self):
|
|
21484
21479
|
"""Returns the value of the custom property assigned to key or default
|
|
21485
21480
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -21635,3 +21630,8 @@ class USERPREF_PT_viewport_textures(
|
|
|
21635
21630
|
:return: custom property values.
|
|
21636
21631
|
"""
|
|
21637
21632
|
...
|
|
21633
|
+
|
|
21634
|
+
class ViewportPanel:
|
|
21635
|
+
bl_context: typing.Any
|
|
21636
|
+
bl_region_type: typing.Any
|
|
21637
|
+
bl_space_type: typing.Any
|