fake-bpy-module 20240224__py3-none-any.whl → 20240326__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.
- addon_utils/__init__.pyi +54 -10
- animsys_refactor/__init__.pyi +36 -6
- aud/__init__.pyi +132 -125
- bgl/__init__.pyi +2545 -546
- bl_app_override/__init__.pyi +14 -3
- bl_app_override/helpers/__init__.pyi +24 -2
- bl_app_template_utils/__init__.pyi +19 -4
- bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
- bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
- bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
- bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
- bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
- bl_i18n_utils/merge_po/__init__.pyi +4 -1
- bl_i18n_utils/settings/__init__.pyi +53 -6
- bl_i18n_utils/utils/__init__.pyi +332 -44
- bl_i18n_utils/utils_cli/__init__.pyi +29 -6
- bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
- bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
- bl_keymap_utils/io/__init__.pyi +44 -9
- bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
- bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
- bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
- bl_keymap_utils/versioning/__init__.pyi +4 -1
- bl_math/__init__.pyi +3 -3
- bl_operators/__init__.pyi +9 -2
- bl_operators/add_mesh_torus/__init__.pyi +171 -37
- bl_operators/anim/__init__.pyi +1065 -226
- bl_operators/assets/__init__.pyi +427 -92
- bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
- bl_operators/clip/__init__.pyi +1342 -287
- bl_operators/console/__init__.pyi +647 -140
- bl_operators/constraint/__init__.pyi +524 -112
- bl_operators/file/__init__.pyi +396 -84
- bl_operators/freestyle/__init__.pyi +532 -113
- bl_operators/geometry_nodes/__init__.pyi +2412 -596
- bl_operators/image/__init__.pyi +380 -82
- bl_operators/mesh/__init__.pyi +401 -85
- bl_operators/node/__init__.pyi +1756 -384
- bl_operators/object/__init__.pyi +2022 -552
- bl_operators/object_align/__init__.pyi +145 -31
- bl_operators/object_quick_effects/__init__.pyi +555 -124
- bl_operators/object_randomize_transform/__init__.pyi +136 -32
- bl_operators/presets/__init__.pyi +3516 -708
- bl_operators/rigidbody/__init__.pyi +401 -85
- bl_operators/screen_play_rendered_anim/__init__.pyi +129 -29
- bl_operators/sequencer/__init__.pyi +731 -149
- bl_operators/spreadsheet/__init__.pyi +145 -30
- bl_operators/userpref/__init__.pyi +3416 -824
- bl_operators/uvcalc_follow_active/__init__.pyi +149 -32
- bl_operators/uvcalc_lightmap/__init__.pyi +187 -34
- bl_operators/uvcalc_transform/__init__.pyi +344 -73
- bl_operators/vertexpaint_dirt/__init__.pyi +140 -30
- bl_operators/view3d/__init__.pyi +697 -146
- bl_operators/wm/__init__.pyi +6287 -1533
- bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
- bl_rna_utils/data_path/__init__.pyi +12 -2
- bl_text_utils/external_editor/__init__.pyi +4 -1
- bl_ui/__init__.pyi +504 -106
- bl_ui/anim/__init__.pyi +164 -33
- bl_ui/asset_shelf/__init__.pyi +146 -31
- bl_ui/generic_ui_list/__init__.pyi +471 -99
- bl_ui/node_add_menu/__init__.pyi +196 -40
- bl_ui/node_add_menu_compositor/__init__.pyi +3017 -621
- bl_ui/node_add_menu_geometry/__init__.pyi +8060 -1625
- bl_ui/node_add_menu_shader/__init__.pyi +1709 -348
- bl_ui/node_add_menu_texture/__init__.pyi +1502 -305
- bl_ui/properties_animviz/__init__.pyi +32 -2
- bl_ui/properties_collection/__init__.pyi +787 -179
- bl_ui/properties_constraint/__init__.pyi +28635 -5523
- bl_ui/properties_data_armature/__init__.pyi +1905 -448
- bl_ui/properties_data_bone/__init__.pyi +1560 -336
- bl_ui/properties_data_camera/__init__.pyi +2269 -494
- bl_ui/properties_data_curve/__init__.pyi +2362 -534
- bl_ui/properties_data_curves/__init__.pyi +951 -203
- bl_ui/properties_data_empty/__init__.pyi +317 -69
- bl_ui/properties_data_gpencil/__init__.pyi +2924 -734
- bl_ui/properties_data_grease_pencil/__init__.pyi +1631 -188
- bl_ui/properties_data_lattice/__init__.pyi +472 -104
- bl_ui/properties_data_light/__init__.pyi +1570 -337
- bl_ui/properties_data_lightprobe/__init__.pyi +938 -208
- bl_ui/properties_data_mesh/__init__.pyi +3205 -767
- bl_ui/properties_data_metaball/__init__.pyi +774 -170
- bl_ui/properties_data_modifier/__init__.pyi +1554 -328
- bl_ui/properties_data_pointcloud/__init__.pyi +821 -194
- bl_ui/properties_data_shaderfx/__init__.pyi +154 -34
- bl_ui/properties_data_speaker/__init__.pyi +782 -168
- bl_ui/properties_data_volume/__init__.pyi +1243 -281
- bl_ui/properties_freestyle/__init__.pyi +4071 -1030
- bl_ui/properties_grease_pencil_common/__init__.pyi +2399 -483
- bl_ui/properties_mask_common/__init__.pyi +1256 -249
- bl_ui/properties_material/__init__.pyi +2351 -542
- bl_ui/properties_material_gpencil/__init__.pyi +1590 -365
- bl_ui/properties_object/__init__.pyi +2179 -512
- bl_ui/properties_output/__init__.pyi +2956 -705
- bl_ui/properties_paint_common/__init__.pyi +947 -140
- bl_ui/properties_particle/__init__.pyi +8322 -1970
- bl_ui/properties_physics_cloth/__init__.pyi +2254 -508
- bl_ui/properties_physics_common/__init__.pyi +200 -44
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +4454 -965
- bl_ui/properties_physics_field/__init__.pyi +1695 -364
- bl_ui/properties_physics_fluid/__init__.pyi +6127 -1280
- bl_ui/properties_physics_geometry_nodes/__init__.pyi +157 -32
- bl_ui/properties_physics_rigidbody/__init__.pyi +1254 -278
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2053 -483
- bl_ui/properties_physics_softbody/__init__.pyi +2394 -542
- bl_ui/properties_render/__init__.pyi +8312 -1933
- bl_ui/properties_scene/__init__.pyi +2211 -539
- bl_ui/properties_texture/__init__.pyi +4185 -1013
- bl_ui/properties_view_layer/__init__.pyi +2803 -664
- bl_ui/properties_workspace/__init__.pyi +626 -148
- bl_ui/properties_world/__init__.pyi +1092 -234
- bl_ui/space_clip/__init__.pyi +11475 -2805
- bl_ui/space_console/__init__.pyi +967 -202
- bl_ui/space_dopesheet/__init__.pyi +4260 -966
- bl_ui/space_filebrowser/__init__.pyi +4852 -1187
- bl_ui/space_graph/__init__.pyi +3251 -702
- bl_ui/space_image/__init__.pyi +12219 -2968
- bl_ui/space_info/__init__.pyi +964 -200
- bl_ui/space_nla/__init__.pyi +2756 -584
- bl_ui/space_node/__init__.pyi +5661 -1265
- bl_ui/space_outliner/__init__.pyi +2294 -478
- bl_ui/space_properties/__init__.pyi +417 -92
- bl_ui/space_sequencer/__init__.pyi +12436 -3009
- bl_ui/space_spreadsheet/__init__.pyi +184 -36
- bl_ui/space_statusbar/__init__.pyi +135 -30
- bl_ui/space_text/__init__.pyi +2556 -542
- bl_ui/space_time/__init__.pyi +1151 -243
- bl_ui/space_toolsystem_common/__init__.pyi +368 -66
- bl_ui/space_toolsystem_toolbar/__init__.pyi +1378 -228
- bl_ui/space_topbar/__init__.pyi +4214 -887
- bl_ui/space_userpref/__init__.pyi +13920 -3468
- bl_ui/space_view3d/__init__.pyi +43701 -10599
- bl_ui/space_view3d_toolbar/__init__.pyi +16380 -3860
- bl_ui/utils/__init__.pyi +42 -4
- bl_ui_utils/bug_report_url/__init__.pyi +4 -1
- bl_ui_utils/layout/__init__.pyi +4 -1
- blend_render_info/__init__.pyi +13 -3
- blf/__init__.pyi +5 -7
- bmesh/__init__.pyi +7 -7
- bmesh/geometry/__init__.pyi +5 -5
- bmesh/ops/__init__.pyi +490 -504
- bmesh/types/__init__.pyi +268 -262
- bmesh/utils/__init__.pyi +55 -55
- bpy/__init__.pyi +2 -2
- bpy/app/__init__.pyi +4 -5
- bpy/app/handlers/__init__.pyi +36 -36
- bpy/app/icons/__init__.pyi +8 -10
- bpy/app/timers/__init__.pyi +9 -11
- bpy/app/translations/__init__.pyi +20 -22
- bpy/msgbus/__init__.pyi +3 -12
- bpy/ops/action/__init__.pyi +350 -305
- bpy/ops/anim/__init__.pyi +464 -426
- bpy/ops/armature/__init__.pyi +392 -360
- bpy/ops/asset/__init__.pyi +166 -129
- bpy/ops/boid/__init__.pyi +64 -37
- bpy/ops/brush/__init__.pyi +78 -72
- bpy/ops/buttons/__init__.pyi +136 -122
- bpy/ops/cachefile/__init__.pyi +128 -123
- bpy/ops/camera/__init__.pyi +22 -24
- bpy/ops/clip/__init__.pyi +844 -735
- bpy/ops/cloth/__init__.pyi +10 -11
- bpy/ops/collection/__init__.pyi +38 -38
- bpy/ops/console/__init__.pyi +170 -141
- bpy/ops/constraint/__init__.pyi +156 -159
- bpy/ops/curve/__init__.pyi +518 -461
- bpy/ops/curves/__init__.pyi +188 -159
- bpy/ops/cycles/__init__.pyi +20 -18
- bpy/ops/dpaint/__init__.pyi +40 -30
- bpy/ops/ed/__init__.pyi +136 -107
- bpy/ops/export_anim/__init__.pyi +18 -19
- bpy/ops/export_mesh/__init__.pyi +26 -27
- bpy/ops/export_scene/__init__.pyi +313 -334
- bpy/ops/file/__init__.pyi +394 -304
- bpy/ops/fluid/__init__.pyi +114 -63
- bpy/ops/font/__init__.pyi +272 -245
- bpy/ops/geometry/__init__.pyi +92 -87
- bpy/ops/gizmogroup/__init__.pyi +24 -21
- bpy/ops/gpencil/__init__.pyi +1530 -1476
- bpy/ops/graph/__init__.pyi +680 -659
- bpy/ops/grease_pencil/__init__.pyi +510 -390
- bpy/ops/image/__init__.pyi +650 -603
- bpy/ops/import_anim/__init__.pyi +26 -27
- bpy/ops/import_curve/__init__.pyi +6 -7
- bpy/ops/import_mesh/__init__.pyi +18 -21
- bpy/ops/import_scene/__init__.pyi +86 -95
- bpy/ops/info/__init__.pyi +68 -55
- bpy/ops/lattice/__init__.pyi +70 -63
- bpy/ops/marker/__init__.pyi +110 -111
- bpy/ops/mask/__init__.pyi +352 -308
- bpy/ops/material/__init__.pyi +24 -12
- bpy/ops/mball/__init__.pyi +72 -75
- bpy/ops/mesh/__init__.pyi +2052 -2088
- bpy/ops/nla/__init__.pyi +369 -313
- bpy/ops/node/__init__.pyi +944 -805
- bpy/ops/object/__init__.pyi +2662 -2461
- bpy/ops/outliner/__init__.pyi +582 -431
- bpy/ops/paint/__init__.pyi +605 -516
- bpy/ops/paintcurve/__init__.pyi +72 -60
- bpy/ops/palette/__init__.pyi +54 -46
- bpy/ops/particle/__init__.pyi +302 -245
- bpy/ops/pose/__init__.pyi +366 -330
- bpy/ops/poselib/__init__.pyi +78 -64
- bpy/ops/preferences/__init__.pyi +361 -341
- bpy/ops/ptcache/__init__.pyi +56 -38
- bpy/ops/render/__init__.pyi +120 -117
- bpy/ops/rigidbody/__init__.pyi +114 -97
- bpy/ops/scene/__init__.pyi +302 -240
- bpy/ops/screen/__init__.pyi +414 -363
- bpy/ops/script/__init__.pyi +20 -18
- bpy/ops/sculpt/__init__.pyi +414 -452
- bpy/ops/sculpt_curves/__init__.pyi +42 -43
- bpy/ops/sequencer/__init__.pyi +1094 -1053
- bpy/ops/sound/__init__.pyi +214 -206
- bpy/ops/spreadsheet/__init__.pyi +34 -28
- bpy/ops/surface/__init__.pyi +108 -114
- bpy/ops/text/__init__.pyi +432 -350
- bpy/ops/text_editor/__init__.pyi +10 -11
- bpy/ops/texture/__init__.pyi +32 -21
- bpy/ops/transform/__init__.pyi +801 -854
- bpy/ops/ui/__init__.pyi +254 -185
- bpy/ops/uilist/__init__.pyi +20 -23
- bpy/ops/uv/__init__.pyi +618 -626
- bpy/ops/view2d/__init__.pyi +162 -161
- bpy/ops/view3d/__init__.pyi +669 -658
- bpy/ops/wm/__init__.pyi +2433 -2415
- bpy/ops/workspace/__init__.pyi +54 -31
- bpy/ops/world/__init__.pyi +8 -4
- bpy/path/__init__.pyi +111 -68
- bpy/props/__init__.pyi +263 -267
- bpy/types/__init__.pyi +86789 -85719
- bpy/utils/__init__.pyi +265 -123
- bpy/utils/previews/__init__.pyi +103 -17
- bpy/utils/units/__init__.pyi +19 -22
- bpy_extras/__init__.pyi +0 -4
- bpy_extras/anim_utils/__init__.pyi +11 -46
- bpy_extras/asset_utils/__init__.pyi +3 -12
- bpy_extras/id_map_utils/__init__.pyi +0 -2
- bpy_extras/image_utils/__init__.pyi +2 -2
- bpy_extras/io_utils/__init__.pyi +30 -27
- bpy_extras/keyconfig_utils/__init__.pyi +4 -1
- bpy_extras/mesh_utils/__init__.pyi +18 -18
- bpy_extras/node_utils/__init__.pyi +4 -3
- bpy_extras/object_utils/__init__.pyi +25 -26
- bpy_extras/view3d_utils/__init__.pyi +33 -38
- bpy_restrict_state/__init__.pyi +14 -1
- bpy_types/__init__.pyi +3873 -997
- console_python/__init__.pyi +41 -7
- console_shell/__init__.pyi +24 -5
- {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/METADATA +1 -1
- fake_bpy_module-20240326.dist-info/RECORD +343 -0
- {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/WHEEL +1 -1
- freestyle/chainingiterators/__init__.pyi +50 -52
- freestyle/functions/__init__.pyi +303 -207
- freestyle/predicates/__init__.pyi +299 -115
- freestyle/shaders/__init__.pyi +49 -80
- freestyle/types/__init__.pyi +465 -472
- freestyle/utils/ContextFunctions/__init__.pyi +9 -9
- freestyle/utils/__init__.pyi +28 -18
- gpu/capabilities/__init__.pyi +27 -19
- gpu/matrix/__init__.pyi +14 -16
- gpu/platform/__init__.pyi +5 -5
- gpu/shader/__init__.pyi +2 -5
- gpu/state/__init__.pyi +1 -1
- gpu/texture/__init__.pyi +3 -3
- gpu/types/__init__.pyi +54 -85
- gpu_extras/batch/__init__.pyi +27 -5
- gpu_extras/presets/__init__.pyi +52 -14
- graphviz_export/__init__.pyi +9 -2
- idprop/types/__init__.pyi +36 -12
- imbuf/__init__.pyi +8 -9
- imbuf/types/__init__.pyi +8 -15
- keyingsets_builtins/__init__.pyi +3149 -701
- keyingsets_utils/__init__.pyi +69 -14
- mathutils/__init__.pyi +502 -427
- mathutils/bvhtree/__init__.pyi +28 -32
- mathutils/geometry/__init__.pyi +177 -186
- mathutils/kdtree/__init__.pyi +16 -18
- mathutils/noise/__init__.pyi +47 -48
- nodeitems_builtins/__init__.pyi +50 -10
- nodeitems_utils/__init__.pyi +58 -10
- rna_info/__init__.pyi +230 -26
- rna_keymap_ui/__init__.pyi +29 -6
- rna_prop_ui/__init__.pyi +69 -12
- rna_xml/__init__.pyi +29 -6
- sys_info/__init__.pyi +4 -1
- bpy_extras/bmesh_utils/__init__.pyi +0 -6
- bpy_extras/extensions/__init__.pyi +0 -4
- bpy_extras/extensions/junction_module/__init__.pyi +0 -12
- bpy_extras/node_shader_utils/__init__.pyi +0 -131
- bpy_extras/wm_utils/__init__.pyi +0 -4
- bpy_extras/wm_utils/progress_report/__init__.pyi +0 -29
- fake_bpy_module-20240224.dist-info/RECORD +0 -349
- {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/top_level.txt +0 -0
|
@@ -4,907 +4,3499 @@ import bpy_types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
class PREFERENCES_OT_addon_disable(bpy_types.Operator):
|
|
7
|
+
""" """
|
|
8
|
+
|
|
7
9
|
bl_idname: typing.Any
|
|
10
|
+
""" """
|
|
11
|
+
|
|
8
12
|
bl_label: typing.Any
|
|
13
|
+
""" """
|
|
14
|
+
|
|
9
15
|
bl_rna: typing.Any
|
|
16
|
+
""" """
|
|
17
|
+
|
|
10
18
|
id_data: typing.Any
|
|
19
|
+
""" """
|
|
20
|
+
|
|
21
|
+
def as_keywords(self, ignore):
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
:param ignore:
|
|
25
|
+
"""
|
|
26
|
+
...
|
|
27
|
+
|
|
28
|
+
def as_pointer(self):
|
|
29
|
+
""" """
|
|
30
|
+
...
|
|
31
|
+
|
|
32
|
+
def bl_rna_get_subclass(self):
|
|
33
|
+
""" """
|
|
34
|
+
...
|
|
35
|
+
|
|
36
|
+
def bl_rna_get_subclass_py(self):
|
|
37
|
+
""" """
|
|
38
|
+
...
|
|
39
|
+
|
|
40
|
+
def driver_add(self):
|
|
41
|
+
""" """
|
|
42
|
+
...
|
|
43
|
+
|
|
44
|
+
def driver_remove(self):
|
|
45
|
+
""" """
|
|
46
|
+
...
|
|
47
|
+
|
|
48
|
+
def execute(self, _context):
|
|
49
|
+
"""
|
|
50
|
+
|
|
51
|
+
:param _context:
|
|
52
|
+
"""
|
|
53
|
+
...
|
|
54
|
+
|
|
55
|
+
def get(self):
|
|
56
|
+
""" """
|
|
57
|
+
...
|
|
58
|
+
|
|
59
|
+
def id_properties_clear(self):
|
|
60
|
+
""" """
|
|
61
|
+
...
|
|
62
|
+
|
|
63
|
+
def id_properties_ensure(self):
|
|
64
|
+
""" """
|
|
65
|
+
...
|
|
66
|
+
|
|
67
|
+
def id_properties_ui(self):
|
|
68
|
+
""" """
|
|
69
|
+
...
|
|
70
|
+
|
|
71
|
+
def is_property_hidden(self):
|
|
72
|
+
""" """
|
|
73
|
+
...
|
|
74
|
+
|
|
75
|
+
def is_property_overridable_library(self):
|
|
76
|
+
""" """
|
|
77
|
+
...
|
|
78
|
+
|
|
79
|
+
def is_property_readonly(self):
|
|
80
|
+
""" """
|
|
81
|
+
...
|
|
82
|
+
|
|
83
|
+
def is_property_set(self):
|
|
84
|
+
""" """
|
|
85
|
+
...
|
|
86
|
+
|
|
87
|
+
def items(self):
|
|
88
|
+
""" """
|
|
89
|
+
...
|
|
90
|
+
|
|
91
|
+
def keyframe_delete(self):
|
|
92
|
+
""" """
|
|
93
|
+
...
|
|
94
|
+
|
|
95
|
+
def keyframe_insert(self):
|
|
96
|
+
""" """
|
|
97
|
+
...
|
|
98
|
+
|
|
99
|
+
def keys(self):
|
|
100
|
+
""" """
|
|
101
|
+
...
|
|
102
|
+
|
|
103
|
+
def path_from_id(self):
|
|
104
|
+
""" """
|
|
105
|
+
...
|
|
106
|
+
|
|
107
|
+
def path_resolve(self):
|
|
108
|
+
""" """
|
|
109
|
+
...
|
|
110
|
+
|
|
111
|
+
def poll_message_set(self):
|
|
112
|
+
""" """
|
|
113
|
+
...
|
|
114
|
+
|
|
115
|
+
def pop(self):
|
|
116
|
+
""" """
|
|
117
|
+
...
|
|
118
|
+
|
|
119
|
+
def property_overridable_library_set(self):
|
|
120
|
+
""" """
|
|
121
|
+
...
|
|
122
|
+
|
|
123
|
+
def property_unset(self):
|
|
124
|
+
""" """
|
|
125
|
+
...
|
|
126
|
+
|
|
127
|
+
def type_recast(self):
|
|
128
|
+
""" """
|
|
129
|
+
...
|
|
11
130
|
|
|
12
|
-
def
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
def bl_rna_get_subclass_py(self): ...
|
|
16
|
-
def driver_add(self): ...
|
|
17
|
-
def driver_remove(self): ...
|
|
18
|
-
def execute(self, _context): ...
|
|
19
|
-
def get(self): ...
|
|
20
|
-
def id_properties_clear(self): ...
|
|
21
|
-
def id_properties_ensure(self): ...
|
|
22
|
-
def id_properties_ui(self): ...
|
|
23
|
-
def is_property_hidden(self): ...
|
|
24
|
-
def is_property_overridable_library(self): ...
|
|
25
|
-
def is_property_readonly(self): ...
|
|
26
|
-
def is_property_set(self): ...
|
|
27
|
-
def items(self): ...
|
|
28
|
-
def keyframe_delete(self): ...
|
|
29
|
-
def keyframe_insert(self): ...
|
|
30
|
-
def keys(self): ...
|
|
31
|
-
def path_from_id(self): ...
|
|
32
|
-
def path_resolve(self): ...
|
|
33
|
-
def poll_message_set(self): ...
|
|
34
|
-
def pop(self): ...
|
|
35
|
-
def property_overridable_library_set(self): ...
|
|
36
|
-
def property_unset(self): ...
|
|
37
|
-
def type_recast(self): ...
|
|
38
|
-
def values(self): ...
|
|
131
|
+
def values(self):
|
|
132
|
+
""" """
|
|
133
|
+
...
|
|
39
134
|
|
|
40
135
|
class PREFERENCES_OT_addon_enable(bpy_types.Operator):
|
|
136
|
+
""" """
|
|
137
|
+
|
|
41
138
|
bl_idname: typing.Any
|
|
139
|
+
""" """
|
|
140
|
+
|
|
42
141
|
bl_label: typing.Any
|
|
142
|
+
""" """
|
|
143
|
+
|
|
43
144
|
bl_rna: typing.Any
|
|
145
|
+
""" """
|
|
146
|
+
|
|
44
147
|
id_data: typing.Any
|
|
148
|
+
""" """
|
|
149
|
+
|
|
150
|
+
def as_keywords(self, ignore):
|
|
151
|
+
"""
|
|
152
|
+
|
|
153
|
+
:param ignore:
|
|
154
|
+
"""
|
|
155
|
+
...
|
|
156
|
+
|
|
157
|
+
def as_pointer(self):
|
|
158
|
+
""" """
|
|
159
|
+
...
|
|
160
|
+
|
|
161
|
+
def bl_rna_get_subclass(self):
|
|
162
|
+
""" """
|
|
163
|
+
...
|
|
164
|
+
|
|
165
|
+
def bl_rna_get_subclass_py(self):
|
|
166
|
+
""" """
|
|
167
|
+
...
|
|
168
|
+
|
|
169
|
+
def driver_add(self):
|
|
170
|
+
""" """
|
|
171
|
+
...
|
|
172
|
+
|
|
173
|
+
def driver_remove(self):
|
|
174
|
+
""" """
|
|
175
|
+
...
|
|
176
|
+
|
|
177
|
+
def execute(self, _context):
|
|
178
|
+
"""
|
|
179
|
+
|
|
180
|
+
:param _context:
|
|
181
|
+
"""
|
|
182
|
+
...
|
|
183
|
+
|
|
184
|
+
def get(self):
|
|
185
|
+
""" """
|
|
186
|
+
...
|
|
187
|
+
|
|
188
|
+
def id_properties_clear(self):
|
|
189
|
+
""" """
|
|
190
|
+
...
|
|
191
|
+
|
|
192
|
+
def id_properties_ensure(self):
|
|
193
|
+
""" """
|
|
194
|
+
...
|
|
195
|
+
|
|
196
|
+
def id_properties_ui(self):
|
|
197
|
+
""" """
|
|
198
|
+
...
|
|
199
|
+
|
|
200
|
+
def is_property_hidden(self):
|
|
201
|
+
""" """
|
|
202
|
+
...
|
|
203
|
+
|
|
204
|
+
def is_property_overridable_library(self):
|
|
205
|
+
""" """
|
|
206
|
+
...
|
|
207
|
+
|
|
208
|
+
def is_property_readonly(self):
|
|
209
|
+
""" """
|
|
210
|
+
...
|
|
211
|
+
|
|
212
|
+
def is_property_set(self):
|
|
213
|
+
""" """
|
|
214
|
+
...
|
|
215
|
+
|
|
216
|
+
def items(self):
|
|
217
|
+
""" """
|
|
218
|
+
...
|
|
219
|
+
|
|
220
|
+
def keyframe_delete(self):
|
|
221
|
+
""" """
|
|
222
|
+
...
|
|
223
|
+
|
|
224
|
+
def keyframe_insert(self):
|
|
225
|
+
""" """
|
|
226
|
+
...
|
|
227
|
+
|
|
228
|
+
def keys(self):
|
|
229
|
+
""" """
|
|
230
|
+
...
|
|
231
|
+
|
|
232
|
+
def path_from_id(self):
|
|
233
|
+
""" """
|
|
234
|
+
...
|
|
235
|
+
|
|
236
|
+
def path_resolve(self):
|
|
237
|
+
""" """
|
|
238
|
+
...
|
|
239
|
+
|
|
240
|
+
def poll_message_set(self):
|
|
241
|
+
""" """
|
|
242
|
+
...
|
|
243
|
+
|
|
244
|
+
def pop(self):
|
|
245
|
+
""" """
|
|
246
|
+
...
|
|
247
|
+
|
|
248
|
+
def property_overridable_library_set(self):
|
|
249
|
+
""" """
|
|
250
|
+
...
|
|
251
|
+
|
|
252
|
+
def property_unset(self):
|
|
253
|
+
""" """
|
|
254
|
+
...
|
|
255
|
+
|
|
256
|
+
def type_recast(self):
|
|
257
|
+
""" """
|
|
258
|
+
...
|
|
45
259
|
|
|
46
|
-
def
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
def bl_rna_get_subclass_py(self): ...
|
|
50
|
-
def driver_add(self): ...
|
|
51
|
-
def driver_remove(self): ...
|
|
52
|
-
def execute(self, _context): ...
|
|
53
|
-
def get(self): ...
|
|
54
|
-
def id_properties_clear(self): ...
|
|
55
|
-
def id_properties_ensure(self): ...
|
|
56
|
-
def id_properties_ui(self): ...
|
|
57
|
-
def is_property_hidden(self): ...
|
|
58
|
-
def is_property_overridable_library(self): ...
|
|
59
|
-
def is_property_readonly(self): ...
|
|
60
|
-
def is_property_set(self): ...
|
|
61
|
-
def items(self): ...
|
|
62
|
-
def keyframe_delete(self): ...
|
|
63
|
-
def keyframe_insert(self): ...
|
|
64
|
-
def keys(self): ...
|
|
65
|
-
def path_from_id(self): ...
|
|
66
|
-
def path_resolve(self): ...
|
|
67
|
-
def poll_message_set(self): ...
|
|
68
|
-
def pop(self): ...
|
|
69
|
-
def property_overridable_library_set(self): ...
|
|
70
|
-
def property_unset(self): ...
|
|
71
|
-
def type_recast(self): ...
|
|
72
|
-
def values(self): ...
|
|
260
|
+
def values(self):
|
|
261
|
+
""" """
|
|
262
|
+
...
|
|
73
263
|
|
|
74
264
|
class PREFERENCES_OT_addon_expand(bpy_types.Operator):
|
|
265
|
+
""" """
|
|
266
|
+
|
|
75
267
|
bl_idname: typing.Any
|
|
268
|
+
""" """
|
|
269
|
+
|
|
76
270
|
bl_label: typing.Any
|
|
271
|
+
""" """
|
|
272
|
+
|
|
77
273
|
bl_options: typing.Any
|
|
274
|
+
""" """
|
|
275
|
+
|
|
78
276
|
bl_rna: typing.Any
|
|
277
|
+
""" """
|
|
278
|
+
|
|
79
279
|
id_data: typing.Any
|
|
280
|
+
""" """
|
|
281
|
+
|
|
282
|
+
def as_keywords(self, ignore):
|
|
283
|
+
"""
|
|
284
|
+
|
|
285
|
+
:param ignore:
|
|
286
|
+
"""
|
|
287
|
+
...
|
|
288
|
+
|
|
289
|
+
def as_pointer(self):
|
|
290
|
+
""" """
|
|
291
|
+
...
|
|
292
|
+
|
|
293
|
+
def bl_rna_get_subclass(self):
|
|
294
|
+
""" """
|
|
295
|
+
...
|
|
296
|
+
|
|
297
|
+
def bl_rna_get_subclass_py(self):
|
|
298
|
+
""" """
|
|
299
|
+
...
|
|
300
|
+
|
|
301
|
+
def driver_add(self):
|
|
302
|
+
""" """
|
|
303
|
+
...
|
|
304
|
+
|
|
305
|
+
def driver_remove(self):
|
|
306
|
+
""" """
|
|
307
|
+
...
|
|
308
|
+
|
|
309
|
+
def execute(self, _context):
|
|
310
|
+
"""
|
|
311
|
+
|
|
312
|
+
:param _context:
|
|
313
|
+
"""
|
|
314
|
+
...
|
|
315
|
+
|
|
316
|
+
def get(self):
|
|
317
|
+
""" """
|
|
318
|
+
...
|
|
319
|
+
|
|
320
|
+
def id_properties_clear(self):
|
|
321
|
+
""" """
|
|
322
|
+
...
|
|
323
|
+
|
|
324
|
+
def id_properties_ensure(self):
|
|
325
|
+
""" """
|
|
326
|
+
...
|
|
327
|
+
|
|
328
|
+
def id_properties_ui(self):
|
|
329
|
+
""" """
|
|
330
|
+
...
|
|
331
|
+
|
|
332
|
+
def is_property_hidden(self):
|
|
333
|
+
""" """
|
|
334
|
+
...
|
|
335
|
+
|
|
336
|
+
def is_property_overridable_library(self):
|
|
337
|
+
""" """
|
|
338
|
+
...
|
|
339
|
+
|
|
340
|
+
def is_property_readonly(self):
|
|
341
|
+
""" """
|
|
342
|
+
...
|
|
343
|
+
|
|
344
|
+
def is_property_set(self):
|
|
345
|
+
""" """
|
|
346
|
+
...
|
|
347
|
+
|
|
348
|
+
def items(self):
|
|
349
|
+
""" """
|
|
350
|
+
...
|
|
351
|
+
|
|
352
|
+
def keyframe_delete(self):
|
|
353
|
+
""" """
|
|
354
|
+
...
|
|
355
|
+
|
|
356
|
+
def keyframe_insert(self):
|
|
357
|
+
""" """
|
|
358
|
+
...
|
|
359
|
+
|
|
360
|
+
def keys(self):
|
|
361
|
+
""" """
|
|
362
|
+
...
|
|
363
|
+
|
|
364
|
+
def path_from_id(self):
|
|
365
|
+
""" """
|
|
366
|
+
...
|
|
367
|
+
|
|
368
|
+
def path_resolve(self):
|
|
369
|
+
""" """
|
|
370
|
+
...
|
|
371
|
+
|
|
372
|
+
def poll_message_set(self):
|
|
373
|
+
""" """
|
|
374
|
+
...
|
|
375
|
+
|
|
376
|
+
def pop(self):
|
|
377
|
+
""" """
|
|
378
|
+
...
|
|
379
|
+
|
|
380
|
+
def property_overridable_library_set(self):
|
|
381
|
+
""" """
|
|
382
|
+
...
|
|
383
|
+
|
|
384
|
+
def property_unset(self):
|
|
385
|
+
""" """
|
|
386
|
+
...
|
|
80
387
|
|
|
81
|
-
def
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
def
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
def get(self): ...
|
|
89
|
-
def id_properties_clear(self): ...
|
|
90
|
-
def id_properties_ensure(self): ...
|
|
91
|
-
def id_properties_ui(self): ...
|
|
92
|
-
def is_property_hidden(self): ...
|
|
93
|
-
def is_property_overridable_library(self): ...
|
|
94
|
-
def is_property_readonly(self): ...
|
|
95
|
-
def is_property_set(self): ...
|
|
96
|
-
def items(self): ...
|
|
97
|
-
def keyframe_delete(self): ...
|
|
98
|
-
def keyframe_insert(self): ...
|
|
99
|
-
def keys(self): ...
|
|
100
|
-
def path_from_id(self): ...
|
|
101
|
-
def path_resolve(self): ...
|
|
102
|
-
def poll_message_set(self): ...
|
|
103
|
-
def pop(self): ...
|
|
104
|
-
def property_overridable_library_set(self): ...
|
|
105
|
-
def property_unset(self): ...
|
|
106
|
-
def type_recast(self): ...
|
|
107
|
-
def values(self): ...
|
|
388
|
+
def type_recast(self):
|
|
389
|
+
""" """
|
|
390
|
+
...
|
|
391
|
+
|
|
392
|
+
def values(self):
|
|
393
|
+
""" """
|
|
394
|
+
...
|
|
108
395
|
|
|
109
396
|
class PREFERENCES_OT_addon_install(bpy_types.Operator):
|
|
397
|
+
""" """
|
|
398
|
+
|
|
110
399
|
bl_idname: typing.Any
|
|
400
|
+
""" """
|
|
401
|
+
|
|
111
402
|
bl_label: typing.Any
|
|
403
|
+
""" """
|
|
404
|
+
|
|
112
405
|
bl_rna: typing.Any
|
|
406
|
+
""" """
|
|
407
|
+
|
|
113
408
|
id_data: typing.Any
|
|
409
|
+
""" """
|
|
410
|
+
|
|
411
|
+
def as_keywords(self, ignore):
|
|
412
|
+
"""
|
|
413
|
+
|
|
414
|
+
:param ignore:
|
|
415
|
+
"""
|
|
416
|
+
...
|
|
417
|
+
|
|
418
|
+
def as_pointer(self):
|
|
419
|
+
""" """
|
|
420
|
+
...
|
|
421
|
+
|
|
422
|
+
def bl_rna_get_subclass(self):
|
|
423
|
+
""" """
|
|
424
|
+
...
|
|
425
|
+
|
|
426
|
+
def bl_rna_get_subclass_py(self):
|
|
427
|
+
""" """
|
|
428
|
+
...
|
|
429
|
+
|
|
430
|
+
def driver_add(self):
|
|
431
|
+
""" """
|
|
432
|
+
...
|
|
433
|
+
|
|
434
|
+
def driver_remove(self):
|
|
435
|
+
""" """
|
|
436
|
+
...
|
|
437
|
+
|
|
438
|
+
def execute(self, context):
|
|
439
|
+
"""
|
|
440
|
+
|
|
441
|
+
:param context:
|
|
442
|
+
"""
|
|
443
|
+
...
|
|
444
|
+
|
|
445
|
+
def get(self):
|
|
446
|
+
""" """
|
|
447
|
+
...
|
|
448
|
+
|
|
449
|
+
def id_properties_clear(self):
|
|
450
|
+
""" """
|
|
451
|
+
...
|
|
452
|
+
|
|
453
|
+
def id_properties_ensure(self):
|
|
454
|
+
""" """
|
|
455
|
+
...
|
|
456
|
+
|
|
457
|
+
def id_properties_ui(self):
|
|
458
|
+
""" """
|
|
459
|
+
...
|
|
460
|
+
|
|
461
|
+
def invoke(self, context, _event):
|
|
462
|
+
"""
|
|
463
|
+
|
|
464
|
+
:param context:
|
|
465
|
+
:param _event:
|
|
466
|
+
"""
|
|
467
|
+
...
|
|
468
|
+
|
|
469
|
+
def is_property_hidden(self):
|
|
470
|
+
""" """
|
|
471
|
+
...
|
|
472
|
+
|
|
473
|
+
def is_property_overridable_library(self):
|
|
474
|
+
""" """
|
|
475
|
+
...
|
|
476
|
+
|
|
477
|
+
def is_property_readonly(self):
|
|
478
|
+
""" """
|
|
479
|
+
...
|
|
480
|
+
|
|
481
|
+
def is_property_set(self):
|
|
482
|
+
""" """
|
|
483
|
+
...
|
|
484
|
+
|
|
485
|
+
def items(self):
|
|
486
|
+
""" """
|
|
487
|
+
...
|
|
488
|
+
|
|
489
|
+
def keyframe_delete(self):
|
|
490
|
+
""" """
|
|
491
|
+
...
|
|
492
|
+
|
|
493
|
+
def keyframe_insert(self):
|
|
494
|
+
""" """
|
|
495
|
+
...
|
|
496
|
+
|
|
497
|
+
def keys(self):
|
|
498
|
+
""" """
|
|
499
|
+
...
|
|
500
|
+
|
|
501
|
+
def path_from_id(self):
|
|
502
|
+
""" """
|
|
503
|
+
...
|
|
504
|
+
|
|
505
|
+
def path_resolve(self):
|
|
506
|
+
""" """
|
|
507
|
+
...
|
|
508
|
+
|
|
509
|
+
def poll_message_set(self):
|
|
510
|
+
""" """
|
|
511
|
+
...
|
|
512
|
+
|
|
513
|
+
def pop(self):
|
|
514
|
+
""" """
|
|
515
|
+
...
|
|
114
516
|
|
|
115
|
-
def
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
def
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
def
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
def
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
def is_property_set(self): ...
|
|
131
|
-
def items(self): ...
|
|
132
|
-
def keyframe_delete(self): ...
|
|
133
|
-
def keyframe_insert(self): ...
|
|
134
|
-
def keys(self): ...
|
|
135
|
-
def path_from_id(self): ...
|
|
136
|
-
def path_resolve(self): ...
|
|
137
|
-
def poll_message_set(self): ...
|
|
138
|
-
def pop(self): ...
|
|
139
|
-
def property_overridable_library_set(self): ...
|
|
140
|
-
def property_unset(self): ...
|
|
141
|
-
def type_recast(self): ...
|
|
142
|
-
def values(self): ...
|
|
517
|
+
def property_overridable_library_set(self):
|
|
518
|
+
""" """
|
|
519
|
+
...
|
|
520
|
+
|
|
521
|
+
def property_unset(self):
|
|
522
|
+
""" """
|
|
523
|
+
...
|
|
524
|
+
|
|
525
|
+
def type_recast(self):
|
|
526
|
+
""" """
|
|
527
|
+
...
|
|
528
|
+
|
|
529
|
+
def values(self):
|
|
530
|
+
""" """
|
|
531
|
+
...
|
|
143
532
|
|
|
144
533
|
class PREFERENCES_OT_addon_refresh(bpy_types.Operator):
|
|
534
|
+
""" """
|
|
535
|
+
|
|
145
536
|
bl_idname: typing.Any
|
|
537
|
+
""" """
|
|
538
|
+
|
|
146
539
|
bl_label: typing.Any
|
|
540
|
+
""" """
|
|
541
|
+
|
|
147
542
|
bl_rna: typing.Any
|
|
543
|
+
""" """
|
|
544
|
+
|
|
148
545
|
id_data: typing.Any
|
|
546
|
+
""" """
|
|
149
547
|
|
|
150
|
-
def as_keywords(self, ignore):
|
|
151
|
-
|
|
152
|
-
def bl_rna_get_subclass(self): ...
|
|
153
|
-
def bl_rna_get_subclass_py(self): ...
|
|
154
|
-
def driver_add(self): ...
|
|
155
|
-
def driver_remove(self): ...
|
|
156
|
-
def execute(self, _context): ...
|
|
157
|
-
def get(self): ...
|
|
158
|
-
def id_properties_clear(self): ...
|
|
159
|
-
def id_properties_ensure(self): ...
|
|
160
|
-
def id_properties_ui(self): ...
|
|
161
|
-
def is_property_hidden(self): ...
|
|
162
|
-
def is_property_overridable_library(self): ...
|
|
163
|
-
def is_property_readonly(self): ...
|
|
164
|
-
def is_property_set(self): ...
|
|
165
|
-
def items(self): ...
|
|
166
|
-
def keyframe_delete(self): ...
|
|
167
|
-
def keyframe_insert(self): ...
|
|
168
|
-
def keys(self): ...
|
|
169
|
-
def path_from_id(self): ...
|
|
170
|
-
def path_resolve(self): ...
|
|
171
|
-
def poll_message_set(self): ...
|
|
172
|
-
def pop(self): ...
|
|
173
|
-
def property_overridable_library_set(self): ...
|
|
174
|
-
def property_unset(self): ...
|
|
175
|
-
def type_recast(self): ...
|
|
176
|
-
def values(self): ...
|
|
548
|
+
def as_keywords(self, ignore):
|
|
549
|
+
"""
|
|
177
550
|
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
bl_rna: typing.Any
|
|
182
|
-
id_data: typing.Any
|
|
551
|
+
:param ignore:
|
|
552
|
+
"""
|
|
553
|
+
...
|
|
183
554
|
|
|
184
|
-
def
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
def bl_rna_get_subclass_py(self): ...
|
|
188
|
-
def draw(self, _context): ...
|
|
189
|
-
def driver_add(self): ...
|
|
190
|
-
def driver_remove(self): ...
|
|
191
|
-
def execute(self, context): ...
|
|
192
|
-
def get(self): ...
|
|
193
|
-
def id_properties_clear(self): ...
|
|
194
|
-
def id_properties_ensure(self): ...
|
|
195
|
-
def id_properties_ui(self): ...
|
|
196
|
-
def invoke(self, context, _event): ...
|
|
197
|
-
def is_property_hidden(self): ...
|
|
198
|
-
def is_property_overridable_library(self): ...
|
|
199
|
-
def is_property_readonly(self): ...
|
|
200
|
-
def is_property_set(self): ...
|
|
201
|
-
def items(self): ...
|
|
202
|
-
def keyframe_delete(self): ...
|
|
203
|
-
def keyframe_insert(self): ...
|
|
204
|
-
def keys(self): ...
|
|
205
|
-
def path_from_addon(self, module): ...
|
|
206
|
-
def path_from_id(self): ...
|
|
207
|
-
def path_resolve(self): ...
|
|
208
|
-
def poll_message_set(self): ...
|
|
209
|
-
def pop(self): ...
|
|
210
|
-
def property_overridable_library_set(self): ...
|
|
211
|
-
def property_unset(self): ...
|
|
212
|
-
def type_recast(self): ...
|
|
213
|
-
def values(self): ...
|
|
555
|
+
def as_pointer(self):
|
|
556
|
+
""" """
|
|
557
|
+
...
|
|
214
558
|
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
bl_options: typing.Any
|
|
219
|
-
bl_rna: typing.Any
|
|
220
|
-
id_data: typing.Any
|
|
559
|
+
def bl_rna_get_subclass(self):
|
|
560
|
+
""" """
|
|
561
|
+
...
|
|
221
562
|
|
|
222
|
-
def
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
def bl_rna_get_subclass_py(self): ...
|
|
226
|
-
def driver_add(self): ...
|
|
227
|
-
def driver_remove(self): ...
|
|
228
|
-
def execute(self, context): ...
|
|
229
|
-
def get(self): ...
|
|
230
|
-
def id_properties_clear(self): ...
|
|
231
|
-
def id_properties_ensure(self): ...
|
|
232
|
-
def id_properties_ui(self): ...
|
|
233
|
-
def is_property_hidden(self): ...
|
|
234
|
-
def is_property_overridable_library(self): ...
|
|
235
|
-
def is_property_readonly(self): ...
|
|
236
|
-
def is_property_set(self): ...
|
|
237
|
-
def items(self): ...
|
|
238
|
-
def keyframe_delete(self): ...
|
|
239
|
-
def keyframe_insert(self): ...
|
|
240
|
-
def keys(self): ...
|
|
241
|
-
def path_from_id(self): ...
|
|
242
|
-
def path_resolve(self): ...
|
|
243
|
-
def poll_message_set(self): ...
|
|
244
|
-
def pop(self): ...
|
|
245
|
-
def property_overridable_library_set(self): ...
|
|
246
|
-
def property_unset(self): ...
|
|
247
|
-
def type_recast(self): ...
|
|
248
|
-
def values(self): ...
|
|
563
|
+
def bl_rna_get_subclass_py(self):
|
|
564
|
+
""" """
|
|
565
|
+
...
|
|
249
566
|
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
bl_rna: typing.Any
|
|
254
|
-
id_data: typing.Any
|
|
567
|
+
def driver_add(self):
|
|
568
|
+
""" """
|
|
569
|
+
...
|
|
255
570
|
|
|
256
|
-
def
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
def bl_rna_get_subclass_py(self): ...
|
|
260
|
-
def driver_add(self): ...
|
|
261
|
-
def driver_remove(self): ...
|
|
262
|
-
def execute(self, _context): ...
|
|
263
|
-
def get(self): ...
|
|
264
|
-
def id_properties_clear(self): ...
|
|
265
|
-
def id_properties_ensure(self): ...
|
|
266
|
-
def id_properties_ui(self): ...
|
|
267
|
-
def invoke(self, context, _event): ...
|
|
268
|
-
def is_property_hidden(self): ...
|
|
269
|
-
def is_property_overridable_library(self): ...
|
|
270
|
-
def is_property_readonly(self): ...
|
|
271
|
-
def is_property_set(self): ...
|
|
272
|
-
def items(self): ...
|
|
273
|
-
def keyframe_delete(self): ...
|
|
274
|
-
def keyframe_insert(self): ...
|
|
275
|
-
def keys(self): ...
|
|
276
|
-
def path_from_id(self): ...
|
|
277
|
-
def path_resolve(self): ...
|
|
278
|
-
def poll_message_set(self): ...
|
|
279
|
-
def pop(self): ...
|
|
280
|
-
def property_overridable_library_set(self): ...
|
|
281
|
-
def property_unset(self): ...
|
|
282
|
-
def type_recast(self): ...
|
|
283
|
-
def values(self): ...
|
|
571
|
+
def driver_remove(self):
|
|
572
|
+
""" """
|
|
573
|
+
...
|
|
284
574
|
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
bl_label: typing.Any
|
|
288
|
-
bl_rna: typing.Any
|
|
289
|
-
id_data: typing.Any
|
|
575
|
+
def execute(self, _context):
|
|
576
|
+
"""
|
|
290
577
|
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
def bl_rna_get_subclass_py(self): ...
|
|
295
|
-
def driver_add(self): ...
|
|
296
|
-
def driver_remove(self): ...
|
|
297
|
-
def execute(self, _context): ...
|
|
298
|
-
def get(self): ...
|
|
299
|
-
def id_properties_clear(self): ...
|
|
300
|
-
def id_properties_ensure(self): ...
|
|
301
|
-
def id_properties_ui(self): ...
|
|
302
|
-
def is_property_hidden(self): ...
|
|
303
|
-
def is_property_overridable_library(self): ...
|
|
304
|
-
def is_property_readonly(self): ...
|
|
305
|
-
def is_property_set(self): ...
|
|
306
|
-
def items(self): ...
|
|
307
|
-
def keyframe_delete(self): ...
|
|
308
|
-
def keyframe_insert(self): ...
|
|
309
|
-
def keys(self): ...
|
|
310
|
-
def path_from_id(self): ...
|
|
311
|
-
def path_resolve(self): ...
|
|
312
|
-
def poll(self, _context): ...
|
|
313
|
-
def poll_message_set(self): ...
|
|
314
|
-
def pop(self): ...
|
|
315
|
-
def previous_version(self): ...
|
|
316
|
-
def property_overridable_library_set(self): ...
|
|
317
|
-
def property_unset(self): ...
|
|
318
|
-
def type_recast(self): ...
|
|
319
|
-
def values(self): ...
|
|
578
|
+
:param _context:
|
|
579
|
+
"""
|
|
580
|
+
...
|
|
320
581
|
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
bl_rna: typing.Any
|
|
325
|
-
id_data: typing.Any
|
|
582
|
+
def get(self):
|
|
583
|
+
""" """
|
|
584
|
+
...
|
|
326
585
|
|
|
327
|
-
def
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
def bl_rna_get_subclass_py(self): ...
|
|
331
|
-
def driver_add(self): ...
|
|
332
|
-
def driver_remove(self): ...
|
|
333
|
-
def execute(self, _context): ...
|
|
334
|
-
def get(self): ...
|
|
335
|
-
def id_properties_clear(self): ...
|
|
336
|
-
def id_properties_ensure(self): ...
|
|
337
|
-
def id_properties_ui(self): ...
|
|
338
|
-
def is_property_hidden(self): ...
|
|
339
|
-
def is_property_overridable_library(self): ...
|
|
340
|
-
def is_property_readonly(self): ...
|
|
341
|
-
def is_property_set(self): ...
|
|
342
|
-
def items(self): ...
|
|
343
|
-
def keyframe_delete(self): ...
|
|
344
|
-
def keyframe_insert(self): ...
|
|
345
|
-
def keys(self): ...
|
|
346
|
-
def path_from_id(self): ...
|
|
347
|
-
def path_resolve(self): ...
|
|
348
|
-
def poll_message_set(self): ...
|
|
349
|
-
def pop(self): ...
|
|
350
|
-
def property_overridable_library_set(self): ...
|
|
351
|
-
def property_unset(self): ...
|
|
352
|
-
def type_recast(self): ...
|
|
353
|
-
def values(self): ...
|
|
586
|
+
def id_properties_clear(self):
|
|
587
|
+
""" """
|
|
588
|
+
...
|
|
354
589
|
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
bl_rna: typing.Any
|
|
359
|
-
id_data: typing.Any
|
|
590
|
+
def id_properties_ensure(self):
|
|
591
|
+
""" """
|
|
592
|
+
...
|
|
360
593
|
|
|
361
|
-
def
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
def bl_rna_get_subclass_py(self): ...
|
|
365
|
-
def driver_add(self): ...
|
|
366
|
-
def driver_remove(self): ...
|
|
367
|
-
def execute(self, context): ...
|
|
368
|
-
def get(self): ...
|
|
369
|
-
def id_properties_clear(self): ...
|
|
370
|
-
def id_properties_ensure(self): ...
|
|
371
|
-
def id_properties_ui(self): ...
|
|
372
|
-
def invoke(self, context, _event): ...
|
|
373
|
-
def is_property_hidden(self): ...
|
|
374
|
-
def is_property_overridable_library(self): ...
|
|
375
|
-
def is_property_readonly(self): ...
|
|
376
|
-
def is_property_set(self): ...
|
|
377
|
-
def items(self): ...
|
|
378
|
-
def keyframe_delete(self): ...
|
|
379
|
-
def keyframe_insert(self): ...
|
|
380
|
-
def keys(self): ...
|
|
381
|
-
def path_from_id(self): ...
|
|
382
|
-
def path_resolve(self): ...
|
|
383
|
-
def poll_message_set(self): ...
|
|
384
|
-
def pop(self): ...
|
|
385
|
-
def property_overridable_library_set(self): ...
|
|
386
|
-
def property_unset(self): ...
|
|
387
|
-
def type_recast(self): ...
|
|
388
|
-
def values(self): ...
|
|
594
|
+
def id_properties_ui(self):
|
|
595
|
+
""" """
|
|
596
|
+
...
|
|
389
597
|
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
bl_rna: typing.Any
|
|
394
|
-
id_data: typing.Any
|
|
598
|
+
def is_property_hidden(self):
|
|
599
|
+
""" """
|
|
600
|
+
...
|
|
395
601
|
|
|
396
|
-
def
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
def bl_rna_get_subclass_py(self): ...
|
|
400
|
-
def driver_add(self): ...
|
|
401
|
-
def driver_remove(self): ...
|
|
402
|
-
def execute(self, _context): ...
|
|
403
|
-
def get(self): ...
|
|
404
|
-
def id_properties_clear(self): ...
|
|
405
|
-
def id_properties_ensure(self): ...
|
|
406
|
-
def id_properties_ui(self): ...
|
|
407
|
-
def invoke(self, context, _event): ...
|
|
408
|
-
def is_property_hidden(self): ...
|
|
409
|
-
def is_property_overridable_library(self): ...
|
|
410
|
-
def is_property_readonly(self): ...
|
|
411
|
-
def is_property_set(self): ...
|
|
412
|
-
def items(self): ...
|
|
413
|
-
def keyframe_delete(self): ...
|
|
414
|
-
def keyframe_insert(self): ...
|
|
415
|
-
def keys(self): ...
|
|
416
|
-
def path_from_id(self): ...
|
|
417
|
-
def path_resolve(self): ...
|
|
418
|
-
def poll_message_set(self): ...
|
|
419
|
-
def pop(self): ...
|
|
420
|
-
def property_overridable_library_set(self): ...
|
|
421
|
-
def property_unset(self): ...
|
|
422
|
-
def type_recast(self): ...
|
|
423
|
-
def values(self): ...
|
|
602
|
+
def is_property_overridable_library(self):
|
|
603
|
+
""" """
|
|
604
|
+
...
|
|
424
605
|
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
bl_rna: typing.Any
|
|
429
|
-
id_data: typing.Any
|
|
606
|
+
def is_property_readonly(self):
|
|
607
|
+
""" """
|
|
608
|
+
...
|
|
430
609
|
|
|
431
|
-
def
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
def bl_rna_get_subclass_py(self): ...
|
|
435
|
-
def driver_add(self): ...
|
|
436
|
-
def driver_remove(self): ...
|
|
437
|
-
def execute(self, context): ...
|
|
438
|
-
def get(self): ...
|
|
439
|
-
def id_properties_clear(self): ...
|
|
440
|
-
def id_properties_ensure(self): ...
|
|
441
|
-
def id_properties_ui(self): ...
|
|
442
|
-
def is_property_hidden(self): ...
|
|
443
|
-
def is_property_overridable_library(self): ...
|
|
444
|
-
def is_property_readonly(self): ...
|
|
445
|
-
def is_property_set(self): ...
|
|
446
|
-
def items(self): ...
|
|
447
|
-
def keyframe_delete(self): ...
|
|
448
|
-
def keyframe_insert(self): ...
|
|
449
|
-
def keys(self): ...
|
|
450
|
-
def path_from_id(self): ...
|
|
451
|
-
def path_resolve(self): ...
|
|
452
|
-
def poll(self, context): ...
|
|
453
|
-
def poll_message_set(self): ...
|
|
454
|
-
def pop(self): ...
|
|
455
|
-
def property_overridable_library_set(self): ...
|
|
456
|
-
def property_unset(self): ...
|
|
457
|
-
def type_recast(self): ...
|
|
458
|
-
def values(self): ...
|
|
610
|
+
def is_property_set(self):
|
|
611
|
+
""" """
|
|
612
|
+
...
|
|
459
613
|
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
bl_rna: typing.Any
|
|
464
|
-
id_data: typing.Any
|
|
614
|
+
def items(self):
|
|
615
|
+
""" """
|
|
616
|
+
...
|
|
465
617
|
|
|
466
|
-
def
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
def bl_rna_get_subclass_py(self): ...
|
|
470
|
-
def driver_add(self): ...
|
|
471
|
-
def driver_remove(self): ...
|
|
472
|
-
def execute(self, context): ...
|
|
473
|
-
def get(self): ...
|
|
474
|
-
def id_properties_clear(self): ...
|
|
475
|
-
def id_properties_ensure(self): ...
|
|
476
|
-
def id_properties_ui(self): ...
|
|
477
|
-
def is_property_hidden(self): ...
|
|
478
|
-
def is_property_overridable_library(self): ...
|
|
479
|
-
def is_property_readonly(self): ...
|
|
480
|
-
def is_property_set(self): ...
|
|
481
|
-
def items(self): ...
|
|
482
|
-
def keyframe_delete(self): ...
|
|
483
|
-
def keyframe_insert(self): ...
|
|
484
|
-
def keys(self): ...
|
|
485
|
-
def path_from_id(self): ...
|
|
486
|
-
def path_resolve(self): ...
|
|
487
|
-
def poll_message_set(self): ...
|
|
488
|
-
def pop(self): ...
|
|
489
|
-
def property_overridable_library_set(self): ...
|
|
490
|
-
def property_unset(self): ...
|
|
491
|
-
def type_recast(self): ...
|
|
492
|
-
def values(self): ...
|
|
618
|
+
def keyframe_delete(self):
|
|
619
|
+
""" """
|
|
620
|
+
...
|
|
493
621
|
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
bl_rna: typing.Any
|
|
498
|
-
id_data: typing.Any
|
|
622
|
+
def keyframe_insert(self):
|
|
623
|
+
""" """
|
|
624
|
+
...
|
|
499
625
|
|
|
500
|
-
def
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
def bl_rna_get_subclass_py(self): ...
|
|
504
|
-
def driver_add(self): ...
|
|
505
|
-
def driver_remove(self): ...
|
|
506
|
-
def execute(self, context): ...
|
|
507
|
-
def get(self): ...
|
|
508
|
-
def id_properties_clear(self): ...
|
|
509
|
-
def id_properties_ensure(self): ...
|
|
510
|
-
def id_properties_ui(self): ...
|
|
511
|
-
def is_property_hidden(self): ...
|
|
512
|
-
def is_property_overridable_library(self): ...
|
|
513
|
-
def is_property_readonly(self): ...
|
|
514
|
-
def is_property_set(self): ...
|
|
515
|
-
def items(self): ...
|
|
516
|
-
def keyframe_delete(self): ...
|
|
517
|
-
def keyframe_insert(self): ...
|
|
518
|
-
def keys(self): ...
|
|
519
|
-
def path_from_id(self): ...
|
|
520
|
-
def path_resolve(self): ...
|
|
521
|
-
def poll_message_set(self): ...
|
|
522
|
-
def pop(self): ...
|
|
523
|
-
def property_overridable_library_set(self): ...
|
|
524
|
-
def property_unset(self): ...
|
|
525
|
-
def type_recast(self): ...
|
|
526
|
-
def values(self): ...
|
|
626
|
+
def keys(self):
|
|
627
|
+
""" """
|
|
628
|
+
...
|
|
527
629
|
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
bl_rna: typing.Any
|
|
532
|
-
id_data: typing.Any
|
|
630
|
+
def path_from_id(self):
|
|
631
|
+
""" """
|
|
632
|
+
...
|
|
533
633
|
|
|
534
|
-
def
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
def bl_rna_get_subclass_py(self): ...
|
|
538
|
-
def driver_add(self): ...
|
|
539
|
-
def driver_remove(self): ...
|
|
540
|
-
def execute(self, context): ...
|
|
541
|
-
def get(self): ...
|
|
542
|
-
def id_properties_clear(self): ...
|
|
543
|
-
def id_properties_ensure(self): ...
|
|
544
|
-
def id_properties_ui(self): ...
|
|
545
|
-
def is_property_hidden(self): ...
|
|
546
|
-
def is_property_overridable_library(self): ...
|
|
547
|
-
def is_property_readonly(self): ...
|
|
548
|
-
def is_property_set(self): ...
|
|
549
|
-
def items(self): ...
|
|
550
|
-
def keyframe_delete(self): ...
|
|
551
|
-
def keyframe_insert(self): ...
|
|
552
|
-
def keys(self): ...
|
|
553
|
-
def path_from_id(self): ...
|
|
554
|
-
def path_resolve(self): ...
|
|
555
|
-
def poll(self, context): ...
|
|
556
|
-
def poll_message_set(self): ...
|
|
557
|
-
def pop(self): ...
|
|
558
|
-
def property_overridable_library_set(self): ...
|
|
559
|
-
def property_unset(self): ...
|
|
560
|
-
def type_recast(self): ...
|
|
561
|
-
def values(self): ...
|
|
634
|
+
def path_resolve(self):
|
|
635
|
+
""" """
|
|
636
|
+
...
|
|
562
637
|
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
bl_rna: typing.Any
|
|
567
|
-
id_data: typing.Any
|
|
638
|
+
def poll_message_set(self):
|
|
639
|
+
""" """
|
|
640
|
+
...
|
|
568
641
|
|
|
569
|
-
def
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
def bl_rna_get_subclass_py(self): ...
|
|
573
|
-
def driver_add(self): ...
|
|
574
|
-
def driver_remove(self): ...
|
|
575
|
-
def execute(self, context): ...
|
|
576
|
-
def get(self): ...
|
|
577
|
-
def id_properties_clear(self): ...
|
|
578
|
-
def id_properties_ensure(self): ...
|
|
579
|
-
def id_properties_ui(self): ...
|
|
580
|
-
def is_property_hidden(self): ...
|
|
581
|
-
def is_property_overridable_library(self): ...
|
|
582
|
-
def is_property_readonly(self): ...
|
|
583
|
-
def is_property_set(self): ...
|
|
584
|
-
def items(self): ...
|
|
585
|
-
def keyframe_delete(self): ...
|
|
586
|
-
def keyframe_insert(self): ...
|
|
587
|
-
def keys(self): ...
|
|
588
|
-
def path_from_id(self): ...
|
|
589
|
-
def path_resolve(self): ...
|
|
590
|
-
def poll(self, context): ...
|
|
591
|
-
def poll_message_set(self): ...
|
|
592
|
-
def pop(self): ...
|
|
593
|
-
def property_overridable_library_set(self): ...
|
|
594
|
-
def property_unset(self): ...
|
|
595
|
-
def type_recast(self): ...
|
|
596
|
-
def values(self): ...
|
|
642
|
+
def pop(self):
|
|
643
|
+
""" """
|
|
644
|
+
...
|
|
597
645
|
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
bl_rna: typing.Any
|
|
602
|
-
id_data: typing.Any
|
|
646
|
+
def property_overridable_library_set(self):
|
|
647
|
+
""" """
|
|
648
|
+
...
|
|
603
649
|
|
|
604
|
-
def
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
def bl_rna_get_subclass_py(self): ...
|
|
608
|
-
def driver_add(self): ...
|
|
609
|
-
def driver_remove(self): ...
|
|
610
|
-
def execute(self, context): ...
|
|
611
|
-
def get(self): ...
|
|
612
|
-
def id_properties_clear(self): ...
|
|
613
|
-
def id_properties_ensure(self): ...
|
|
614
|
-
def id_properties_ui(self): ...
|
|
615
|
-
def is_property_hidden(self): ...
|
|
616
|
-
def is_property_overridable_library(self): ...
|
|
617
|
-
def is_property_readonly(self): ...
|
|
618
|
-
def is_property_set(self): ...
|
|
619
|
-
def items(self): ...
|
|
620
|
-
def keyframe_delete(self): ...
|
|
621
|
-
def keyframe_insert(self): ...
|
|
622
|
-
def keys(self): ...
|
|
623
|
-
def path_from_id(self): ...
|
|
624
|
-
def path_resolve(self): ...
|
|
625
|
-
def poll_message_set(self): ...
|
|
626
|
-
def pop(self): ...
|
|
627
|
-
def property_overridable_library_set(self): ...
|
|
628
|
-
def property_unset(self): ...
|
|
629
|
-
def type_recast(self): ...
|
|
630
|
-
def values(self): ...
|
|
650
|
+
def property_unset(self):
|
|
651
|
+
""" """
|
|
652
|
+
...
|
|
631
653
|
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
bl_rna: typing.Any
|
|
636
|
-
id_data: typing.Any
|
|
654
|
+
def type_recast(self):
|
|
655
|
+
""" """
|
|
656
|
+
...
|
|
637
657
|
|
|
638
|
-
def
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
def execute(self, context): ...
|
|
645
|
-
def get(self): ...
|
|
646
|
-
def id_properties_clear(self): ...
|
|
647
|
-
def id_properties_ensure(self): ...
|
|
648
|
-
def id_properties_ui(self): ...
|
|
649
|
-
def invoke(self, context, _event): ...
|
|
650
|
-
def is_property_hidden(self): ...
|
|
651
|
-
def is_property_overridable_library(self): ...
|
|
652
|
-
def is_property_readonly(self): ...
|
|
653
|
-
def is_property_set(self): ...
|
|
654
|
-
def items(self): ...
|
|
655
|
-
def keyframe_delete(self): ...
|
|
656
|
-
def keyframe_insert(self): ...
|
|
657
|
-
def keys(self): ...
|
|
658
|
-
def path_from_id(self): ...
|
|
659
|
-
def path_resolve(self): ...
|
|
660
|
-
def poll_message_set(self): ...
|
|
661
|
-
def pop(self): ...
|
|
662
|
-
def property_overridable_library_set(self): ...
|
|
663
|
-
def property_unset(self): ...
|
|
664
|
-
def type_recast(self): ...
|
|
665
|
-
def values(self): ...
|
|
658
|
+
def values(self):
|
|
659
|
+
""" """
|
|
660
|
+
...
|
|
661
|
+
|
|
662
|
+
class PREFERENCES_OT_addon_remove(bpy_types.Operator):
|
|
663
|
+
""" """
|
|
666
664
|
|
|
667
|
-
class PREFERENCES_OT_script_directory_remove(bpy_types.Operator):
|
|
668
665
|
bl_idname: typing.Any
|
|
666
|
+
""" """
|
|
667
|
+
|
|
669
668
|
bl_label: typing.Any
|
|
669
|
+
""" """
|
|
670
|
+
|
|
670
671
|
bl_rna: typing.Any
|
|
672
|
+
""" """
|
|
673
|
+
|
|
671
674
|
id_data: typing.Any
|
|
675
|
+
""" """
|
|
672
676
|
|
|
673
|
-
def as_keywords(self, ignore):
|
|
674
|
-
|
|
675
|
-
def bl_rna_get_subclass(self): ...
|
|
676
|
-
def bl_rna_get_subclass_py(self): ...
|
|
677
|
-
def driver_add(self): ...
|
|
678
|
-
def driver_remove(self): ...
|
|
679
|
-
def execute(self, context): ...
|
|
680
|
-
def get(self): ...
|
|
681
|
-
def id_properties_clear(self): ...
|
|
682
|
-
def id_properties_ensure(self): ...
|
|
683
|
-
def id_properties_ui(self): ...
|
|
684
|
-
def is_property_hidden(self): ...
|
|
685
|
-
def is_property_overridable_library(self): ...
|
|
686
|
-
def is_property_readonly(self): ...
|
|
687
|
-
def is_property_set(self): ...
|
|
688
|
-
def items(self): ...
|
|
689
|
-
def keyframe_delete(self): ...
|
|
690
|
-
def keyframe_insert(self): ...
|
|
691
|
-
def keys(self): ...
|
|
692
|
-
def path_from_id(self): ...
|
|
693
|
-
def path_resolve(self): ...
|
|
694
|
-
def poll_message_set(self): ...
|
|
695
|
-
def pop(self): ...
|
|
696
|
-
def property_overridable_library_set(self): ...
|
|
697
|
-
def property_unset(self): ...
|
|
698
|
-
def type_recast(self): ...
|
|
699
|
-
def values(self): ...
|
|
677
|
+
def as_keywords(self, ignore):
|
|
678
|
+
"""
|
|
700
679
|
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
bl_rna: typing.Any
|
|
705
|
-
id_data: typing.Any
|
|
680
|
+
:param ignore:
|
|
681
|
+
"""
|
|
682
|
+
...
|
|
706
683
|
|
|
707
|
-
def
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
def bl_rna_get_subclass_py(self): ...
|
|
711
|
-
def driver_add(self): ...
|
|
712
|
-
def driver_remove(self): ...
|
|
713
|
-
def execute(self, context): ...
|
|
714
|
-
def get(self): ...
|
|
715
|
-
def id_properties_clear(self): ...
|
|
716
|
-
def id_properties_ensure(self): ...
|
|
717
|
-
def id_properties_ui(self): ...
|
|
718
|
-
def is_property_hidden(self): ...
|
|
719
|
-
def is_property_overridable_library(self): ...
|
|
720
|
-
def is_property_readonly(self): ...
|
|
721
|
-
def is_property_set(self): ...
|
|
722
|
-
def items(self): ...
|
|
723
|
-
def keyframe_delete(self): ...
|
|
724
|
-
def keyframe_insert(self): ...
|
|
725
|
-
def keys(self): ...
|
|
726
|
-
def path_from_id(self): ...
|
|
727
|
-
def path_resolve(self): ...
|
|
728
|
-
def poll_message_set(self): ...
|
|
729
|
-
def pop(self): ...
|
|
730
|
-
def property_overridable_library_set(self): ...
|
|
731
|
-
def property_unset(self): ...
|
|
732
|
-
def type_recast(self): ...
|
|
733
|
-
def values(self): ...
|
|
684
|
+
def as_pointer(self):
|
|
685
|
+
""" """
|
|
686
|
+
...
|
|
734
687
|
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
bl_rna: typing.Any
|
|
739
|
-
id_data: typing.Any
|
|
688
|
+
def bl_rna_get_subclass(self):
|
|
689
|
+
""" """
|
|
690
|
+
...
|
|
740
691
|
|
|
741
|
-
def
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
def bl_rna_get_subclass_py(self): ...
|
|
745
|
-
def driver_add(self): ...
|
|
746
|
-
def driver_remove(self): ...
|
|
747
|
-
def execute(self, context): ...
|
|
748
|
-
def get(self): ...
|
|
749
|
-
def id_properties_clear(self): ...
|
|
750
|
-
def id_properties_ensure(self): ...
|
|
751
|
-
def id_properties_ui(self): ...
|
|
752
|
-
def invoke(self, context, _event): ...
|
|
753
|
-
def is_property_hidden(self): ...
|
|
754
|
-
def is_property_overridable_library(self): ...
|
|
755
|
-
def is_property_readonly(self): ...
|
|
756
|
-
def is_property_set(self): ...
|
|
757
|
-
def items(self): ...
|
|
758
|
-
def keyframe_delete(self): ...
|
|
759
|
-
def keyframe_insert(self): ...
|
|
760
|
-
def keys(self): ...
|
|
761
|
-
def path_from_id(self): ...
|
|
762
|
-
def path_resolve(self): ...
|
|
763
|
-
def poll_message_set(self): ...
|
|
764
|
-
def pop(self): ...
|
|
765
|
-
def property_overridable_library_set(self): ...
|
|
766
|
-
def property_unset(self): ...
|
|
767
|
-
def type_recast(self): ...
|
|
768
|
-
def values(self): ...
|
|
692
|
+
def bl_rna_get_subclass_py(self):
|
|
693
|
+
""" """
|
|
694
|
+
...
|
|
769
695
|
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
bl_idname: typing.Any
|
|
773
|
-
bl_label: typing.Any
|
|
774
|
-
bl_rna: typing.Any
|
|
775
|
-
id_data: typing.Any
|
|
696
|
+
def draw(self, _context):
|
|
697
|
+
"""
|
|
776
698
|
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
def bl_rna_get_subclass_py(self): ...
|
|
781
|
-
def draw(self, _context): ...
|
|
782
|
-
def driver_add(self): ...
|
|
783
|
-
def driver_remove(self): ...
|
|
784
|
-
def execute(self, context): ...
|
|
785
|
-
def get(self): ...
|
|
786
|
-
def id_properties_clear(self): ...
|
|
787
|
-
def id_properties_ensure(self): ...
|
|
788
|
-
def id_properties_ui(self): ...
|
|
789
|
-
def invoke(self, context, _event): ...
|
|
790
|
-
def is_property_hidden(self): ...
|
|
791
|
-
def is_property_overridable_library(self): ...
|
|
792
|
-
def is_property_readonly(self): ...
|
|
793
|
-
def is_property_set(self): ...
|
|
794
|
-
def items(self): ...
|
|
795
|
-
def keyframe_delete(self): ...
|
|
796
|
-
def keyframe_insert(self): ...
|
|
797
|
-
def keys(self): ...
|
|
798
|
-
def path_from_id(self): ...
|
|
799
|
-
def path_resolve(self): ...
|
|
800
|
-
def poll_message_set(self): ...
|
|
801
|
-
def pop(self): ...
|
|
802
|
-
def property_overridable_library_set(self): ...
|
|
803
|
-
def property_unset(self): ...
|
|
804
|
-
def type_recast(self): ...
|
|
805
|
-
def values(self): ...
|
|
699
|
+
:param _context:
|
|
700
|
+
"""
|
|
701
|
+
...
|
|
806
702
|
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
bl_options: typing.Any
|
|
811
|
-
bl_rna: typing.Any
|
|
812
|
-
id_data: typing.Any
|
|
703
|
+
def driver_add(self):
|
|
704
|
+
""" """
|
|
705
|
+
...
|
|
813
706
|
|
|
814
|
-
def
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
def bl_rna_get_subclass_py(self): ...
|
|
818
|
-
def driver_add(self): ...
|
|
819
|
-
def driver_remove(self): ...
|
|
820
|
-
def execute(self, context): ...
|
|
821
|
-
def get(self): ...
|
|
822
|
-
def id_properties_clear(self): ...
|
|
823
|
-
def id_properties_ensure(self): ...
|
|
824
|
-
def id_properties_ui(self): ...
|
|
825
|
-
def is_property_hidden(self): ...
|
|
826
|
-
def is_property_overridable_library(self): ...
|
|
827
|
-
def is_property_readonly(self): ...
|
|
828
|
-
def is_property_set(self): ...
|
|
829
|
-
def items(self): ...
|
|
830
|
-
def keyframe_delete(self): ...
|
|
831
|
-
def keyframe_insert(self): ...
|
|
832
|
-
def keys(self): ...
|
|
833
|
-
def path_from_id(self): ...
|
|
834
|
-
def path_resolve(self): ...
|
|
835
|
-
def poll(self, _context): ...
|
|
836
|
-
def poll_message_set(self): ...
|
|
837
|
-
def pop(self): ...
|
|
838
|
-
def property_overridable_library_set(self): ...
|
|
839
|
-
def property_unset(self): ...
|
|
840
|
-
def type_recast(self): ...
|
|
841
|
-
def values(self): ...
|
|
707
|
+
def driver_remove(self):
|
|
708
|
+
""" """
|
|
709
|
+
...
|
|
842
710
|
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
bl_label: typing.Any
|
|
846
|
-
bl_rna: typing.Any
|
|
847
|
-
id_data: typing.Any
|
|
711
|
+
def execute(self, context):
|
|
712
|
+
"""
|
|
848
713
|
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
def bl_rna_get_subclass_py(self): ...
|
|
853
|
-
def driver_add(self): ...
|
|
854
|
-
def driver_remove(self): ...
|
|
855
|
-
def execute(self, context): ...
|
|
856
|
-
def get(self): ...
|
|
857
|
-
def id_properties_clear(self): ...
|
|
858
|
-
def id_properties_ensure(self): ...
|
|
859
|
-
def id_properties_ui(self): ...
|
|
860
|
-
def is_property_hidden(self): ...
|
|
861
|
-
def is_property_overridable_library(self): ...
|
|
862
|
-
def is_property_readonly(self): ...
|
|
863
|
-
def is_property_set(self): ...
|
|
864
|
-
def items(self): ...
|
|
865
|
-
def keyframe_delete(self): ...
|
|
866
|
-
def keyframe_insert(self): ...
|
|
867
|
-
def keys(self): ...
|
|
868
|
-
def path_from_id(self): ...
|
|
869
|
-
def path_resolve(self): ...
|
|
870
|
-
def poll_message_set(self): ...
|
|
871
|
-
def pop(self): ...
|
|
872
|
-
def property_overridable_library_set(self): ...
|
|
873
|
-
def property_unset(self): ...
|
|
874
|
-
def type_recast(self): ...
|
|
875
|
-
def values(self): ...
|
|
714
|
+
:param context:
|
|
715
|
+
"""
|
|
716
|
+
...
|
|
876
717
|
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
718
|
+
def get(self):
|
|
719
|
+
""" """
|
|
720
|
+
...
|
|
721
|
+
|
|
722
|
+
def id_properties_clear(self):
|
|
723
|
+
""" """
|
|
724
|
+
...
|
|
725
|
+
|
|
726
|
+
def id_properties_ensure(self):
|
|
727
|
+
""" """
|
|
728
|
+
...
|
|
729
|
+
|
|
730
|
+
def id_properties_ui(self):
|
|
731
|
+
""" """
|
|
732
|
+
...
|
|
733
|
+
|
|
734
|
+
def invoke(self, context, _event):
|
|
735
|
+
"""
|
|
736
|
+
|
|
737
|
+
:param context:
|
|
738
|
+
:param _event:
|
|
739
|
+
"""
|
|
740
|
+
...
|
|
741
|
+
|
|
742
|
+
def is_property_hidden(self):
|
|
743
|
+
""" """
|
|
744
|
+
...
|
|
745
|
+
|
|
746
|
+
def is_property_overridable_library(self):
|
|
747
|
+
""" """
|
|
748
|
+
...
|
|
749
|
+
|
|
750
|
+
def is_property_readonly(self):
|
|
751
|
+
""" """
|
|
752
|
+
...
|
|
753
|
+
|
|
754
|
+
def is_property_set(self):
|
|
755
|
+
""" """
|
|
756
|
+
...
|
|
757
|
+
|
|
758
|
+
def items(self):
|
|
759
|
+
""" """
|
|
760
|
+
...
|
|
761
|
+
|
|
762
|
+
def keyframe_delete(self):
|
|
763
|
+
""" """
|
|
764
|
+
...
|
|
765
|
+
|
|
766
|
+
def keyframe_insert(self):
|
|
767
|
+
""" """
|
|
768
|
+
...
|
|
769
|
+
|
|
770
|
+
def keys(self):
|
|
771
|
+
""" """
|
|
772
|
+
...
|
|
773
|
+
|
|
774
|
+
def path_from_addon(self, module):
|
|
775
|
+
"""
|
|
776
|
+
|
|
777
|
+
:param module:
|
|
778
|
+
"""
|
|
779
|
+
...
|
|
780
|
+
|
|
781
|
+
def path_from_id(self):
|
|
782
|
+
""" """
|
|
783
|
+
...
|
|
784
|
+
|
|
785
|
+
def path_resolve(self):
|
|
786
|
+
""" """
|
|
787
|
+
...
|
|
788
|
+
|
|
789
|
+
def poll_message_set(self):
|
|
790
|
+
""" """
|
|
791
|
+
...
|
|
792
|
+
|
|
793
|
+
def pop(self):
|
|
794
|
+
""" """
|
|
795
|
+
...
|
|
796
|
+
|
|
797
|
+
def property_overridable_library_set(self):
|
|
798
|
+
""" """
|
|
799
|
+
...
|
|
800
|
+
|
|
801
|
+
def property_unset(self):
|
|
802
|
+
""" """
|
|
803
|
+
...
|
|
804
|
+
|
|
805
|
+
def type_recast(self):
|
|
806
|
+
""" """
|
|
807
|
+
...
|
|
808
|
+
|
|
809
|
+
def values(self):
|
|
810
|
+
""" """
|
|
811
|
+
...
|
|
812
|
+
|
|
813
|
+
class PREFERENCES_OT_addon_show(bpy_types.Operator):
|
|
814
|
+
""" """
|
|
815
|
+
|
|
816
|
+
bl_idname: typing.Any
|
|
817
|
+
""" """
|
|
818
|
+
|
|
819
|
+
bl_label: typing.Any
|
|
820
|
+
""" """
|
|
821
|
+
|
|
822
|
+
bl_options: typing.Any
|
|
823
|
+
""" """
|
|
824
|
+
|
|
825
|
+
bl_rna: typing.Any
|
|
826
|
+
""" """
|
|
827
|
+
|
|
828
|
+
id_data: typing.Any
|
|
829
|
+
""" """
|
|
830
|
+
|
|
831
|
+
def as_keywords(self, ignore):
|
|
832
|
+
"""
|
|
833
|
+
|
|
834
|
+
:param ignore:
|
|
835
|
+
"""
|
|
836
|
+
...
|
|
837
|
+
|
|
838
|
+
def as_pointer(self):
|
|
839
|
+
""" """
|
|
840
|
+
...
|
|
841
|
+
|
|
842
|
+
def bl_rna_get_subclass(self):
|
|
843
|
+
""" """
|
|
844
|
+
...
|
|
845
|
+
|
|
846
|
+
def bl_rna_get_subclass_py(self):
|
|
847
|
+
""" """
|
|
848
|
+
...
|
|
849
|
+
|
|
850
|
+
def driver_add(self):
|
|
851
|
+
""" """
|
|
852
|
+
...
|
|
853
|
+
|
|
854
|
+
def driver_remove(self):
|
|
855
|
+
""" """
|
|
856
|
+
...
|
|
857
|
+
|
|
858
|
+
def execute(self, context):
|
|
859
|
+
"""
|
|
860
|
+
|
|
861
|
+
:param context:
|
|
862
|
+
"""
|
|
863
|
+
...
|
|
864
|
+
|
|
865
|
+
def get(self):
|
|
866
|
+
""" """
|
|
867
|
+
...
|
|
868
|
+
|
|
869
|
+
def id_properties_clear(self):
|
|
870
|
+
""" """
|
|
871
|
+
...
|
|
872
|
+
|
|
873
|
+
def id_properties_ensure(self):
|
|
874
|
+
""" """
|
|
875
|
+
...
|
|
876
|
+
|
|
877
|
+
def id_properties_ui(self):
|
|
878
|
+
""" """
|
|
879
|
+
...
|
|
880
|
+
|
|
881
|
+
def is_property_hidden(self):
|
|
882
|
+
""" """
|
|
883
|
+
...
|
|
884
|
+
|
|
885
|
+
def is_property_overridable_library(self):
|
|
886
|
+
""" """
|
|
887
|
+
...
|
|
888
|
+
|
|
889
|
+
def is_property_readonly(self):
|
|
890
|
+
""" """
|
|
891
|
+
...
|
|
892
|
+
|
|
893
|
+
def is_property_set(self):
|
|
894
|
+
""" """
|
|
895
|
+
...
|
|
896
|
+
|
|
897
|
+
def items(self):
|
|
898
|
+
""" """
|
|
899
|
+
...
|
|
900
|
+
|
|
901
|
+
def keyframe_delete(self):
|
|
902
|
+
""" """
|
|
903
|
+
...
|
|
904
|
+
|
|
905
|
+
def keyframe_insert(self):
|
|
906
|
+
""" """
|
|
907
|
+
...
|
|
908
|
+
|
|
909
|
+
def keys(self):
|
|
910
|
+
""" """
|
|
911
|
+
...
|
|
912
|
+
|
|
913
|
+
def path_from_id(self):
|
|
914
|
+
""" """
|
|
915
|
+
...
|
|
916
|
+
|
|
917
|
+
def path_resolve(self):
|
|
918
|
+
""" """
|
|
919
|
+
...
|
|
920
|
+
|
|
921
|
+
def poll_message_set(self):
|
|
922
|
+
""" """
|
|
923
|
+
...
|
|
924
|
+
|
|
925
|
+
def pop(self):
|
|
926
|
+
""" """
|
|
927
|
+
...
|
|
928
|
+
|
|
929
|
+
def property_overridable_library_set(self):
|
|
930
|
+
""" """
|
|
931
|
+
...
|
|
932
|
+
|
|
933
|
+
def property_unset(self):
|
|
934
|
+
""" """
|
|
935
|
+
...
|
|
936
|
+
|
|
937
|
+
def type_recast(self):
|
|
938
|
+
""" """
|
|
939
|
+
...
|
|
940
|
+
|
|
941
|
+
def values(self):
|
|
942
|
+
""" """
|
|
943
|
+
...
|
|
944
|
+
|
|
945
|
+
class PREFERENCES_OT_app_template_install(bpy_types.Operator):
|
|
946
|
+
""" """
|
|
947
|
+
|
|
948
|
+
bl_idname: typing.Any
|
|
949
|
+
""" """
|
|
950
|
+
|
|
951
|
+
bl_label: typing.Any
|
|
952
|
+
""" """
|
|
953
|
+
|
|
954
|
+
bl_rna: typing.Any
|
|
955
|
+
""" """
|
|
956
|
+
|
|
957
|
+
id_data: typing.Any
|
|
958
|
+
""" """
|
|
959
|
+
|
|
960
|
+
def as_keywords(self, ignore):
|
|
961
|
+
"""
|
|
962
|
+
|
|
963
|
+
:param ignore:
|
|
964
|
+
"""
|
|
965
|
+
...
|
|
966
|
+
|
|
967
|
+
def as_pointer(self):
|
|
968
|
+
""" """
|
|
969
|
+
...
|
|
970
|
+
|
|
971
|
+
def bl_rna_get_subclass(self):
|
|
972
|
+
""" """
|
|
973
|
+
...
|
|
974
|
+
|
|
975
|
+
def bl_rna_get_subclass_py(self):
|
|
976
|
+
""" """
|
|
977
|
+
...
|
|
978
|
+
|
|
979
|
+
def driver_add(self):
|
|
980
|
+
""" """
|
|
981
|
+
...
|
|
982
|
+
|
|
983
|
+
def driver_remove(self):
|
|
984
|
+
""" """
|
|
985
|
+
...
|
|
986
|
+
|
|
987
|
+
def execute(self, _context):
|
|
988
|
+
"""
|
|
989
|
+
|
|
990
|
+
:param _context:
|
|
991
|
+
"""
|
|
992
|
+
...
|
|
993
|
+
|
|
994
|
+
def get(self):
|
|
995
|
+
""" """
|
|
996
|
+
...
|
|
997
|
+
|
|
998
|
+
def id_properties_clear(self):
|
|
999
|
+
""" """
|
|
1000
|
+
...
|
|
1001
|
+
|
|
1002
|
+
def id_properties_ensure(self):
|
|
1003
|
+
""" """
|
|
1004
|
+
...
|
|
1005
|
+
|
|
1006
|
+
def id_properties_ui(self):
|
|
1007
|
+
""" """
|
|
1008
|
+
...
|
|
1009
|
+
|
|
1010
|
+
def invoke(self, context, _event):
|
|
1011
|
+
"""
|
|
1012
|
+
|
|
1013
|
+
:param context:
|
|
1014
|
+
:param _event:
|
|
1015
|
+
"""
|
|
1016
|
+
...
|
|
1017
|
+
|
|
1018
|
+
def is_property_hidden(self):
|
|
1019
|
+
""" """
|
|
1020
|
+
...
|
|
1021
|
+
|
|
1022
|
+
def is_property_overridable_library(self):
|
|
1023
|
+
""" """
|
|
1024
|
+
...
|
|
1025
|
+
|
|
1026
|
+
def is_property_readonly(self):
|
|
1027
|
+
""" """
|
|
1028
|
+
...
|
|
1029
|
+
|
|
1030
|
+
def is_property_set(self):
|
|
1031
|
+
""" """
|
|
1032
|
+
...
|
|
1033
|
+
|
|
1034
|
+
def items(self):
|
|
1035
|
+
""" """
|
|
1036
|
+
...
|
|
1037
|
+
|
|
1038
|
+
def keyframe_delete(self):
|
|
1039
|
+
""" """
|
|
1040
|
+
...
|
|
1041
|
+
|
|
1042
|
+
def keyframe_insert(self):
|
|
1043
|
+
""" """
|
|
1044
|
+
...
|
|
1045
|
+
|
|
1046
|
+
def keys(self):
|
|
1047
|
+
""" """
|
|
1048
|
+
...
|
|
1049
|
+
|
|
1050
|
+
def path_from_id(self):
|
|
1051
|
+
""" """
|
|
1052
|
+
...
|
|
1053
|
+
|
|
1054
|
+
def path_resolve(self):
|
|
1055
|
+
""" """
|
|
1056
|
+
...
|
|
1057
|
+
|
|
1058
|
+
def poll_message_set(self):
|
|
1059
|
+
""" """
|
|
1060
|
+
...
|
|
1061
|
+
|
|
1062
|
+
def pop(self):
|
|
1063
|
+
""" """
|
|
1064
|
+
...
|
|
1065
|
+
|
|
1066
|
+
def property_overridable_library_set(self):
|
|
1067
|
+
""" """
|
|
1068
|
+
...
|
|
1069
|
+
|
|
1070
|
+
def property_unset(self):
|
|
1071
|
+
""" """
|
|
1072
|
+
...
|
|
1073
|
+
|
|
1074
|
+
def type_recast(self):
|
|
1075
|
+
""" """
|
|
1076
|
+
...
|
|
1077
|
+
|
|
1078
|
+
def values(self):
|
|
1079
|
+
""" """
|
|
1080
|
+
...
|
|
1081
|
+
|
|
1082
|
+
class PREFERENCES_OT_copy_prev(bpy_types.Operator):
|
|
1083
|
+
""" """
|
|
1084
|
+
|
|
1085
|
+
bl_idname: typing.Any
|
|
1086
|
+
""" """
|
|
1087
|
+
|
|
1088
|
+
bl_label: typing.Any
|
|
1089
|
+
""" """
|
|
1090
|
+
|
|
1091
|
+
bl_rna: typing.Any
|
|
1092
|
+
""" """
|
|
1093
|
+
|
|
1094
|
+
id_data: typing.Any
|
|
1095
|
+
""" """
|
|
1096
|
+
|
|
1097
|
+
def as_keywords(self, ignore):
|
|
1098
|
+
"""
|
|
1099
|
+
|
|
1100
|
+
:param ignore:
|
|
1101
|
+
"""
|
|
1102
|
+
...
|
|
1103
|
+
|
|
1104
|
+
def as_pointer(self):
|
|
1105
|
+
""" """
|
|
1106
|
+
...
|
|
1107
|
+
|
|
1108
|
+
def bl_rna_get_subclass(self):
|
|
1109
|
+
""" """
|
|
1110
|
+
...
|
|
1111
|
+
|
|
1112
|
+
def bl_rna_get_subclass_py(self):
|
|
1113
|
+
""" """
|
|
1114
|
+
...
|
|
1115
|
+
|
|
1116
|
+
def driver_add(self):
|
|
1117
|
+
""" """
|
|
1118
|
+
...
|
|
1119
|
+
|
|
1120
|
+
def driver_remove(self):
|
|
1121
|
+
""" """
|
|
1122
|
+
...
|
|
1123
|
+
|
|
1124
|
+
def execute(self, _context):
|
|
1125
|
+
"""
|
|
1126
|
+
|
|
1127
|
+
:param _context:
|
|
1128
|
+
"""
|
|
1129
|
+
...
|
|
1130
|
+
|
|
1131
|
+
def get(self):
|
|
1132
|
+
""" """
|
|
1133
|
+
...
|
|
1134
|
+
|
|
1135
|
+
def id_properties_clear(self):
|
|
1136
|
+
""" """
|
|
1137
|
+
...
|
|
1138
|
+
|
|
1139
|
+
def id_properties_ensure(self):
|
|
1140
|
+
""" """
|
|
1141
|
+
...
|
|
1142
|
+
|
|
1143
|
+
def id_properties_ui(self):
|
|
1144
|
+
""" """
|
|
1145
|
+
...
|
|
1146
|
+
|
|
1147
|
+
def is_property_hidden(self):
|
|
1148
|
+
""" """
|
|
1149
|
+
...
|
|
1150
|
+
|
|
1151
|
+
def is_property_overridable_library(self):
|
|
1152
|
+
""" """
|
|
1153
|
+
...
|
|
1154
|
+
|
|
1155
|
+
def is_property_readonly(self):
|
|
1156
|
+
""" """
|
|
1157
|
+
...
|
|
1158
|
+
|
|
1159
|
+
def is_property_set(self):
|
|
1160
|
+
""" """
|
|
1161
|
+
...
|
|
1162
|
+
|
|
1163
|
+
def items(self):
|
|
1164
|
+
""" """
|
|
1165
|
+
...
|
|
1166
|
+
|
|
1167
|
+
def keyframe_delete(self):
|
|
1168
|
+
""" """
|
|
1169
|
+
...
|
|
1170
|
+
|
|
1171
|
+
def keyframe_insert(self):
|
|
1172
|
+
""" """
|
|
1173
|
+
...
|
|
1174
|
+
|
|
1175
|
+
def keys(self):
|
|
1176
|
+
""" """
|
|
1177
|
+
...
|
|
1178
|
+
|
|
1179
|
+
def path_from_id(self):
|
|
1180
|
+
""" """
|
|
1181
|
+
...
|
|
1182
|
+
|
|
1183
|
+
def path_resolve(self):
|
|
1184
|
+
""" """
|
|
1185
|
+
...
|
|
1186
|
+
|
|
1187
|
+
def poll(self, _context):
|
|
1188
|
+
"""
|
|
1189
|
+
|
|
1190
|
+
:param _context:
|
|
1191
|
+
"""
|
|
1192
|
+
...
|
|
1193
|
+
|
|
1194
|
+
def poll_message_set(self):
|
|
1195
|
+
""" """
|
|
1196
|
+
...
|
|
1197
|
+
|
|
1198
|
+
def pop(self):
|
|
1199
|
+
""" """
|
|
1200
|
+
...
|
|
1201
|
+
|
|
1202
|
+
def previous_version(self):
|
|
1203
|
+
""" """
|
|
1204
|
+
...
|
|
1205
|
+
|
|
1206
|
+
def property_overridable_library_set(self):
|
|
1207
|
+
""" """
|
|
1208
|
+
...
|
|
1209
|
+
|
|
1210
|
+
def property_unset(self):
|
|
1211
|
+
""" """
|
|
1212
|
+
...
|
|
1213
|
+
|
|
1214
|
+
def type_recast(self):
|
|
1215
|
+
""" """
|
|
1216
|
+
...
|
|
1217
|
+
|
|
1218
|
+
def values(self):
|
|
1219
|
+
""" """
|
|
1220
|
+
...
|
|
1221
|
+
|
|
1222
|
+
class PREFERENCES_OT_keyconfig_activate(bpy_types.Operator):
|
|
1223
|
+
""" """
|
|
1224
|
+
|
|
1225
|
+
bl_idname: typing.Any
|
|
1226
|
+
""" """
|
|
1227
|
+
|
|
1228
|
+
bl_label: typing.Any
|
|
1229
|
+
""" """
|
|
1230
|
+
|
|
1231
|
+
bl_rna: typing.Any
|
|
1232
|
+
""" """
|
|
1233
|
+
|
|
1234
|
+
id_data: typing.Any
|
|
1235
|
+
""" """
|
|
1236
|
+
|
|
1237
|
+
def as_keywords(self, ignore):
|
|
1238
|
+
"""
|
|
1239
|
+
|
|
1240
|
+
:param ignore:
|
|
1241
|
+
"""
|
|
1242
|
+
...
|
|
1243
|
+
|
|
1244
|
+
def as_pointer(self):
|
|
1245
|
+
""" """
|
|
1246
|
+
...
|
|
1247
|
+
|
|
1248
|
+
def bl_rna_get_subclass(self):
|
|
1249
|
+
""" """
|
|
1250
|
+
...
|
|
1251
|
+
|
|
1252
|
+
def bl_rna_get_subclass_py(self):
|
|
1253
|
+
""" """
|
|
1254
|
+
...
|
|
1255
|
+
|
|
1256
|
+
def driver_add(self):
|
|
1257
|
+
""" """
|
|
1258
|
+
...
|
|
1259
|
+
|
|
1260
|
+
def driver_remove(self):
|
|
1261
|
+
""" """
|
|
1262
|
+
...
|
|
1263
|
+
|
|
1264
|
+
def execute(self, _context):
|
|
1265
|
+
"""
|
|
1266
|
+
|
|
1267
|
+
:param _context:
|
|
1268
|
+
"""
|
|
1269
|
+
...
|
|
1270
|
+
|
|
1271
|
+
def get(self):
|
|
1272
|
+
""" """
|
|
1273
|
+
...
|
|
1274
|
+
|
|
1275
|
+
def id_properties_clear(self):
|
|
1276
|
+
""" """
|
|
1277
|
+
...
|
|
1278
|
+
|
|
1279
|
+
def id_properties_ensure(self):
|
|
1280
|
+
""" """
|
|
1281
|
+
...
|
|
1282
|
+
|
|
1283
|
+
def id_properties_ui(self):
|
|
1284
|
+
""" """
|
|
1285
|
+
...
|
|
1286
|
+
|
|
1287
|
+
def is_property_hidden(self):
|
|
1288
|
+
""" """
|
|
1289
|
+
...
|
|
1290
|
+
|
|
1291
|
+
def is_property_overridable_library(self):
|
|
1292
|
+
""" """
|
|
1293
|
+
...
|
|
1294
|
+
|
|
1295
|
+
def is_property_readonly(self):
|
|
1296
|
+
""" """
|
|
1297
|
+
...
|
|
1298
|
+
|
|
1299
|
+
def is_property_set(self):
|
|
1300
|
+
""" """
|
|
1301
|
+
...
|
|
1302
|
+
|
|
1303
|
+
def items(self):
|
|
1304
|
+
""" """
|
|
1305
|
+
...
|
|
1306
|
+
|
|
1307
|
+
def keyframe_delete(self):
|
|
1308
|
+
""" """
|
|
1309
|
+
...
|
|
1310
|
+
|
|
1311
|
+
def keyframe_insert(self):
|
|
1312
|
+
""" """
|
|
1313
|
+
...
|
|
1314
|
+
|
|
1315
|
+
def keys(self):
|
|
1316
|
+
""" """
|
|
1317
|
+
...
|
|
1318
|
+
|
|
1319
|
+
def path_from_id(self):
|
|
1320
|
+
""" """
|
|
1321
|
+
...
|
|
1322
|
+
|
|
1323
|
+
def path_resolve(self):
|
|
1324
|
+
""" """
|
|
1325
|
+
...
|
|
1326
|
+
|
|
1327
|
+
def poll_message_set(self):
|
|
1328
|
+
""" """
|
|
1329
|
+
...
|
|
1330
|
+
|
|
1331
|
+
def pop(self):
|
|
1332
|
+
""" """
|
|
1333
|
+
...
|
|
1334
|
+
|
|
1335
|
+
def property_overridable_library_set(self):
|
|
1336
|
+
""" """
|
|
1337
|
+
...
|
|
1338
|
+
|
|
1339
|
+
def property_unset(self):
|
|
1340
|
+
""" """
|
|
1341
|
+
...
|
|
1342
|
+
|
|
1343
|
+
def type_recast(self):
|
|
1344
|
+
""" """
|
|
1345
|
+
...
|
|
1346
|
+
|
|
1347
|
+
def values(self):
|
|
1348
|
+
""" """
|
|
1349
|
+
...
|
|
1350
|
+
|
|
1351
|
+
class PREFERENCES_OT_keyconfig_export(bpy_types.Operator):
|
|
1352
|
+
""" """
|
|
1353
|
+
|
|
1354
|
+
bl_idname: typing.Any
|
|
1355
|
+
""" """
|
|
1356
|
+
|
|
1357
|
+
bl_label: typing.Any
|
|
1358
|
+
""" """
|
|
1359
|
+
|
|
1360
|
+
bl_rna: typing.Any
|
|
1361
|
+
""" """
|
|
1362
|
+
|
|
1363
|
+
id_data: typing.Any
|
|
1364
|
+
""" """
|
|
1365
|
+
|
|
1366
|
+
def as_keywords(self, ignore):
|
|
1367
|
+
"""
|
|
1368
|
+
|
|
1369
|
+
:param ignore:
|
|
1370
|
+
"""
|
|
1371
|
+
...
|
|
1372
|
+
|
|
1373
|
+
def as_pointer(self):
|
|
1374
|
+
""" """
|
|
1375
|
+
...
|
|
1376
|
+
|
|
1377
|
+
def bl_rna_get_subclass(self):
|
|
1378
|
+
""" """
|
|
1379
|
+
...
|
|
1380
|
+
|
|
1381
|
+
def bl_rna_get_subclass_py(self):
|
|
1382
|
+
""" """
|
|
1383
|
+
...
|
|
1384
|
+
|
|
1385
|
+
def driver_add(self):
|
|
1386
|
+
""" """
|
|
1387
|
+
...
|
|
1388
|
+
|
|
1389
|
+
def driver_remove(self):
|
|
1390
|
+
""" """
|
|
1391
|
+
...
|
|
1392
|
+
|
|
1393
|
+
def execute(self, context):
|
|
1394
|
+
"""
|
|
1395
|
+
|
|
1396
|
+
:param context:
|
|
1397
|
+
"""
|
|
1398
|
+
...
|
|
1399
|
+
|
|
1400
|
+
def get(self):
|
|
1401
|
+
""" """
|
|
1402
|
+
...
|
|
1403
|
+
|
|
1404
|
+
def id_properties_clear(self):
|
|
1405
|
+
""" """
|
|
1406
|
+
...
|
|
1407
|
+
|
|
1408
|
+
def id_properties_ensure(self):
|
|
1409
|
+
""" """
|
|
1410
|
+
...
|
|
1411
|
+
|
|
1412
|
+
def id_properties_ui(self):
|
|
1413
|
+
""" """
|
|
1414
|
+
...
|
|
1415
|
+
|
|
1416
|
+
def invoke(self, context, _event):
|
|
1417
|
+
"""
|
|
1418
|
+
|
|
1419
|
+
:param context:
|
|
1420
|
+
:param _event:
|
|
1421
|
+
"""
|
|
1422
|
+
...
|
|
1423
|
+
|
|
1424
|
+
def is_property_hidden(self):
|
|
1425
|
+
""" """
|
|
1426
|
+
...
|
|
1427
|
+
|
|
1428
|
+
def is_property_overridable_library(self):
|
|
1429
|
+
""" """
|
|
1430
|
+
...
|
|
1431
|
+
|
|
1432
|
+
def is_property_readonly(self):
|
|
1433
|
+
""" """
|
|
1434
|
+
...
|
|
1435
|
+
|
|
1436
|
+
def is_property_set(self):
|
|
1437
|
+
""" """
|
|
1438
|
+
...
|
|
1439
|
+
|
|
1440
|
+
def items(self):
|
|
1441
|
+
""" """
|
|
1442
|
+
...
|
|
1443
|
+
|
|
1444
|
+
def keyframe_delete(self):
|
|
1445
|
+
""" """
|
|
1446
|
+
...
|
|
1447
|
+
|
|
1448
|
+
def keyframe_insert(self):
|
|
1449
|
+
""" """
|
|
1450
|
+
...
|
|
1451
|
+
|
|
1452
|
+
def keys(self):
|
|
1453
|
+
""" """
|
|
1454
|
+
...
|
|
1455
|
+
|
|
1456
|
+
def path_from_id(self):
|
|
1457
|
+
""" """
|
|
1458
|
+
...
|
|
1459
|
+
|
|
1460
|
+
def path_resolve(self):
|
|
1461
|
+
""" """
|
|
1462
|
+
...
|
|
1463
|
+
|
|
1464
|
+
def poll_message_set(self):
|
|
1465
|
+
""" """
|
|
1466
|
+
...
|
|
1467
|
+
|
|
1468
|
+
def pop(self):
|
|
1469
|
+
""" """
|
|
1470
|
+
...
|
|
1471
|
+
|
|
1472
|
+
def property_overridable_library_set(self):
|
|
1473
|
+
""" """
|
|
1474
|
+
...
|
|
1475
|
+
|
|
1476
|
+
def property_unset(self):
|
|
1477
|
+
""" """
|
|
1478
|
+
...
|
|
1479
|
+
|
|
1480
|
+
def type_recast(self):
|
|
1481
|
+
""" """
|
|
1482
|
+
...
|
|
1483
|
+
|
|
1484
|
+
def values(self):
|
|
1485
|
+
""" """
|
|
1486
|
+
...
|
|
1487
|
+
|
|
1488
|
+
class PREFERENCES_OT_keyconfig_import(bpy_types.Operator):
|
|
1489
|
+
""" """
|
|
1490
|
+
|
|
1491
|
+
bl_idname: typing.Any
|
|
1492
|
+
""" """
|
|
1493
|
+
|
|
1494
|
+
bl_label: typing.Any
|
|
1495
|
+
""" """
|
|
1496
|
+
|
|
1497
|
+
bl_rna: typing.Any
|
|
1498
|
+
""" """
|
|
1499
|
+
|
|
1500
|
+
id_data: typing.Any
|
|
1501
|
+
""" """
|
|
1502
|
+
|
|
1503
|
+
def as_keywords(self, ignore):
|
|
1504
|
+
"""
|
|
1505
|
+
|
|
1506
|
+
:param ignore:
|
|
1507
|
+
"""
|
|
1508
|
+
...
|
|
1509
|
+
|
|
1510
|
+
def as_pointer(self):
|
|
1511
|
+
""" """
|
|
1512
|
+
...
|
|
1513
|
+
|
|
1514
|
+
def bl_rna_get_subclass(self):
|
|
1515
|
+
""" """
|
|
1516
|
+
...
|
|
1517
|
+
|
|
1518
|
+
def bl_rna_get_subclass_py(self):
|
|
1519
|
+
""" """
|
|
1520
|
+
...
|
|
1521
|
+
|
|
1522
|
+
def driver_add(self):
|
|
1523
|
+
""" """
|
|
1524
|
+
...
|
|
1525
|
+
|
|
1526
|
+
def driver_remove(self):
|
|
1527
|
+
""" """
|
|
1528
|
+
...
|
|
1529
|
+
|
|
1530
|
+
def execute(self, _context):
|
|
1531
|
+
"""
|
|
1532
|
+
|
|
1533
|
+
:param _context:
|
|
1534
|
+
"""
|
|
1535
|
+
...
|
|
1536
|
+
|
|
1537
|
+
def get(self):
|
|
1538
|
+
""" """
|
|
1539
|
+
...
|
|
1540
|
+
|
|
1541
|
+
def id_properties_clear(self):
|
|
1542
|
+
""" """
|
|
1543
|
+
...
|
|
1544
|
+
|
|
1545
|
+
def id_properties_ensure(self):
|
|
1546
|
+
""" """
|
|
1547
|
+
...
|
|
1548
|
+
|
|
1549
|
+
def id_properties_ui(self):
|
|
1550
|
+
""" """
|
|
1551
|
+
...
|
|
1552
|
+
|
|
1553
|
+
def invoke(self, context, _event):
|
|
1554
|
+
"""
|
|
1555
|
+
|
|
1556
|
+
:param context:
|
|
1557
|
+
:param _event:
|
|
1558
|
+
"""
|
|
1559
|
+
...
|
|
1560
|
+
|
|
1561
|
+
def is_property_hidden(self):
|
|
1562
|
+
""" """
|
|
1563
|
+
...
|
|
1564
|
+
|
|
1565
|
+
def is_property_overridable_library(self):
|
|
1566
|
+
""" """
|
|
1567
|
+
...
|
|
1568
|
+
|
|
1569
|
+
def is_property_readonly(self):
|
|
1570
|
+
""" """
|
|
1571
|
+
...
|
|
1572
|
+
|
|
1573
|
+
def is_property_set(self):
|
|
1574
|
+
""" """
|
|
1575
|
+
...
|
|
1576
|
+
|
|
1577
|
+
def items(self):
|
|
1578
|
+
""" """
|
|
1579
|
+
...
|
|
1580
|
+
|
|
1581
|
+
def keyframe_delete(self):
|
|
1582
|
+
""" """
|
|
1583
|
+
...
|
|
1584
|
+
|
|
1585
|
+
def keyframe_insert(self):
|
|
1586
|
+
""" """
|
|
1587
|
+
...
|
|
1588
|
+
|
|
1589
|
+
def keys(self):
|
|
1590
|
+
""" """
|
|
1591
|
+
...
|
|
1592
|
+
|
|
1593
|
+
def path_from_id(self):
|
|
1594
|
+
""" """
|
|
1595
|
+
...
|
|
1596
|
+
|
|
1597
|
+
def path_resolve(self):
|
|
1598
|
+
""" """
|
|
1599
|
+
...
|
|
1600
|
+
|
|
1601
|
+
def poll_message_set(self):
|
|
1602
|
+
""" """
|
|
1603
|
+
...
|
|
1604
|
+
|
|
1605
|
+
def pop(self):
|
|
1606
|
+
""" """
|
|
1607
|
+
...
|
|
1608
|
+
|
|
1609
|
+
def property_overridable_library_set(self):
|
|
1610
|
+
""" """
|
|
1611
|
+
...
|
|
1612
|
+
|
|
1613
|
+
def property_unset(self):
|
|
1614
|
+
""" """
|
|
1615
|
+
...
|
|
1616
|
+
|
|
1617
|
+
def type_recast(self):
|
|
1618
|
+
""" """
|
|
1619
|
+
...
|
|
1620
|
+
|
|
1621
|
+
def values(self):
|
|
1622
|
+
""" """
|
|
1623
|
+
...
|
|
1624
|
+
|
|
1625
|
+
class PREFERENCES_OT_keyconfig_remove(bpy_types.Operator):
|
|
1626
|
+
""" """
|
|
1627
|
+
|
|
1628
|
+
bl_idname: typing.Any
|
|
1629
|
+
""" """
|
|
1630
|
+
|
|
1631
|
+
bl_label: typing.Any
|
|
1632
|
+
""" """
|
|
1633
|
+
|
|
1634
|
+
bl_rna: typing.Any
|
|
1635
|
+
""" """
|
|
1636
|
+
|
|
1637
|
+
id_data: typing.Any
|
|
1638
|
+
""" """
|
|
1639
|
+
|
|
1640
|
+
def as_keywords(self, ignore):
|
|
1641
|
+
"""
|
|
1642
|
+
|
|
1643
|
+
:param ignore:
|
|
1644
|
+
"""
|
|
1645
|
+
...
|
|
1646
|
+
|
|
1647
|
+
def as_pointer(self):
|
|
1648
|
+
""" """
|
|
1649
|
+
...
|
|
1650
|
+
|
|
1651
|
+
def bl_rna_get_subclass(self):
|
|
1652
|
+
""" """
|
|
1653
|
+
...
|
|
1654
|
+
|
|
1655
|
+
def bl_rna_get_subclass_py(self):
|
|
1656
|
+
""" """
|
|
1657
|
+
...
|
|
1658
|
+
|
|
1659
|
+
def driver_add(self):
|
|
1660
|
+
""" """
|
|
1661
|
+
...
|
|
1662
|
+
|
|
1663
|
+
def driver_remove(self):
|
|
1664
|
+
""" """
|
|
1665
|
+
...
|
|
1666
|
+
|
|
1667
|
+
def execute(self, context):
|
|
1668
|
+
"""
|
|
1669
|
+
|
|
1670
|
+
:param context:
|
|
1671
|
+
"""
|
|
1672
|
+
...
|
|
1673
|
+
|
|
1674
|
+
def get(self):
|
|
1675
|
+
""" """
|
|
1676
|
+
...
|
|
1677
|
+
|
|
1678
|
+
def id_properties_clear(self):
|
|
1679
|
+
""" """
|
|
1680
|
+
...
|
|
1681
|
+
|
|
1682
|
+
def id_properties_ensure(self):
|
|
1683
|
+
""" """
|
|
1684
|
+
...
|
|
1685
|
+
|
|
1686
|
+
def id_properties_ui(self):
|
|
1687
|
+
""" """
|
|
1688
|
+
...
|
|
1689
|
+
|
|
1690
|
+
def is_property_hidden(self):
|
|
1691
|
+
""" """
|
|
1692
|
+
...
|
|
1693
|
+
|
|
1694
|
+
def is_property_overridable_library(self):
|
|
1695
|
+
""" """
|
|
1696
|
+
...
|
|
1697
|
+
|
|
1698
|
+
def is_property_readonly(self):
|
|
1699
|
+
""" """
|
|
1700
|
+
...
|
|
1701
|
+
|
|
1702
|
+
def is_property_set(self):
|
|
1703
|
+
""" """
|
|
1704
|
+
...
|
|
1705
|
+
|
|
1706
|
+
def items(self):
|
|
1707
|
+
""" """
|
|
1708
|
+
...
|
|
1709
|
+
|
|
1710
|
+
def keyframe_delete(self):
|
|
1711
|
+
""" """
|
|
1712
|
+
...
|
|
1713
|
+
|
|
1714
|
+
def keyframe_insert(self):
|
|
1715
|
+
""" """
|
|
1716
|
+
...
|
|
1717
|
+
|
|
1718
|
+
def keys(self):
|
|
1719
|
+
""" """
|
|
1720
|
+
...
|
|
1721
|
+
|
|
1722
|
+
def path_from_id(self):
|
|
1723
|
+
""" """
|
|
1724
|
+
...
|
|
1725
|
+
|
|
1726
|
+
def path_resolve(self):
|
|
1727
|
+
""" """
|
|
1728
|
+
...
|
|
1729
|
+
|
|
1730
|
+
def poll(self, context):
|
|
1731
|
+
"""
|
|
1732
|
+
|
|
1733
|
+
:param context:
|
|
1734
|
+
"""
|
|
1735
|
+
...
|
|
1736
|
+
|
|
1737
|
+
def poll_message_set(self):
|
|
1738
|
+
""" """
|
|
1739
|
+
...
|
|
1740
|
+
|
|
1741
|
+
def pop(self):
|
|
1742
|
+
""" """
|
|
1743
|
+
...
|
|
1744
|
+
|
|
1745
|
+
def property_overridable_library_set(self):
|
|
1746
|
+
""" """
|
|
1747
|
+
...
|
|
1748
|
+
|
|
1749
|
+
def property_unset(self):
|
|
1750
|
+
""" """
|
|
1751
|
+
...
|
|
1752
|
+
|
|
1753
|
+
def type_recast(self):
|
|
1754
|
+
""" """
|
|
1755
|
+
...
|
|
1756
|
+
|
|
1757
|
+
def values(self):
|
|
1758
|
+
""" """
|
|
1759
|
+
...
|
|
1760
|
+
|
|
1761
|
+
class PREFERENCES_OT_keyconfig_test(bpy_types.Operator):
|
|
1762
|
+
""" """
|
|
1763
|
+
|
|
1764
|
+
bl_idname: typing.Any
|
|
1765
|
+
""" """
|
|
1766
|
+
|
|
1767
|
+
bl_label: typing.Any
|
|
1768
|
+
""" """
|
|
1769
|
+
|
|
1770
|
+
bl_rna: typing.Any
|
|
1771
|
+
""" """
|
|
1772
|
+
|
|
1773
|
+
id_data: typing.Any
|
|
1774
|
+
""" """
|
|
1775
|
+
|
|
1776
|
+
def as_keywords(self, ignore):
|
|
1777
|
+
"""
|
|
1778
|
+
|
|
1779
|
+
:param ignore:
|
|
1780
|
+
"""
|
|
1781
|
+
...
|
|
1782
|
+
|
|
1783
|
+
def as_pointer(self):
|
|
1784
|
+
""" """
|
|
1785
|
+
...
|
|
1786
|
+
|
|
1787
|
+
def bl_rna_get_subclass(self):
|
|
1788
|
+
""" """
|
|
1789
|
+
...
|
|
1790
|
+
|
|
1791
|
+
def bl_rna_get_subclass_py(self):
|
|
1792
|
+
""" """
|
|
1793
|
+
...
|
|
1794
|
+
|
|
1795
|
+
def driver_add(self):
|
|
1796
|
+
""" """
|
|
1797
|
+
...
|
|
1798
|
+
|
|
1799
|
+
def driver_remove(self):
|
|
1800
|
+
""" """
|
|
1801
|
+
...
|
|
1802
|
+
|
|
1803
|
+
def execute(self, context):
|
|
1804
|
+
"""
|
|
1805
|
+
|
|
1806
|
+
:param context:
|
|
1807
|
+
"""
|
|
1808
|
+
...
|
|
1809
|
+
|
|
1810
|
+
def get(self):
|
|
1811
|
+
""" """
|
|
1812
|
+
...
|
|
1813
|
+
|
|
1814
|
+
def id_properties_clear(self):
|
|
1815
|
+
""" """
|
|
1816
|
+
...
|
|
1817
|
+
|
|
1818
|
+
def id_properties_ensure(self):
|
|
1819
|
+
""" """
|
|
1820
|
+
...
|
|
1821
|
+
|
|
1822
|
+
def id_properties_ui(self):
|
|
1823
|
+
""" """
|
|
1824
|
+
...
|
|
1825
|
+
|
|
1826
|
+
def is_property_hidden(self):
|
|
1827
|
+
""" """
|
|
1828
|
+
...
|
|
1829
|
+
|
|
1830
|
+
def is_property_overridable_library(self):
|
|
1831
|
+
""" """
|
|
1832
|
+
...
|
|
1833
|
+
|
|
1834
|
+
def is_property_readonly(self):
|
|
1835
|
+
""" """
|
|
1836
|
+
...
|
|
1837
|
+
|
|
1838
|
+
def is_property_set(self):
|
|
1839
|
+
""" """
|
|
1840
|
+
...
|
|
1841
|
+
|
|
1842
|
+
def items(self):
|
|
1843
|
+
""" """
|
|
1844
|
+
...
|
|
1845
|
+
|
|
1846
|
+
def keyframe_delete(self):
|
|
1847
|
+
""" """
|
|
1848
|
+
...
|
|
1849
|
+
|
|
1850
|
+
def keyframe_insert(self):
|
|
1851
|
+
""" """
|
|
1852
|
+
...
|
|
1853
|
+
|
|
1854
|
+
def keys(self):
|
|
1855
|
+
""" """
|
|
1856
|
+
...
|
|
1857
|
+
|
|
1858
|
+
def path_from_id(self):
|
|
1859
|
+
""" """
|
|
1860
|
+
...
|
|
1861
|
+
|
|
1862
|
+
def path_resolve(self):
|
|
1863
|
+
""" """
|
|
1864
|
+
...
|
|
1865
|
+
|
|
1866
|
+
def poll_message_set(self):
|
|
1867
|
+
""" """
|
|
1868
|
+
...
|
|
1869
|
+
|
|
1870
|
+
def pop(self):
|
|
1871
|
+
""" """
|
|
1872
|
+
...
|
|
1873
|
+
|
|
1874
|
+
def property_overridable_library_set(self):
|
|
1875
|
+
""" """
|
|
1876
|
+
...
|
|
1877
|
+
|
|
1878
|
+
def property_unset(self):
|
|
1879
|
+
""" """
|
|
1880
|
+
...
|
|
1881
|
+
|
|
1882
|
+
def type_recast(self):
|
|
1883
|
+
""" """
|
|
1884
|
+
...
|
|
1885
|
+
|
|
1886
|
+
def values(self):
|
|
1887
|
+
""" """
|
|
1888
|
+
...
|
|
1889
|
+
|
|
1890
|
+
class PREFERENCES_OT_keyitem_add(bpy_types.Operator):
|
|
1891
|
+
""" """
|
|
1892
|
+
|
|
1893
|
+
bl_idname: typing.Any
|
|
1894
|
+
""" """
|
|
1895
|
+
|
|
1896
|
+
bl_label: typing.Any
|
|
1897
|
+
""" """
|
|
1898
|
+
|
|
1899
|
+
bl_rna: typing.Any
|
|
1900
|
+
""" """
|
|
1901
|
+
|
|
1902
|
+
id_data: typing.Any
|
|
1903
|
+
""" """
|
|
1904
|
+
|
|
1905
|
+
def as_keywords(self, ignore):
|
|
1906
|
+
"""
|
|
1907
|
+
|
|
1908
|
+
:param ignore:
|
|
1909
|
+
"""
|
|
1910
|
+
...
|
|
1911
|
+
|
|
1912
|
+
def as_pointer(self):
|
|
1913
|
+
""" """
|
|
1914
|
+
...
|
|
1915
|
+
|
|
1916
|
+
def bl_rna_get_subclass(self):
|
|
1917
|
+
""" """
|
|
1918
|
+
...
|
|
1919
|
+
|
|
1920
|
+
def bl_rna_get_subclass_py(self):
|
|
1921
|
+
""" """
|
|
1922
|
+
...
|
|
1923
|
+
|
|
1924
|
+
def driver_add(self):
|
|
1925
|
+
""" """
|
|
1926
|
+
...
|
|
1927
|
+
|
|
1928
|
+
def driver_remove(self):
|
|
1929
|
+
""" """
|
|
1930
|
+
...
|
|
1931
|
+
|
|
1932
|
+
def execute(self, context):
|
|
1933
|
+
"""
|
|
1934
|
+
|
|
1935
|
+
:param context:
|
|
1936
|
+
"""
|
|
1937
|
+
...
|
|
1938
|
+
|
|
1939
|
+
def get(self):
|
|
1940
|
+
""" """
|
|
1941
|
+
...
|
|
1942
|
+
|
|
1943
|
+
def id_properties_clear(self):
|
|
1944
|
+
""" """
|
|
1945
|
+
...
|
|
1946
|
+
|
|
1947
|
+
def id_properties_ensure(self):
|
|
1948
|
+
""" """
|
|
1949
|
+
...
|
|
1950
|
+
|
|
1951
|
+
def id_properties_ui(self):
|
|
1952
|
+
""" """
|
|
1953
|
+
...
|
|
1954
|
+
|
|
1955
|
+
def is_property_hidden(self):
|
|
1956
|
+
""" """
|
|
1957
|
+
...
|
|
1958
|
+
|
|
1959
|
+
def is_property_overridable_library(self):
|
|
1960
|
+
""" """
|
|
1961
|
+
...
|
|
1962
|
+
|
|
1963
|
+
def is_property_readonly(self):
|
|
1964
|
+
""" """
|
|
1965
|
+
...
|
|
1966
|
+
|
|
1967
|
+
def is_property_set(self):
|
|
1968
|
+
""" """
|
|
1969
|
+
...
|
|
1970
|
+
|
|
1971
|
+
def items(self):
|
|
1972
|
+
""" """
|
|
1973
|
+
...
|
|
1974
|
+
|
|
1975
|
+
def keyframe_delete(self):
|
|
1976
|
+
""" """
|
|
1977
|
+
...
|
|
1978
|
+
|
|
1979
|
+
def keyframe_insert(self):
|
|
1980
|
+
""" """
|
|
1981
|
+
...
|
|
1982
|
+
|
|
1983
|
+
def keys(self):
|
|
1984
|
+
""" """
|
|
1985
|
+
...
|
|
1986
|
+
|
|
1987
|
+
def path_from_id(self):
|
|
1988
|
+
""" """
|
|
1989
|
+
...
|
|
1990
|
+
|
|
1991
|
+
def path_resolve(self):
|
|
1992
|
+
""" """
|
|
1993
|
+
...
|
|
1994
|
+
|
|
1995
|
+
def poll_message_set(self):
|
|
1996
|
+
""" """
|
|
1997
|
+
...
|
|
1998
|
+
|
|
1999
|
+
def pop(self):
|
|
2000
|
+
""" """
|
|
2001
|
+
...
|
|
2002
|
+
|
|
2003
|
+
def property_overridable_library_set(self):
|
|
2004
|
+
""" """
|
|
2005
|
+
...
|
|
2006
|
+
|
|
2007
|
+
def property_unset(self):
|
|
2008
|
+
""" """
|
|
2009
|
+
...
|
|
2010
|
+
|
|
2011
|
+
def type_recast(self):
|
|
2012
|
+
""" """
|
|
2013
|
+
...
|
|
2014
|
+
|
|
2015
|
+
def values(self):
|
|
2016
|
+
""" """
|
|
2017
|
+
...
|
|
2018
|
+
|
|
2019
|
+
class PREFERENCES_OT_keyitem_remove(bpy_types.Operator):
|
|
2020
|
+
""" """
|
|
2021
|
+
|
|
2022
|
+
bl_idname: typing.Any
|
|
2023
|
+
""" """
|
|
2024
|
+
|
|
2025
|
+
bl_label: typing.Any
|
|
2026
|
+
""" """
|
|
2027
|
+
|
|
2028
|
+
bl_rna: typing.Any
|
|
2029
|
+
""" """
|
|
2030
|
+
|
|
2031
|
+
id_data: typing.Any
|
|
2032
|
+
""" """
|
|
2033
|
+
|
|
2034
|
+
def as_keywords(self, ignore):
|
|
2035
|
+
"""
|
|
2036
|
+
|
|
2037
|
+
:param ignore:
|
|
2038
|
+
"""
|
|
2039
|
+
...
|
|
2040
|
+
|
|
2041
|
+
def as_pointer(self):
|
|
2042
|
+
""" """
|
|
2043
|
+
...
|
|
2044
|
+
|
|
2045
|
+
def bl_rna_get_subclass(self):
|
|
2046
|
+
""" """
|
|
2047
|
+
...
|
|
2048
|
+
|
|
2049
|
+
def bl_rna_get_subclass_py(self):
|
|
2050
|
+
""" """
|
|
2051
|
+
...
|
|
2052
|
+
|
|
2053
|
+
def driver_add(self):
|
|
2054
|
+
""" """
|
|
2055
|
+
...
|
|
2056
|
+
|
|
2057
|
+
def driver_remove(self):
|
|
2058
|
+
""" """
|
|
2059
|
+
...
|
|
2060
|
+
|
|
2061
|
+
def execute(self, context):
|
|
2062
|
+
"""
|
|
2063
|
+
|
|
2064
|
+
:param context:
|
|
2065
|
+
"""
|
|
2066
|
+
...
|
|
2067
|
+
|
|
2068
|
+
def get(self):
|
|
2069
|
+
""" """
|
|
2070
|
+
...
|
|
2071
|
+
|
|
2072
|
+
def id_properties_clear(self):
|
|
2073
|
+
""" """
|
|
2074
|
+
...
|
|
2075
|
+
|
|
2076
|
+
def id_properties_ensure(self):
|
|
2077
|
+
""" """
|
|
2078
|
+
...
|
|
2079
|
+
|
|
2080
|
+
def id_properties_ui(self):
|
|
2081
|
+
""" """
|
|
2082
|
+
...
|
|
2083
|
+
|
|
2084
|
+
def is_property_hidden(self):
|
|
2085
|
+
""" """
|
|
2086
|
+
...
|
|
2087
|
+
|
|
2088
|
+
def is_property_overridable_library(self):
|
|
2089
|
+
""" """
|
|
2090
|
+
...
|
|
2091
|
+
|
|
2092
|
+
def is_property_readonly(self):
|
|
2093
|
+
""" """
|
|
2094
|
+
...
|
|
2095
|
+
|
|
2096
|
+
def is_property_set(self):
|
|
2097
|
+
""" """
|
|
2098
|
+
...
|
|
2099
|
+
|
|
2100
|
+
def items(self):
|
|
2101
|
+
""" """
|
|
2102
|
+
...
|
|
2103
|
+
|
|
2104
|
+
def keyframe_delete(self):
|
|
2105
|
+
""" """
|
|
2106
|
+
...
|
|
2107
|
+
|
|
2108
|
+
def keyframe_insert(self):
|
|
2109
|
+
""" """
|
|
2110
|
+
...
|
|
2111
|
+
|
|
2112
|
+
def keys(self):
|
|
2113
|
+
""" """
|
|
2114
|
+
...
|
|
2115
|
+
|
|
2116
|
+
def path_from_id(self):
|
|
2117
|
+
""" """
|
|
2118
|
+
...
|
|
2119
|
+
|
|
2120
|
+
def path_resolve(self):
|
|
2121
|
+
""" """
|
|
2122
|
+
...
|
|
2123
|
+
|
|
2124
|
+
def poll(self, context):
|
|
2125
|
+
"""
|
|
2126
|
+
|
|
2127
|
+
:param context:
|
|
2128
|
+
"""
|
|
2129
|
+
...
|
|
2130
|
+
|
|
2131
|
+
def poll_message_set(self):
|
|
2132
|
+
""" """
|
|
2133
|
+
...
|
|
2134
|
+
|
|
2135
|
+
def pop(self):
|
|
2136
|
+
""" """
|
|
2137
|
+
...
|
|
2138
|
+
|
|
2139
|
+
def property_overridable_library_set(self):
|
|
2140
|
+
""" """
|
|
2141
|
+
...
|
|
2142
|
+
|
|
2143
|
+
def property_unset(self):
|
|
2144
|
+
""" """
|
|
2145
|
+
...
|
|
2146
|
+
|
|
2147
|
+
def type_recast(self):
|
|
2148
|
+
""" """
|
|
2149
|
+
...
|
|
2150
|
+
|
|
2151
|
+
def values(self):
|
|
2152
|
+
""" """
|
|
2153
|
+
...
|
|
2154
|
+
|
|
2155
|
+
class PREFERENCES_OT_keyitem_restore(bpy_types.Operator):
|
|
2156
|
+
""" """
|
|
2157
|
+
|
|
2158
|
+
bl_idname: typing.Any
|
|
2159
|
+
""" """
|
|
2160
|
+
|
|
2161
|
+
bl_label: typing.Any
|
|
2162
|
+
""" """
|
|
2163
|
+
|
|
2164
|
+
bl_rna: typing.Any
|
|
2165
|
+
""" """
|
|
2166
|
+
|
|
2167
|
+
id_data: typing.Any
|
|
2168
|
+
""" """
|
|
2169
|
+
|
|
2170
|
+
def as_keywords(self, ignore):
|
|
2171
|
+
"""
|
|
2172
|
+
|
|
2173
|
+
:param ignore:
|
|
2174
|
+
"""
|
|
2175
|
+
...
|
|
2176
|
+
|
|
2177
|
+
def as_pointer(self):
|
|
2178
|
+
""" """
|
|
2179
|
+
...
|
|
2180
|
+
|
|
2181
|
+
def bl_rna_get_subclass(self):
|
|
2182
|
+
""" """
|
|
2183
|
+
...
|
|
2184
|
+
|
|
2185
|
+
def bl_rna_get_subclass_py(self):
|
|
2186
|
+
""" """
|
|
2187
|
+
...
|
|
2188
|
+
|
|
2189
|
+
def driver_add(self):
|
|
2190
|
+
""" """
|
|
2191
|
+
...
|
|
2192
|
+
|
|
2193
|
+
def driver_remove(self):
|
|
2194
|
+
""" """
|
|
2195
|
+
...
|
|
2196
|
+
|
|
2197
|
+
def execute(self, context):
|
|
2198
|
+
"""
|
|
2199
|
+
|
|
2200
|
+
:param context:
|
|
2201
|
+
"""
|
|
2202
|
+
...
|
|
2203
|
+
|
|
2204
|
+
def get(self):
|
|
2205
|
+
""" """
|
|
2206
|
+
...
|
|
2207
|
+
|
|
2208
|
+
def id_properties_clear(self):
|
|
2209
|
+
""" """
|
|
2210
|
+
...
|
|
2211
|
+
|
|
2212
|
+
def id_properties_ensure(self):
|
|
2213
|
+
""" """
|
|
2214
|
+
...
|
|
2215
|
+
|
|
2216
|
+
def id_properties_ui(self):
|
|
2217
|
+
""" """
|
|
2218
|
+
...
|
|
2219
|
+
|
|
2220
|
+
def is_property_hidden(self):
|
|
2221
|
+
""" """
|
|
2222
|
+
...
|
|
2223
|
+
|
|
2224
|
+
def is_property_overridable_library(self):
|
|
2225
|
+
""" """
|
|
2226
|
+
...
|
|
2227
|
+
|
|
2228
|
+
def is_property_readonly(self):
|
|
2229
|
+
""" """
|
|
2230
|
+
...
|
|
2231
|
+
|
|
2232
|
+
def is_property_set(self):
|
|
2233
|
+
""" """
|
|
2234
|
+
...
|
|
2235
|
+
|
|
2236
|
+
def items(self):
|
|
2237
|
+
""" """
|
|
2238
|
+
...
|
|
2239
|
+
|
|
2240
|
+
def keyframe_delete(self):
|
|
2241
|
+
""" """
|
|
2242
|
+
...
|
|
2243
|
+
|
|
2244
|
+
def keyframe_insert(self):
|
|
2245
|
+
""" """
|
|
2246
|
+
...
|
|
2247
|
+
|
|
2248
|
+
def keys(self):
|
|
2249
|
+
""" """
|
|
2250
|
+
...
|
|
2251
|
+
|
|
2252
|
+
def path_from_id(self):
|
|
2253
|
+
""" """
|
|
2254
|
+
...
|
|
2255
|
+
|
|
2256
|
+
def path_resolve(self):
|
|
2257
|
+
""" """
|
|
2258
|
+
...
|
|
2259
|
+
|
|
2260
|
+
def poll(self, context):
|
|
2261
|
+
"""
|
|
2262
|
+
|
|
2263
|
+
:param context:
|
|
2264
|
+
"""
|
|
2265
|
+
...
|
|
2266
|
+
|
|
2267
|
+
def poll_message_set(self):
|
|
2268
|
+
""" """
|
|
2269
|
+
...
|
|
2270
|
+
|
|
2271
|
+
def pop(self):
|
|
2272
|
+
""" """
|
|
2273
|
+
...
|
|
2274
|
+
|
|
2275
|
+
def property_overridable_library_set(self):
|
|
2276
|
+
""" """
|
|
2277
|
+
...
|
|
2278
|
+
|
|
2279
|
+
def property_unset(self):
|
|
2280
|
+
""" """
|
|
2281
|
+
...
|
|
2282
|
+
|
|
2283
|
+
def type_recast(self):
|
|
2284
|
+
""" """
|
|
2285
|
+
...
|
|
2286
|
+
|
|
2287
|
+
def values(self):
|
|
2288
|
+
""" """
|
|
2289
|
+
...
|
|
2290
|
+
|
|
2291
|
+
class PREFERENCES_OT_keymap_restore(bpy_types.Operator):
|
|
2292
|
+
""" """
|
|
2293
|
+
|
|
2294
|
+
bl_idname: typing.Any
|
|
2295
|
+
""" """
|
|
2296
|
+
|
|
2297
|
+
bl_label: typing.Any
|
|
2298
|
+
""" """
|
|
2299
|
+
|
|
2300
|
+
bl_rna: typing.Any
|
|
2301
|
+
""" """
|
|
2302
|
+
|
|
2303
|
+
id_data: typing.Any
|
|
2304
|
+
""" """
|
|
2305
|
+
|
|
2306
|
+
def as_keywords(self, ignore):
|
|
2307
|
+
"""
|
|
2308
|
+
|
|
2309
|
+
:param ignore:
|
|
2310
|
+
"""
|
|
2311
|
+
...
|
|
2312
|
+
|
|
2313
|
+
def as_pointer(self):
|
|
2314
|
+
""" """
|
|
2315
|
+
...
|
|
2316
|
+
|
|
2317
|
+
def bl_rna_get_subclass(self):
|
|
2318
|
+
""" """
|
|
2319
|
+
...
|
|
2320
|
+
|
|
2321
|
+
def bl_rna_get_subclass_py(self):
|
|
2322
|
+
""" """
|
|
2323
|
+
...
|
|
2324
|
+
|
|
2325
|
+
def driver_add(self):
|
|
2326
|
+
""" """
|
|
2327
|
+
...
|
|
2328
|
+
|
|
2329
|
+
def driver_remove(self):
|
|
2330
|
+
""" """
|
|
2331
|
+
...
|
|
2332
|
+
|
|
2333
|
+
def execute(self, context):
|
|
2334
|
+
"""
|
|
2335
|
+
|
|
2336
|
+
:param context:
|
|
2337
|
+
"""
|
|
2338
|
+
...
|
|
2339
|
+
|
|
2340
|
+
def get(self):
|
|
2341
|
+
""" """
|
|
2342
|
+
...
|
|
2343
|
+
|
|
2344
|
+
def id_properties_clear(self):
|
|
2345
|
+
""" """
|
|
2346
|
+
...
|
|
2347
|
+
|
|
2348
|
+
def id_properties_ensure(self):
|
|
2349
|
+
""" """
|
|
2350
|
+
...
|
|
2351
|
+
|
|
2352
|
+
def id_properties_ui(self):
|
|
2353
|
+
""" """
|
|
2354
|
+
...
|
|
2355
|
+
|
|
2356
|
+
def is_property_hidden(self):
|
|
2357
|
+
""" """
|
|
2358
|
+
...
|
|
2359
|
+
|
|
2360
|
+
def is_property_overridable_library(self):
|
|
2361
|
+
""" """
|
|
2362
|
+
...
|
|
2363
|
+
|
|
2364
|
+
def is_property_readonly(self):
|
|
2365
|
+
""" """
|
|
2366
|
+
...
|
|
2367
|
+
|
|
2368
|
+
def is_property_set(self):
|
|
2369
|
+
""" """
|
|
2370
|
+
...
|
|
2371
|
+
|
|
2372
|
+
def items(self):
|
|
2373
|
+
""" """
|
|
2374
|
+
...
|
|
2375
|
+
|
|
2376
|
+
def keyframe_delete(self):
|
|
2377
|
+
""" """
|
|
2378
|
+
...
|
|
2379
|
+
|
|
2380
|
+
def keyframe_insert(self):
|
|
2381
|
+
""" """
|
|
2382
|
+
...
|
|
2383
|
+
|
|
2384
|
+
def keys(self):
|
|
2385
|
+
""" """
|
|
2386
|
+
...
|
|
2387
|
+
|
|
2388
|
+
def path_from_id(self):
|
|
2389
|
+
""" """
|
|
2390
|
+
...
|
|
2391
|
+
|
|
2392
|
+
def path_resolve(self):
|
|
2393
|
+
""" """
|
|
2394
|
+
...
|
|
2395
|
+
|
|
2396
|
+
def poll_message_set(self):
|
|
2397
|
+
""" """
|
|
2398
|
+
...
|
|
2399
|
+
|
|
2400
|
+
def pop(self):
|
|
2401
|
+
""" """
|
|
2402
|
+
...
|
|
2403
|
+
|
|
2404
|
+
def property_overridable_library_set(self):
|
|
2405
|
+
""" """
|
|
2406
|
+
...
|
|
2407
|
+
|
|
2408
|
+
def property_unset(self):
|
|
2409
|
+
""" """
|
|
2410
|
+
...
|
|
2411
|
+
|
|
2412
|
+
def type_recast(self):
|
|
2413
|
+
""" """
|
|
2414
|
+
...
|
|
2415
|
+
|
|
2416
|
+
def values(self):
|
|
2417
|
+
""" """
|
|
2418
|
+
...
|
|
2419
|
+
|
|
2420
|
+
class PREFERENCES_OT_script_directory_new(bpy_types.Operator):
|
|
2421
|
+
""" """
|
|
2422
|
+
|
|
2423
|
+
bl_idname: typing.Any
|
|
2424
|
+
""" """
|
|
2425
|
+
|
|
2426
|
+
bl_label: typing.Any
|
|
2427
|
+
""" """
|
|
2428
|
+
|
|
2429
|
+
bl_rna: typing.Any
|
|
2430
|
+
""" """
|
|
2431
|
+
|
|
2432
|
+
id_data: typing.Any
|
|
2433
|
+
""" """
|
|
2434
|
+
|
|
2435
|
+
def as_keywords(self, ignore):
|
|
2436
|
+
"""
|
|
2437
|
+
|
|
2438
|
+
:param ignore:
|
|
2439
|
+
"""
|
|
2440
|
+
...
|
|
2441
|
+
|
|
2442
|
+
def as_pointer(self):
|
|
2443
|
+
""" """
|
|
2444
|
+
...
|
|
2445
|
+
|
|
2446
|
+
def bl_rna_get_subclass(self):
|
|
2447
|
+
""" """
|
|
2448
|
+
...
|
|
2449
|
+
|
|
2450
|
+
def bl_rna_get_subclass_py(self):
|
|
2451
|
+
""" """
|
|
2452
|
+
...
|
|
2453
|
+
|
|
2454
|
+
def driver_add(self):
|
|
2455
|
+
""" """
|
|
2456
|
+
...
|
|
2457
|
+
|
|
2458
|
+
def driver_remove(self):
|
|
2459
|
+
""" """
|
|
2460
|
+
...
|
|
2461
|
+
|
|
2462
|
+
def execute(self, context):
|
|
2463
|
+
"""
|
|
2464
|
+
|
|
2465
|
+
:param context:
|
|
2466
|
+
"""
|
|
2467
|
+
...
|
|
2468
|
+
|
|
2469
|
+
def get(self):
|
|
2470
|
+
""" """
|
|
2471
|
+
...
|
|
2472
|
+
|
|
2473
|
+
def id_properties_clear(self):
|
|
2474
|
+
""" """
|
|
2475
|
+
...
|
|
2476
|
+
|
|
2477
|
+
def id_properties_ensure(self):
|
|
2478
|
+
""" """
|
|
2479
|
+
...
|
|
2480
|
+
|
|
2481
|
+
def id_properties_ui(self):
|
|
2482
|
+
""" """
|
|
2483
|
+
...
|
|
2484
|
+
|
|
2485
|
+
def invoke(self, context, _event):
|
|
2486
|
+
"""
|
|
2487
|
+
|
|
2488
|
+
:param context:
|
|
2489
|
+
:param _event:
|
|
2490
|
+
"""
|
|
2491
|
+
...
|
|
2492
|
+
|
|
2493
|
+
def is_property_hidden(self):
|
|
2494
|
+
""" """
|
|
2495
|
+
...
|
|
2496
|
+
|
|
2497
|
+
def is_property_overridable_library(self):
|
|
2498
|
+
""" """
|
|
2499
|
+
...
|
|
2500
|
+
|
|
2501
|
+
def is_property_readonly(self):
|
|
2502
|
+
""" """
|
|
2503
|
+
...
|
|
2504
|
+
|
|
2505
|
+
def is_property_set(self):
|
|
2506
|
+
""" """
|
|
2507
|
+
...
|
|
2508
|
+
|
|
2509
|
+
def items(self):
|
|
2510
|
+
""" """
|
|
2511
|
+
...
|
|
2512
|
+
|
|
2513
|
+
def keyframe_delete(self):
|
|
2514
|
+
""" """
|
|
2515
|
+
...
|
|
2516
|
+
|
|
2517
|
+
def keyframe_insert(self):
|
|
2518
|
+
""" """
|
|
2519
|
+
...
|
|
2520
|
+
|
|
2521
|
+
def keys(self):
|
|
2522
|
+
""" """
|
|
2523
|
+
...
|
|
2524
|
+
|
|
2525
|
+
def path_from_id(self):
|
|
2526
|
+
""" """
|
|
2527
|
+
...
|
|
2528
|
+
|
|
2529
|
+
def path_resolve(self):
|
|
2530
|
+
""" """
|
|
2531
|
+
...
|
|
2532
|
+
|
|
2533
|
+
def poll_message_set(self):
|
|
2534
|
+
""" """
|
|
2535
|
+
...
|
|
2536
|
+
|
|
2537
|
+
def pop(self):
|
|
2538
|
+
""" """
|
|
2539
|
+
...
|
|
2540
|
+
|
|
2541
|
+
def property_overridable_library_set(self):
|
|
2542
|
+
""" """
|
|
2543
|
+
...
|
|
2544
|
+
|
|
2545
|
+
def property_unset(self):
|
|
2546
|
+
""" """
|
|
2547
|
+
...
|
|
2548
|
+
|
|
2549
|
+
def type_recast(self):
|
|
2550
|
+
""" """
|
|
2551
|
+
...
|
|
2552
|
+
|
|
2553
|
+
def values(self):
|
|
2554
|
+
""" """
|
|
2555
|
+
...
|
|
2556
|
+
|
|
2557
|
+
class PREFERENCES_OT_script_directory_remove(bpy_types.Operator):
|
|
2558
|
+
""" """
|
|
2559
|
+
|
|
2560
|
+
bl_idname: typing.Any
|
|
2561
|
+
""" """
|
|
2562
|
+
|
|
2563
|
+
bl_label: typing.Any
|
|
2564
|
+
""" """
|
|
2565
|
+
|
|
2566
|
+
bl_rna: typing.Any
|
|
2567
|
+
""" """
|
|
2568
|
+
|
|
2569
|
+
id_data: typing.Any
|
|
2570
|
+
""" """
|
|
2571
|
+
|
|
2572
|
+
def as_keywords(self, ignore):
|
|
2573
|
+
"""
|
|
2574
|
+
|
|
2575
|
+
:param ignore:
|
|
2576
|
+
"""
|
|
2577
|
+
...
|
|
2578
|
+
|
|
2579
|
+
def as_pointer(self):
|
|
2580
|
+
""" """
|
|
2581
|
+
...
|
|
2582
|
+
|
|
2583
|
+
def bl_rna_get_subclass(self):
|
|
2584
|
+
""" """
|
|
2585
|
+
...
|
|
2586
|
+
|
|
2587
|
+
def bl_rna_get_subclass_py(self):
|
|
2588
|
+
""" """
|
|
2589
|
+
...
|
|
2590
|
+
|
|
2591
|
+
def driver_add(self):
|
|
2592
|
+
""" """
|
|
2593
|
+
...
|
|
2594
|
+
|
|
2595
|
+
def driver_remove(self):
|
|
2596
|
+
""" """
|
|
2597
|
+
...
|
|
2598
|
+
|
|
2599
|
+
def execute(self, context):
|
|
2600
|
+
"""
|
|
2601
|
+
|
|
2602
|
+
:param context:
|
|
2603
|
+
"""
|
|
2604
|
+
...
|
|
2605
|
+
|
|
2606
|
+
def get(self):
|
|
2607
|
+
""" """
|
|
2608
|
+
...
|
|
2609
|
+
|
|
2610
|
+
def id_properties_clear(self):
|
|
2611
|
+
""" """
|
|
2612
|
+
...
|
|
2613
|
+
|
|
2614
|
+
def id_properties_ensure(self):
|
|
2615
|
+
""" """
|
|
2616
|
+
...
|
|
2617
|
+
|
|
2618
|
+
def id_properties_ui(self):
|
|
2619
|
+
""" """
|
|
2620
|
+
...
|
|
2621
|
+
|
|
2622
|
+
def is_property_hidden(self):
|
|
2623
|
+
""" """
|
|
2624
|
+
...
|
|
2625
|
+
|
|
2626
|
+
def is_property_overridable_library(self):
|
|
2627
|
+
""" """
|
|
2628
|
+
...
|
|
2629
|
+
|
|
2630
|
+
def is_property_readonly(self):
|
|
2631
|
+
""" """
|
|
2632
|
+
...
|
|
2633
|
+
|
|
2634
|
+
def is_property_set(self):
|
|
2635
|
+
""" """
|
|
2636
|
+
...
|
|
2637
|
+
|
|
2638
|
+
def items(self):
|
|
2639
|
+
""" """
|
|
2640
|
+
...
|
|
2641
|
+
|
|
2642
|
+
def keyframe_delete(self):
|
|
2643
|
+
""" """
|
|
2644
|
+
...
|
|
2645
|
+
|
|
2646
|
+
def keyframe_insert(self):
|
|
2647
|
+
""" """
|
|
2648
|
+
...
|
|
2649
|
+
|
|
2650
|
+
def keys(self):
|
|
2651
|
+
""" """
|
|
2652
|
+
...
|
|
2653
|
+
|
|
2654
|
+
def path_from_id(self):
|
|
2655
|
+
""" """
|
|
2656
|
+
...
|
|
2657
|
+
|
|
2658
|
+
def path_resolve(self):
|
|
2659
|
+
""" """
|
|
2660
|
+
...
|
|
2661
|
+
|
|
2662
|
+
def poll_message_set(self):
|
|
2663
|
+
""" """
|
|
2664
|
+
...
|
|
2665
|
+
|
|
2666
|
+
def pop(self):
|
|
2667
|
+
""" """
|
|
2668
|
+
...
|
|
2669
|
+
|
|
2670
|
+
def property_overridable_library_set(self):
|
|
2671
|
+
""" """
|
|
2672
|
+
...
|
|
2673
|
+
|
|
2674
|
+
def property_unset(self):
|
|
2675
|
+
""" """
|
|
2676
|
+
...
|
|
2677
|
+
|
|
2678
|
+
def type_recast(self):
|
|
2679
|
+
""" """
|
|
2680
|
+
...
|
|
2681
|
+
|
|
2682
|
+
def values(self):
|
|
2683
|
+
""" """
|
|
2684
|
+
...
|
|
2685
|
+
|
|
2686
|
+
class PREFERENCES_OT_studiolight_copy_settings(bpy_types.Operator):
|
|
2687
|
+
""" """
|
|
2688
|
+
|
|
2689
|
+
bl_idname: typing.Any
|
|
2690
|
+
""" """
|
|
2691
|
+
|
|
2692
|
+
bl_label: typing.Any
|
|
2693
|
+
""" """
|
|
2694
|
+
|
|
2695
|
+
bl_rna: typing.Any
|
|
2696
|
+
""" """
|
|
2697
|
+
|
|
2698
|
+
id_data: typing.Any
|
|
2699
|
+
""" """
|
|
2700
|
+
|
|
2701
|
+
def as_keywords(self, ignore):
|
|
2702
|
+
"""
|
|
2703
|
+
|
|
2704
|
+
:param ignore:
|
|
2705
|
+
"""
|
|
2706
|
+
...
|
|
2707
|
+
|
|
2708
|
+
def as_pointer(self):
|
|
2709
|
+
""" """
|
|
2710
|
+
...
|
|
2711
|
+
|
|
2712
|
+
def bl_rna_get_subclass(self):
|
|
2713
|
+
""" """
|
|
2714
|
+
...
|
|
2715
|
+
|
|
2716
|
+
def bl_rna_get_subclass_py(self):
|
|
2717
|
+
""" """
|
|
2718
|
+
...
|
|
2719
|
+
|
|
2720
|
+
def driver_add(self):
|
|
2721
|
+
""" """
|
|
2722
|
+
...
|
|
2723
|
+
|
|
2724
|
+
def driver_remove(self):
|
|
2725
|
+
""" """
|
|
2726
|
+
...
|
|
2727
|
+
|
|
2728
|
+
def execute(self, context):
|
|
2729
|
+
"""
|
|
2730
|
+
|
|
2731
|
+
:param context:
|
|
2732
|
+
"""
|
|
2733
|
+
...
|
|
2734
|
+
|
|
2735
|
+
def get(self):
|
|
2736
|
+
""" """
|
|
2737
|
+
...
|
|
2738
|
+
|
|
2739
|
+
def id_properties_clear(self):
|
|
2740
|
+
""" """
|
|
2741
|
+
...
|
|
2742
|
+
|
|
2743
|
+
def id_properties_ensure(self):
|
|
2744
|
+
""" """
|
|
2745
|
+
...
|
|
2746
|
+
|
|
2747
|
+
def id_properties_ui(self):
|
|
2748
|
+
""" """
|
|
2749
|
+
...
|
|
2750
|
+
|
|
2751
|
+
def is_property_hidden(self):
|
|
2752
|
+
""" """
|
|
2753
|
+
...
|
|
2754
|
+
|
|
2755
|
+
def is_property_overridable_library(self):
|
|
2756
|
+
""" """
|
|
2757
|
+
...
|
|
2758
|
+
|
|
2759
|
+
def is_property_readonly(self):
|
|
2760
|
+
""" """
|
|
2761
|
+
...
|
|
2762
|
+
|
|
2763
|
+
def is_property_set(self):
|
|
2764
|
+
""" """
|
|
2765
|
+
...
|
|
2766
|
+
|
|
2767
|
+
def items(self):
|
|
2768
|
+
""" """
|
|
2769
|
+
...
|
|
2770
|
+
|
|
2771
|
+
def keyframe_delete(self):
|
|
2772
|
+
""" """
|
|
2773
|
+
...
|
|
2774
|
+
|
|
2775
|
+
def keyframe_insert(self):
|
|
2776
|
+
""" """
|
|
2777
|
+
...
|
|
2778
|
+
|
|
2779
|
+
def keys(self):
|
|
2780
|
+
""" """
|
|
2781
|
+
...
|
|
2782
|
+
|
|
2783
|
+
def path_from_id(self):
|
|
2784
|
+
""" """
|
|
2785
|
+
...
|
|
2786
|
+
|
|
2787
|
+
def path_resolve(self):
|
|
2788
|
+
""" """
|
|
2789
|
+
...
|
|
2790
|
+
|
|
2791
|
+
def poll_message_set(self):
|
|
2792
|
+
""" """
|
|
2793
|
+
...
|
|
2794
|
+
|
|
2795
|
+
def pop(self):
|
|
2796
|
+
""" """
|
|
2797
|
+
...
|
|
2798
|
+
|
|
2799
|
+
def property_overridable_library_set(self):
|
|
2800
|
+
""" """
|
|
2801
|
+
...
|
|
2802
|
+
|
|
2803
|
+
def property_unset(self):
|
|
2804
|
+
""" """
|
|
2805
|
+
...
|
|
2806
|
+
|
|
2807
|
+
def type_recast(self):
|
|
2808
|
+
""" """
|
|
2809
|
+
...
|
|
2810
|
+
|
|
2811
|
+
def values(self):
|
|
2812
|
+
""" """
|
|
2813
|
+
...
|
|
2814
|
+
|
|
2815
|
+
class PREFERENCES_OT_studiolight_install(bpy_types.Operator):
|
|
2816
|
+
""" """
|
|
2817
|
+
|
|
2818
|
+
bl_idname: typing.Any
|
|
2819
|
+
""" """
|
|
2820
|
+
|
|
2821
|
+
bl_label: typing.Any
|
|
2822
|
+
""" """
|
|
2823
|
+
|
|
2824
|
+
bl_rna: typing.Any
|
|
2825
|
+
""" """
|
|
2826
|
+
|
|
2827
|
+
id_data: typing.Any
|
|
2828
|
+
""" """
|
|
2829
|
+
|
|
2830
|
+
def as_keywords(self, ignore):
|
|
2831
|
+
"""
|
|
2832
|
+
|
|
2833
|
+
:param ignore:
|
|
2834
|
+
"""
|
|
2835
|
+
...
|
|
2836
|
+
|
|
2837
|
+
def as_pointer(self):
|
|
2838
|
+
""" """
|
|
2839
|
+
...
|
|
2840
|
+
|
|
2841
|
+
def bl_rna_get_subclass(self):
|
|
2842
|
+
""" """
|
|
2843
|
+
...
|
|
2844
|
+
|
|
2845
|
+
def bl_rna_get_subclass_py(self):
|
|
2846
|
+
""" """
|
|
2847
|
+
...
|
|
2848
|
+
|
|
2849
|
+
def driver_add(self):
|
|
2850
|
+
""" """
|
|
2851
|
+
...
|
|
2852
|
+
|
|
2853
|
+
def driver_remove(self):
|
|
2854
|
+
""" """
|
|
2855
|
+
...
|
|
2856
|
+
|
|
2857
|
+
def execute(self, context):
|
|
2858
|
+
"""
|
|
2859
|
+
|
|
2860
|
+
:param context:
|
|
2861
|
+
"""
|
|
2862
|
+
...
|
|
2863
|
+
|
|
2864
|
+
def get(self):
|
|
2865
|
+
""" """
|
|
2866
|
+
...
|
|
2867
|
+
|
|
2868
|
+
def id_properties_clear(self):
|
|
2869
|
+
""" """
|
|
2870
|
+
...
|
|
2871
|
+
|
|
2872
|
+
def id_properties_ensure(self):
|
|
2873
|
+
""" """
|
|
2874
|
+
...
|
|
2875
|
+
|
|
2876
|
+
def id_properties_ui(self):
|
|
2877
|
+
""" """
|
|
2878
|
+
...
|
|
2879
|
+
|
|
2880
|
+
def invoke(self, context, _event):
|
|
2881
|
+
"""
|
|
2882
|
+
|
|
2883
|
+
:param context:
|
|
2884
|
+
:param _event:
|
|
2885
|
+
"""
|
|
2886
|
+
...
|
|
2887
|
+
|
|
2888
|
+
def is_property_hidden(self):
|
|
2889
|
+
""" """
|
|
2890
|
+
...
|
|
2891
|
+
|
|
2892
|
+
def is_property_overridable_library(self):
|
|
2893
|
+
""" """
|
|
2894
|
+
...
|
|
2895
|
+
|
|
2896
|
+
def is_property_readonly(self):
|
|
2897
|
+
""" """
|
|
2898
|
+
...
|
|
2899
|
+
|
|
2900
|
+
def is_property_set(self):
|
|
2901
|
+
""" """
|
|
2902
|
+
...
|
|
2903
|
+
|
|
2904
|
+
def items(self):
|
|
2905
|
+
""" """
|
|
2906
|
+
...
|
|
2907
|
+
|
|
2908
|
+
def keyframe_delete(self):
|
|
2909
|
+
""" """
|
|
2910
|
+
...
|
|
2911
|
+
|
|
2912
|
+
def keyframe_insert(self):
|
|
2913
|
+
""" """
|
|
2914
|
+
...
|
|
2915
|
+
|
|
2916
|
+
def keys(self):
|
|
2917
|
+
""" """
|
|
2918
|
+
...
|
|
2919
|
+
|
|
2920
|
+
def path_from_id(self):
|
|
2921
|
+
""" """
|
|
2922
|
+
...
|
|
2923
|
+
|
|
2924
|
+
def path_resolve(self):
|
|
2925
|
+
""" """
|
|
2926
|
+
...
|
|
2927
|
+
|
|
2928
|
+
def poll_message_set(self):
|
|
2929
|
+
""" """
|
|
2930
|
+
...
|
|
2931
|
+
|
|
2932
|
+
def pop(self):
|
|
2933
|
+
""" """
|
|
2934
|
+
...
|
|
2935
|
+
|
|
2936
|
+
def property_overridable_library_set(self):
|
|
2937
|
+
""" """
|
|
2938
|
+
...
|
|
2939
|
+
|
|
2940
|
+
def property_unset(self):
|
|
2941
|
+
""" """
|
|
2942
|
+
...
|
|
2943
|
+
|
|
2944
|
+
def type_recast(self):
|
|
2945
|
+
""" """
|
|
2946
|
+
...
|
|
2947
|
+
|
|
2948
|
+
def values(self):
|
|
2949
|
+
""" """
|
|
2950
|
+
...
|
|
2951
|
+
|
|
2952
|
+
class PREFERENCES_OT_studiolight_new(bpy_types.Operator):
|
|
2953
|
+
""" """
|
|
2954
|
+
|
|
2955
|
+
ask_override: typing.Any
|
|
2956
|
+
""" """
|
|
2957
|
+
|
|
2958
|
+
bl_idname: typing.Any
|
|
2959
|
+
""" """
|
|
2960
|
+
|
|
2961
|
+
bl_label: typing.Any
|
|
2962
|
+
""" """
|
|
2963
|
+
|
|
2964
|
+
bl_rna: typing.Any
|
|
2965
|
+
""" """
|
|
2966
|
+
|
|
2967
|
+
id_data: typing.Any
|
|
2968
|
+
""" """
|
|
2969
|
+
|
|
2970
|
+
def as_keywords(self, ignore):
|
|
2971
|
+
"""
|
|
2972
|
+
|
|
2973
|
+
:param ignore:
|
|
2974
|
+
"""
|
|
2975
|
+
...
|
|
2976
|
+
|
|
2977
|
+
def as_pointer(self):
|
|
2978
|
+
""" """
|
|
2979
|
+
...
|
|
2980
|
+
|
|
2981
|
+
def bl_rna_get_subclass(self):
|
|
2982
|
+
""" """
|
|
2983
|
+
...
|
|
2984
|
+
|
|
2985
|
+
def bl_rna_get_subclass_py(self):
|
|
2986
|
+
""" """
|
|
2987
|
+
...
|
|
2988
|
+
|
|
2989
|
+
def draw(self, _context):
|
|
2990
|
+
"""
|
|
2991
|
+
|
|
2992
|
+
:param _context:
|
|
2993
|
+
"""
|
|
2994
|
+
...
|
|
2995
|
+
|
|
2996
|
+
def driver_add(self):
|
|
2997
|
+
""" """
|
|
2998
|
+
...
|
|
2999
|
+
|
|
3000
|
+
def driver_remove(self):
|
|
3001
|
+
""" """
|
|
3002
|
+
...
|
|
3003
|
+
|
|
3004
|
+
def execute(self, context):
|
|
3005
|
+
"""
|
|
3006
|
+
|
|
3007
|
+
:param context:
|
|
3008
|
+
"""
|
|
3009
|
+
...
|
|
3010
|
+
|
|
3011
|
+
def get(self):
|
|
3012
|
+
""" """
|
|
3013
|
+
...
|
|
3014
|
+
|
|
3015
|
+
def id_properties_clear(self):
|
|
3016
|
+
""" """
|
|
3017
|
+
...
|
|
3018
|
+
|
|
3019
|
+
def id_properties_ensure(self):
|
|
3020
|
+
""" """
|
|
3021
|
+
...
|
|
3022
|
+
|
|
3023
|
+
def id_properties_ui(self):
|
|
3024
|
+
""" """
|
|
3025
|
+
...
|
|
3026
|
+
|
|
3027
|
+
def invoke(self, context, _event):
|
|
3028
|
+
"""
|
|
3029
|
+
|
|
3030
|
+
:param context:
|
|
3031
|
+
:param _event:
|
|
3032
|
+
"""
|
|
3033
|
+
...
|
|
3034
|
+
|
|
3035
|
+
def is_property_hidden(self):
|
|
3036
|
+
""" """
|
|
3037
|
+
...
|
|
3038
|
+
|
|
3039
|
+
def is_property_overridable_library(self):
|
|
3040
|
+
""" """
|
|
3041
|
+
...
|
|
3042
|
+
|
|
3043
|
+
def is_property_readonly(self):
|
|
3044
|
+
""" """
|
|
3045
|
+
...
|
|
3046
|
+
|
|
3047
|
+
def is_property_set(self):
|
|
3048
|
+
""" """
|
|
3049
|
+
...
|
|
3050
|
+
|
|
3051
|
+
def items(self):
|
|
3052
|
+
""" """
|
|
3053
|
+
...
|
|
3054
|
+
|
|
3055
|
+
def keyframe_delete(self):
|
|
3056
|
+
""" """
|
|
3057
|
+
...
|
|
3058
|
+
|
|
3059
|
+
def keyframe_insert(self):
|
|
3060
|
+
""" """
|
|
3061
|
+
...
|
|
3062
|
+
|
|
3063
|
+
def keys(self):
|
|
3064
|
+
""" """
|
|
3065
|
+
...
|
|
3066
|
+
|
|
3067
|
+
def path_from_id(self):
|
|
3068
|
+
""" """
|
|
3069
|
+
...
|
|
3070
|
+
|
|
3071
|
+
def path_resolve(self):
|
|
3072
|
+
""" """
|
|
3073
|
+
...
|
|
3074
|
+
|
|
3075
|
+
def poll_message_set(self):
|
|
3076
|
+
""" """
|
|
3077
|
+
...
|
|
3078
|
+
|
|
3079
|
+
def pop(self):
|
|
3080
|
+
""" """
|
|
3081
|
+
...
|
|
3082
|
+
|
|
3083
|
+
def property_overridable_library_set(self):
|
|
3084
|
+
""" """
|
|
3085
|
+
...
|
|
3086
|
+
|
|
3087
|
+
def property_unset(self):
|
|
3088
|
+
""" """
|
|
3089
|
+
...
|
|
3090
|
+
|
|
3091
|
+
def type_recast(self):
|
|
3092
|
+
""" """
|
|
3093
|
+
...
|
|
3094
|
+
|
|
3095
|
+
def values(self):
|
|
3096
|
+
""" """
|
|
3097
|
+
...
|
|
3098
|
+
|
|
3099
|
+
class PREFERENCES_OT_studiolight_show(bpy_types.Operator):
|
|
3100
|
+
""" """
|
|
3101
|
+
|
|
3102
|
+
bl_idname: typing.Any
|
|
3103
|
+
""" """
|
|
3104
|
+
|
|
3105
|
+
bl_label: typing.Any
|
|
3106
|
+
""" """
|
|
3107
|
+
|
|
3108
|
+
bl_options: typing.Any
|
|
3109
|
+
""" """
|
|
3110
|
+
|
|
3111
|
+
bl_rna: typing.Any
|
|
3112
|
+
""" """
|
|
3113
|
+
|
|
3114
|
+
id_data: typing.Any
|
|
3115
|
+
""" """
|
|
3116
|
+
|
|
3117
|
+
def as_keywords(self, ignore):
|
|
3118
|
+
"""
|
|
3119
|
+
|
|
3120
|
+
:param ignore:
|
|
3121
|
+
"""
|
|
3122
|
+
...
|
|
3123
|
+
|
|
3124
|
+
def as_pointer(self):
|
|
3125
|
+
""" """
|
|
3126
|
+
...
|
|
3127
|
+
|
|
3128
|
+
def bl_rna_get_subclass(self):
|
|
3129
|
+
""" """
|
|
3130
|
+
...
|
|
3131
|
+
|
|
3132
|
+
def bl_rna_get_subclass_py(self):
|
|
3133
|
+
""" """
|
|
3134
|
+
...
|
|
3135
|
+
|
|
3136
|
+
def driver_add(self):
|
|
3137
|
+
""" """
|
|
3138
|
+
...
|
|
3139
|
+
|
|
3140
|
+
def driver_remove(self):
|
|
3141
|
+
""" """
|
|
3142
|
+
...
|
|
3143
|
+
|
|
3144
|
+
def execute(self, context):
|
|
3145
|
+
"""
|
|
3146
|
+
|
|
3147
|
+
:param context:
|
|
3148
|
+
"""
|
|
3149
|
+
...
|
|
3150
|
+
|
|
3151
|
+
def get(self):
|
|
3152
|
+
""" """
|
|
3153
|
+
...
|
|
3154
|
+
|
|
3155
|
+
def id_properties_clear(self):
|
|
3156
|
+
""" """
|
|
3157
|
+
...
|
|
3158
|
+
|
|
3159
|
+
def id_properties_ensure(self):
|
|
3160
|
+
""" """
|
|
3161
|
+
...
|
|
3162
|
+
|
|
3163
|
+
def id_properties_ui(self):
|
|
3164
|
+
""" """
|
|
3165
|
+
...
|
|
3166
|
+
|
|
3167
|
+
def is_property_hidden(self):
|
|
3168
|
+
""" """
|
|
3169
|
+
...
|
|
3170
|
+
|
|
3171
|
+
def is_property_overridable_library(self):
|
|
3172
|
+
""" """
|
|
3173
|
+
...
|
|
3174
|
+
|
|
3175
|
+
def is_property_readonly(self):
|
|
3176
|
+
""" """
|
|
3177
|
+
...
|
|
3178
|
+
|
|
3179
|
+
def is_property_set(self):
|
|
3180
|
+
""" """
|
|
3181
|
+
...
|
|
3182
|
+
|
|
3183
|
+
def items(self):
|
|
3184
|
+
""" """
|
|
3185
|
+
...
|
|
3186
|
+
|
|
3187
|
+
def keyframe_delete(self):
|
|
3188
|
+
""" """
|
|
3189
|
+
...
|
|
3190
|
+
|
|
3191
|
+
def keyframe_insert(self):
|
|
3192
|
+
""" """
|
|
3193
|
+
...
|
|
3194
|
+
|
|
3195
|
+
def keys(self):
|
|
3196
|
+
""" """
|
|
3197
|
+
...
|
|
3198
|
+
|
|
3199
|
+
def path_from_id(self):
|
|
3200
|
+
""" """
|
|
3201
|
+
...
|
|
3202
|
+
|
|
3203
|
+
def path_resolve(self):
|
|
3204
|
+
""" """
|
|
3205
|
+
...
|
|
3206
|
+
|
|
3207
|
+
def poll(self, _context):
|
|
3208
|
+
"""
|
|
3209
|
+
|
|
3210
|
+
:param _context:
|
|
3211
|
+
"""
|
|
3212
|
+
...
|
|
3213
|
+
|
|
3214
|
+
def poll_message_set(self):
|
|
3215
|
+
""" """
|
|
3216
|
+
...
|
|
3217
|
+
|
|
3218
|
+
def pop(self):
|
|
3219
|
+
""" """
|
|
3220
|
+
...
|
|
3221
|
+
|
|
3222
|
+
def property_overridable_library_set(self):
|
|
3223
|
+
""" """
|
|
3224
|
+
...
|
|
3225
|
+
|
|
3226
|
+
def property_unset(self):
|
|
3227
|
+
""" """
|
|
3228
|
+
...
|
|
3229
|
+
|
|
3230
|
+
def type_recast(self):
|
|
3231
|
+
""" """
|
|
3232
|
+
...
|
|
3233
|
+
|
|
3234
|
+
def values(self):
|
|
3235
|
+
""" """
|
|
3236
|
+
...
|
|
3237
|
+
|
|
3238
|
+
class PREFERENCES_OT_studiolight_uninstall(bpy_types.Operator):
|
|
3239
|
+
""" """
|
|
3240
|
+
|
|
3241
|
+
bl_idname: typing.Any
|
|
3242
|
+
""" """
|
|
3243
|
+
|
|
3244
|
+
bl_label: typing.Any
|
|
3245
|
+
""" """
|
|
3246
|
+
|
|
3247
|
+
bl_rna: typing.Any
|
|
3248
|
+
""" """
|
|
3249
|
+
|
|
3250
|
+
id_data: typing.Any
|
|
3251
|
+
""" """
|
|
3252
|
+
|
|
3253
|
+
def as_keywords(self, ignore):
|
|
3254
|
+
"""
|
|
3255
|
+
|
|
3256
|
+
:param ignore:
|
|
3257
|
+
"""
|
|
3258
|
+
...
|
|
3259
|
+
|
|
3260
|
+
def as_pointer(self):
|
|
3261
|
+
""" """
|
|
3262
|
+
...
|
|
3263
|
+
|
|
3264
|
+
def bl_rna_get_subclass(self):
|
|
3265
|
+
""" """
|
|
3266
|
+
...
|
|
3267
|
+
|
|
3268
|
+
def bl_rna_get_subclass_py(self):
|
|
3269
|
+
""" """
|
|
3270
|
+
...
|
|
3271
|
+
|
|
3272
|
+
def driver_add(self):
|
|
3273
|
+
""" """
|
|
3274
|
+
...
|
|
3275
|
+
|
|
3276
|
+
def driver_remove(self):
|
|
3277
|
+
""" """
|
|
3278
|
+
...
|
|
3279
|
+
|
|
3280
|
+
def execute(self, context):
|
|
3281
|
+
"""
|
|
3282
|
+
|
|
3283
|
+
:param context:
|
|
3284
|
+
"""
|
|
3285
|
+
...
|
|
3286
|
+
|
|
3287
|
+
def get(self):
|
|
3288
|
+
""" """
|
|
3289
|
+
...
|
|
3290
|
+
|
|
3291
|
+
def id_properties_clear(self):
|
|
3292
|
+
""" """
|
|
3293
|
+
...
|
|
3294
|
+
|
|
3295
|
+
def id_properties_ensure(self):
|
|
3296
|
+
""" """
|
|
3297
|
+
...
|
|
3298
|
+
|
|
3299
|
+
def id_properties_ui(self):
|
|
3300
|
+
""" """
|
|
3301
|
+
...
|
|
3302
|
+
|
|
3303
|
+
def is_property_hidden(self):
|
|
3304
|
+
""" """
|
|
3305
|
+
...
|
|
3306
|
+
|
|
3307
|
+
def is_property_overridable_library(self):
|
|
3308
|
+
""" """
|
|
3309
|
+
...
|
|
3310
|
+
|
|
3311
|
+
def is_property_readonly(self):
|
|
3312
|
+
""" """
|
|
3313
|
+
...
|
|
3314
|
+
|
|
3315
|
+
def is_property_set(self):
|
|
3316
|
+
""" """
|
|
3317
|
+
...
|
|
3318
|
+
|
|
3319
|
+
def items(self):
|
|
3320
|
+
""" """
|
|
3321
|
+
...
|
|
3322
|
+
|
|
3323
|
+
def keyframe_delete(self):
|
|
3324
|
+
""" """
|
|
3325
|
+
...
|
|
3326
|
+
|
|
3327
|
+
def keyframe_insert(self):
|
|
3328
|
+
""" """
|
|
3329
|
+
...
|
|
3330
|
+
|
|
3331
|
+
def keys(self):
|
|
3332
|
+
""" """
|
|
3333
|
+
...
|
|
3334
|
+
|
|
3335
|
+
def path_from_id(self):
|
|
3336
|
+
""" """
|
|
3337
|
+
...
|
|
3338
|
+
|
|
3339
|
+
def path_resolve(self):
|
|
3340
|
+
""" """
|
|
3341
|
+
...
|
|
3342
|
+
|
|
3343
|
+
def poll_message_set(self):
|
|
3344
|
+
""" """
|
|
3345
|
+
...
|
|
3346
|
+
|
|
3347
|
+
def pop(self):
|
|
3348
|
+
""" """
|
|
3349
|
+
...
|
|
3350
|
+
|
|
3351
|
+
def property_overridable_library_set(self):
|
|
3352
|
+
""" """
|
|
3353
|
+
...
|
|
3354
|
+
|
|
3355
|
+
def property_unset(self):
|
|
3356
|
+
""" """
|
|
3357
|
+
...
|
|
3358
|
+
|
|
3359
|
+
def type_recast(self):
|
|
3360
|
+
""" """
|
|
3361
|
+
...
|
|
3362
|
+
|
|
3363
|
+
def values(self):
|
|
3364
|
+
""" """
|
|
3365
|
+
...
|
|
3366
|
+
|
|
3367
|
+
class PREFERENCES_OT_theme_install(bpy_types.Operator):
|
|
3368
|
+
""" """
|
|
3369
|
+
|
|
3370
|
+
bl_idname: typing.Any
|
|
3371
|
+
""" """
|
|
3372
|
+
|
|
3373
|
+
bl_label: typing.Any
|
|
3374
|
+
""" """
|
|
3375
|
+
|
|
3376
|
+
bl_rna: typing.Any
|
|
3377
|
+
""" """
|
|
3378
|
+
|
|
3379
|
+
id_data: typing.Any
|
|
3380
|
+
""" """
|
|
3381
|
+
|
|
3382
|
+
def as_keywords(self, ignore):
|
|
3383
|
+
"""
|
|
3384
|
+
|
|
3385
|
+
:param ignore:
|
|
3386
|
+
"""
|
|
3387
|
+
...
|
|
3388
|
+
|
|
3389
|
+
def as_pointer(self):
|
|
3390
|
+
""" """
|
|
3391
|
+
...
|
|
3392
|
+
|
|
3393
|
+
def bl_rna_get_subclass(self):
|
|
3394
|
+
""" """
|
|
3395
|
+
...
|
|
3396
|
+
|
|
3397
|
+
def bl_rna_get_subclass_py(self):
|
|
3398
|
+
""" """
|
|
3399
|
+
...
|
|
3400
|
+
|
|
3401
|
+
def driver_add(self):
|
|
3402
|
+
""" """
|
|
3403
|
+
...
|
|
3404
|
+
|
|
3405
|
+
def driver_remove(self):
|
|
3406
|
+
""" """
|
|
3407
|
+
...
|
|
3408
|
+
|
|
3409
|
+
def execute(self, _context):
|
|
3410
|
+
"""
|
|
3411
|
+
|
|
3412
|
+
:param _context:
|
|
3413
|
+
"""
|
|
3414
|
+
...
|
|
3415
|
+
|
|
3416
|
+
def get(self):
|
|
3417
|
+
""" """
|
|
3418
|
+
...
|
|
3419
|
+
|
|
3420
|
+
def id_properties_clear(self):
|
|
3421
|
+
""" """
|
|
3422
|
+
...
|
|
3423
|
+
|
|
3424
|
+
def id_properties_ensure(self):
|
|
3425
|
+
""" """
|
|
3426
|
+
...
|
|
3427
|
+
|
|
3428
|
+
def id_properties_ui(self):
|
|
3429
|
+
""" """
|
|
3430
|
+
...
|
|
3431
|
+
|
|
3432
|
+
def invoke(self, context, _event):
|
|
3433
|
+
"""
|
|
3434
|
+
|
|
3435
|
+
:param context:
|
|
3436
|
+
:param _event:
|
|
3437
|
+
"""
|
|
3438
|
+
...
|
|
3439
|
+
|
|
3440
|
+
def is_property_hidden(self):
|
|
3441
|
+
""" """
|
|
3442
|
+
...
|
|
3443
|
+
|
|
3444
|
+
def is_property_overridable_library(self):
|
|
3445
|
+
""" """
|
|
3446
|
+
...
|
|
3447
|
+
|
|
3448
|
+
def is_property_readonly(self):
|
|
3449
|
+
""" """
|
|
3450
|
+
...
|
|
3451
|
+
|
|
3452
|
+
def is_property_set(self):
|
|
3453
|
+
""" """
|
|
3454
|
+
...
|
|
3455
|
+
|
|
3456
|
+
def items(self):
|
|
3457
|
+
""" """
|
|
3458
|
+
...
|
|
3459
|
+
|
|
3460
|
+
def keyframe_delete(self):
|
|
3461
|
+
""" """
|
|
3462
|
+
...
|
|
3463
|
+
|
|
3464
|
+
def keyframe_insert(self):
|
|
3465
|
+
""" """
|
|
3466
|
+
...
|
|
3467
|
+
|
|
3468
|
+
def keys(self):
|
|
3469
|
+
""" """
|
|
3470
|
+
...
|
|
3471
|
+
|
|
3472
|
+
def path_from_id(self):
|
|
3473
|
+
""" """
|
|
3474
|
+
...
|
|
3475
|
+
|
|
3476
|
+
def path_resolve(self):
|
|
3477
|
+
""" """
|
|
3478
|
+
...
|
|
3479
|
+
|
|
3480
|
+
def poll_message_set(self):
|
|
3481
|
+
""" """
|
|
3482
|
+
...
|
|
3483
|
+
|
|
3484
|
+
def pop(self):
|
|
3485
|
+
""" """
|
|
3486
|
+
...
|
|
3487
|
+
|
|
3488
|
+
def property_overridable_library_set(self):
|
|
3489
|
+
""" """
|
|
3490
|
+
...
|
|
3491
|
+
|
|
3492
|
+
def property_unset(self):
|
|
3493
|
+
""" """
|
|
3494
|
+
...
|
|
3495
|
+
|
|
3496
|
+
def type_recast(self):
|
|
3497
|
+
""" """
|
|
3498
|
+
...
|
|
882
3499
|
|
|
883
|
-
def
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
def bl_rna_get_subclass_py(self): ...
|
|
887
|
-
def driver_add(self): ...
|
|
888
|
-
def driver_remove(self): ...
|
|
889
|
-
def execute(self, _context): ...
|
|
890
|
-
def get(self): ...
|
|
891
|
-
def id_properties_clear(self): ...
|
|
892
|
-
def id_properties_ensure(self): ...
|
|
893
|
-
def id_properties_ui(self): ...
|
|
894
|
-
def invoke(self, context, _event): ...
|
|
895
|
-
def is_property_hidden(self): ...
|
|
896
|
-
def is_property_overridable_library(self): ...
|
|
897
|
-
def is_property_readonly(self): ...
|
|
898
|
-
def is_property_set(self): ...
|
|
899
|
-
def items(self): ...
|
|
900
|
-
def keyframe_delete(self): ...
|
|
901
|
-
def keyframe_insert(self): ...
|
|
902
|
-
def keys(self): ...
|
|
903
|
-
def path_from_id(self): ...
|
|
904
|
-
def path_resolve(self): ...
|
|
905
|
-
def poll_message_set(self): ...
|
|
906
|
-
def pop(self): ...
|
|
907
|
-
def property_overridable_library_set(self): ...
|
|
908
|
-
def property_unset(self): ...
|
|
909
|
-
def type_recast(self): ...
|
|
910
|
-
def values(self): ...
|
|
3500
|
+
def values(self):
|
|
3501
|
+
""" """
|
|
3502
|
+
...
|