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
bl_ui/space_console/__init__.pyi
CHANGED
|
@@ -3,69 +3,263 @@ import bpy_types
|
|
|
3
3
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
|
-
class CONSOLE_HT_header(bpy_types.
|
|
6
|
+
class CONSOLE_HT_header(bpy_types._GenericUI):
|
|
7
|
+
""" """
|
|
8
|
+
|
|
7
9
|
bl_rna: typing.Any
|
|
10
|
+
""" """
|
|
11
|
+
|
|
8
12
|
bl_space_type: typing.Any
|
|
13
|
+
""" """
|
|
14
|
+
|
|
9
15
|
id_data: typing.Any
|
|
16
|
+
""" """
|
|
17
|
+
|
|
18
|
+
def append(self, draw_func):
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
:param draw_func:
|
|
22
|
+
"""
|
|
23
|
+
...
|
|
24
|
+
|
|
25
|
+
def as_pointer(self):
|
|
26
|
+
""" """
|
|
27
|
+
...
|
|
28
|
+
|
|
29
|
+
def bl_rna_get_subclass(self):
|
|
30
|
+
""" """
|
|
31
|
+
...
|
|
32
|
+
|
|
33
|
+
def bl_rna_get_subclass_py(self):
|
|
34
|
+
""" """
|
|
35
|
+
...
|
|
36
|
+
|
|
37
|
+
def draw(self, context):
|
|
38
|
+
"""
|
|
39
|
+
|
|
40
|
+
:param context:
|
|
41
|
+
"""
|
|
42
|
+
...
|
|
43
|
+
|
|
44
|
+
def driver_add(self):
|
|
45
|
+
""" """
|
|
46
|
+
...
|
|
47
|
+
|
|
48
|
+
def driver_remove(self):
|
|
49
|
+
""" """
|
|
50
|
+
...
|
|
51
|
+
|
|
52
|
+
def get(self):
|
|
53
|
+
""" """
|
|
54
|
+
...
|
|
55
|
+
|
|
56
|
+
def id_properties_clear(self):
|
|
57
|
+
""" """
|
|
58
|
+
...
|
|
59
|
+
|
|
60
|
+
def id_properties_ensure(self):
|
|
61
|
+
""" """
|
|
62
|
+
...
|
|
63
|
+
|
|
64
|
+
def id_properties_ui(self):
|
|
65
|
+
""" """
|
|
66
|
+
...
|
|
67
|
+
|
|
68
|
+
def is_extended(self):
|
|
69
|
+
""" """
|
|
70
|
+
...
|
|
71
|
+
|
|
72
|
+
def is_property_hidden(self):
|
|
73
|
+
""" """
|
|
74
|
+
...
|
|
75
|
+
|
|
76
|
+
def is_property_overridable_library(self):
|
|
77
|
+
""" """
|
|
78
|
+
...
|
|
79
|
+
|
|
80
|
+
def is_property_readonly(self):
|
|
81
|
+
""" """
|
|
82
|
+
...
|
|
83
|
+
|
|
84
|
+
def is_property_set(self):
|
|
85
|
+
""" """
|
|
86
|
+
...
|
|
87
|
+
|
|
88
|
+
def items(self):
|
|
89
|
+
""" """
|
|
90
|
+
...
|
|
91
|
+
|
|
92
|
+
def keyframe_delete(self):
|
|
93
|
+
""" """
|
|
94
|
+
...
|
|
95
|
+
|
|
96
|
+
def keyframe_insert(self):
|
|
97
|
+
""" """
|
|
98
|
+
...
|
|
99
|
+
|
|
100
|
+
def keys(self):
|
|
101
|
+
""" """
|
|
102
|
+
...
|
|
103
|
+
|
|
104
|
+
def path_from_id(self):
|
|
105
|
+
""" """
|
|
106
|
+
...
|
|
107
|
+
|
|
108
|
+
def path_resolve(self):
|
|
109
|
+
""" """
|
|
110
|
+
...
|
|
111
|
+
|
|
112
|
+
def pop(self):
|
|
113
|
+
""" """
|
|
114
|
+
...
|
|
115
|
+
|
|
116
|
+
def prepend(self, draw_func):
|
|
117
|
+
"""
|
|
118
|
+
|
|
119
|
+
:param draw_func:
|
|
120
|
+
"""
|
|
121
|
+
...
|
|
122
|
+
|
|
123
|
+
def property_overridable_library_set(self):
|
|
124
|
+
""" """
|
|
125
|
+
...
|
|
126
|
+
|
|
127
|
+
def property_unset(self):
|
|
128
|
+
""" """
|
|
129
|
+
...
|
|
130
|
+
|
|
131
|
+
def remove(self, draw_func):
|
|
132
|
+
"""
|
|
133
|
+
|
|
134
|
+
:param draw_func:
|
|
135
|
+
"""
|
|
136
|
+
...
|
|
137
|
+
|
|
138
|
+
def type_recast(self):
|
|
139
|
+
""" """
|
|
140
|
+
...
|
|
141
|
+
|
|
142
|
+
def values(self):
|
|
143
|
+
""" """
|
|
144
|
+
...
|
|
145
|
+
|
|
146
|
+
class CONSOLE_MT_console(bpy_types._GenericUI):
|
|
147
|
+
""" """
|
|
10
148
|
|
|
11
|
-
def append(self, draw_func): ...
|
|
12
|
-
def as_pointer(self): ...
|
|
13
|
-
def bl_rna_get_subclass(self): ...
|
|
14
|
-
def bl_rna_get_subclass_py(self): ...
|
|
15
|
-
def draw(self, context): ...
|
|
16
|
-
def driver_add(self): ...
|
|
17
|
-
def driver_remove(self): ...
|
|
18
|
-
def get(self): ...
|
|
19
|
-
def id_properties_clear(self): ...
|
|
20
|
-
def id_properties_ensure(self): ...
|
|
21
|
-
def id_properties_ui(self): ...
|
|
22
|
-
def is_extended(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 pop(self): ...
|
|
34
|
-
def prepend(self, draw_func): ...
|
|
35
|
-
def property_overridable_library_set(self): ...
|
|
36
|
-
def property_unset(self): ...
|
|
37
|
-
def remove(self, draw_func): ...
|
|
38
|
-
def type_recast(self): ...
|
|
39
|
-
def values(self): ...
|
|
40
|
-
|
|
41
|
-
class CONSOLE_MT_console(bpy_types.Menu, bpy_types._GenericUI):
|
|
42
149
|
bl_label: typing.Any
|
|
150
|
+
""" """
|
|
151
|
+
|
|
43
152
|
bl_rna: typing.Any
|
|
153
|
+
""" """
|
|
154
|
+
|
|
44
155
|
id_data: typing.Any
|
|
156
|
+
""" """
|
|
157
|
+
|
|
158
|
+
def append(self, draw_func):
|
|
159
|
+
"""
|
|
160
|
+
|
|
161
|
+
:param draw_func:
|
|
162
|
+
"""
|
|
163
|
+
...
|
|
164
|
+
|
|
165
|
+
def as_pointer(self):
|
|
166
|
+
""" """
|
|
167
|
+
...
|
|
168
|
+
|
|
169
|
+
def bl_rna_get_subclass(self):
|
|
170
|
+
""" """
|
|
171
|
+
...
|
|
172
|
+
|
|
173
|
+
def bl_rna_get_subclass_py(self):
|
|
174
|
+
""" """
|
|
175
|
+
...
|
|
176
|
+
|
|
177
|
+
def draw(self, _context):
|
|
178
|
+
"""
|
|
179
|
+
|
|
180
|
+
:param _context:
|
|
181
|
+
"""
|
|
182
|
+
...
|
|
183
|
+
|
|
184
|
+
def draw_collapsible(self, context, layout):
|
|
185
|
+
"""
|
|
186
|
+
|
|
187
|
+
:param context:
|
|
188
|
+
:param layout:
|
|
189
|
+
"""
|
|
190
|
+
...
|
|
191
|
+
|
|
192
|
+
def draw_preset(self, _context):
|
|
193
|
+
"""
|
|
194
|
+
|
|
195
|
+
:param _context:
|
|
196
|
+
"""
|
|
197
|
+
...
|
|
198
|
+
|
|
199
|
+
def driver_add(self):
|
|
200
|
+
""" """
|
|
201
|
+
...
|
|
202
|
+
|
|
203
|
+
def driver_remove(self):
|
|
204
|
+
""" """
|
|
205
|
+
...
|
|
206
|
+
|
|
207
|
+
def get(self):
|
|
208
|
+
""" """
|
|
209
|
+
...
|
|
210
|
+
|
|
211
|
+
def id_properties_clear(self):
|
|
212
|
+
""" """
|
|
213
|
+
...
|
|
214
|
+
|
|
215
|
+
def id_properties_ensure(self):
|
|
216
|
+
""" """
|
|
217
|
+
...
|
|
218
|
+
|
|
219
|
+
def id_properties_ui(self):
|
|
220
|
+
""" """
|
|
221
|
+
...
|
|
222
|
+
|
|
223
|
+
def is_extended(self):
|
|
224
|
+
""" """
|
|
225
|
+
...
|
|
226
|
+
|
|
227
|
+
def is_property_hidden(self):
|
|
228
|
+
""" """
|
|
229
|
+
...
|
|
230
|
+
|
|
231
|
+
def is_property_overridable_library(self):
|
|
232
|
+
""" """
|
|
233
|
+
...
|
|
234
|
+
|
|
235
|
+
def is_property_readonly(self):
|
|
236
|
+
""" """
|
|
237
|
+
...
|
|
238
|
+
|
|
239
|
+
def is_property_set(self):
|
|
240
|
+
""" """
|
|
241
|
+
...
|
|
242
|
+
|
|
243
|
+
def items(self):
|
|
244
|
+
""" """
|
|
245
|
+
...
|
|
246
|
+
|
|
247
|
+
def keyframe_delete(self):
|
|
248
|
+
""" """
|
|
249
|
+
...
|
|
250
|
+
|
|
251
|
+
def keyframe_insert(self):
|
|
252
|
+
""" """
|
|
253
|
+
...
|
|
254
|
+
|
|
255
|
+
def keys(self):
|
|
256
|
+
""" """
|
|
257
|
+
...
|
|
258
|
+
|
|
259
|
+
def path_from_id(self):
|
|
260
|
+
""" """
|
|
261
|
+
...
|
|
45
262
|
|
|
46
|
-
def append(self, draw_func): ...
|
|
47
|
-
def as_pointer(self): ...
|
|
48
|
-
def bl_rna_get_subclass(self): ...
|
|
49
|
-
def bl_rna_get_subclass_py(self): ...
|
|
50
|
-
def draw(self, _context): ...
|
|
51
|
-
def draw_collapsible(self, context, layout): ...
|
|
52
|
-
def draw_preset(self, _context): ...
|
|
53
|
-
def driver_add(self): ...
|
|
54
|
-
def driver_remove(self): ...
|
|
55
|
-
def get(self): ...
|
|
56
|
-
def id_properties_clear(self): ...
|
|
57
|
-
def id_properties_ensure(self): ...
|
|
58
|
-
def id_properties_ui(self): ...
|
|
59
|
-
def is_extended(self): ...
|
|
60
|
-
def is_property_hidden(self): ...
|
|
61
|
-
def is_property_overridable_library(self): ...
|
|
62
|
-
def is_property_readonly(self): ...
|
|
63
|
-
def is_property_set(self): ...
|
|
64
|
-
def items(self): ...
|
|
65
|
-
def keyframe_delete(self): ...
|
|
66
|
-
def keyframe_insert(self): ...
|
|
67
|
-
def keys(self): ...
|
|
68
|
-
def path_from_id(self): ...
|
|
69
263
|
def path_menu(
|
|
70
264
|
self,
|
|
71
265
|
searchpaths,
|
|
@@ -76,44 +270,175 @@ class CONSOLE_MT_console(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
76
270
|
filter_path,
|
|
77
271
|
display_name,
|
|
78
272
|
add_operator,
|
|
79
|
-
):
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
273
|
+
):
|
|
274
|
+
"""
|
|
275
|
+
|
|
276
|
+
:param searchpaths:
|
|
277
|
+
:param operator:
|
|
278
|
+
:param props_default:
|
|
279
|
+
:param prop_filepath:
|
|
280
|
+
:param filter_ext:
|
|
281
|
+
:param filter_path:
|
|
282
|
+
:param display_name:
|
|
283
|
+
:param add_operator:
|
|
284
|
+
"""
|
|
285
|
+
...
|
|
286
|
+
|
|
287
|
+
def path_resolve(self):
|
|
288
|
+
""" """
|
|
289
|
+
...
|
|
290
|
+
|
|
291
|
+
def pop(self):
|
|
292
|
+
""" """
|
|
293
|
+
...
|
|
294
|
+
|
|
295
|
+
def prepend(self, draw_func):
|
|
296
|
+
"""
|
|
297
|
+
|
|
298
|
+
:param draw_func:
|
|
299
|
+
"""
|
|
300
|
+
...
|
|
301
|
+
|
|
302
|
+
def property_overridable_library_set(self):
|
|
303
|
+
""" """
|
|
304
|
+
...
|
|
305
|
+
|
|
306
|
+
def property_unset(self):
|
|
307
|
+
""" """
|
|
308
|
+
...
|
|
309
|
+
|
|
310
|
+
def remove(self, draw_func):
|
|
311
|
+
"""
|
|
312
|
+
|
|
313
|
+
:param draw_func:
|
|
314
|
+
"""
|
|
315
|
+
...
|
|
316
|
+
|
|
317
|
+
def type_recast(self):
|
|
318
|
+
""" """
|
|
319
|
+
...
|
|
320
|
+
|
|
321
|
+
def values(self):
|
|
322
|
+
""" """
|
|
323
|
+
...
|
|
324
|
+
|
|
325
|
+
class CONSOLE_MT_context_menu(bpy_types._GenericUI):
|
|
326
|
+
""" """
|
|
327
|
+
|
|
90
328
|
bl_label: typing.Any
|
|
329
|
+
""" """
|
|
330
|
+
|
|
91
331
|
bl_rna: typing.Any
|
|
332
|
+
""" """
|
|
333
|
+
|
|
92
334
|
id_data: typing.Any
|
|
335
|
+
""" """
|
|
336
|
+
|
|
337
|
+
def append(self, draw_func):
|
|
338
|
+
"""
|
|
339
|
+
|
|
340
|
+
:param draw_func:
|
|
341
|
+
"""
|
|
342
|
+
...
|
|
343
|
+
|
|
344
|
+
def as_pointer(self):
|
|
345
|
+
""" """
|
|
346
|
+
...
|
|
347
|
+
|
|
348
|
+
def bl_rna_get_subclass(self):
|
|
349
|
+
""" """
|
|
350
|
+
...
|
|
351
|
+
|
|
352
|
+
def bl_rna_get_subclass_py(self):
|
|
353
|
+
""" """
|
|
354
|
+
...
|
|
355
|
+
|
|
356
|
+
def draw(self, _context):
|
|
357
|
+
"""
|
|
358
|
+
|
|
359
|
+
:param _context:
|
|
360
|
+
"""
|
|
361
|
+
...
|
|
362
|
+
|
|
363
|
+
def draw_collapsible(self, context, layout):
|
|
364
|
+
"""
|
|
365
|
+
|
|
366
|
+
:param context:
|
|
367
|
+
:param layout:
|
|
368
|
+
"""
|
|
369
|
+
...
|
|
370
|
+
|
|
371
|
+
def draw_preset(self, _context):
|
|
372
|
+
"""
|
|
373
|
+
|
|
374
|
+
:param _context:
|
|
375
|
+
"""
|
|
376
|
+
...
|
|
377
|
+
|
|
378
|
+
def driver_add(self):
|
|
379
|
+
""" """
|
|
380
|
+
...
|
|
381
|
+
|
|
382
|
+
def driver_remove(self):
|
|
383
|
+
""" """
|
|
384
|
+
...
|
|
385
|
+
|
|
386
|
+
def get(self):
|
|
387
|
+
""" """
|
|
388
|
+
...
|
|
389
|
+
|
|
390
|
+
def id_properties_clear(self):
|
|
391
|
+
""" """
|
|
392
|
+
...
|
|
393
|
+
|
|
394
|
+
def id_properties_ensure(self):
|
|
395
|
+
""" """
|
|
396
|
+
...
|
|
397
|
+
|
|
398
|
+
def id_properties_ui(self):
|
|
399
|
+
""" """
|
|
400
|
+
...
|
|
401
|
+
|
|
402
|
+
def is_extended(self):
|
|
403
|
+
""" """
|
|
404
|
+
...
|
|
405
|
+
|
|
406
|
+
def is_property_hidden(self):
|
|
407
|
+
""" """
|
|
408
|
+
...
|
|
409
|
+
|
|
410
|
+
def is_property_overridable_library(self):
|
|
411
|
+
""" """
|
|
412
|
+
...
|
|
413
|
+
|
|
414
|
+
def is_property_readonly(self):
|
|
415
|
+
""" """
|
|
416
|
+
...
|
|
417
|
+
|
|
418
|
+
def is_property_set(self):
|
|
419
|
+
""" """
|
|
420
|
+
...
|
|
421
|
+
|
|
422
|
+
def items(self):
|
|
423
|
+
""" """
|
|
424
|
+
...
|
|
425
|
+
|
|
426
|
+
def keyframe_delete(self):
|
|
427
|
+
""" """
|
|
428
|
+
...
|
|
429
|
+
|
|
430
|
+
def keyframe_insert(self):
|
|
431
|
+
""" """
|
|
432
|
+
...
|
|
433
|
+
|
|
434
|
+
def keys(self):
|
|
435
|
+
""" """
|
|
436
|
+
...
|
|
437
|
+
|
|
438
|
+
def path_from_id(self):
|
|
439
|
+
""" """
|
|
440
|
+
...
|
|
93
441
|
|
|
94
|
-
def append(self, draw_func): ...
|
|
95
|
-
def as_pointer(self): ...
|
|
96
|
-
def bl_rna_get_subclass(self): ...
|
|
97
|
-
def bl_rna_get_subclass_py(self): ...
|
|
98
|
-
def draw(self, _context): ...
|
|
99
|
-
def draw_collapsible(self, context, layout): ...
|
|
100
|
-
def draw_preset(self, _context): ...
|
|
101
|
-
def driver_add(self): ...
|
|
102
|
-
def driver_remove(self): ...
|
|
103
|
-
def get(self): ...
|
|
104
|
-
def id_properties_clear(self): ...
|
|
105
|
-
def id_properties_ensure(self): ...
|
|
106
|
-
def id_properties_ui(self): ...
|
|
107
|
-
def is_extended(self): ...
|
|
108
|
-
def is_property_hidden(self): ...
|
|
109
|
-
def is_property_overridable_library(self): ...
|
|
110
|
-
def is_property_readonly(self): ...
|
|
111
|
-
def is_property_set(self): ...
|
|
112
|
-
def items(self): ...
|
|
113
|
-
def keyframe_delete(self): ...
|
|
114
|
-
def keyframe_insert(self): ...
|
|
115
|
-
def keys(self): ...
|
|
116
|
-
def path_from_id(self): ...
|
|
117
442
|
def path_menu(
|
|
118
443
|
self,
|
|
119
444
|
searchpaths,
|
|
@@ -124,45 +449,178 @@ class CONSOLE_MT_context_menu(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
124
449
|
filter_path,
|
|
125
450
|
display_name,
|
|
126
451
|
add_operator,
|
|
127
|
-
):
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
452
|
+
):
|
|
453
|
+
"""
|
|
454
|
+
|
|
455
|
+
:param searchpaths:
|
|
456
|
+
:param operator:
|
|
457
|
+
:param props_default:
|
|
458
|
+
:param prop_filepath:
|
|
459
|
+
:param filter_ext:
|
|
460
|
+
:param filter_path:
|
|
461
|
+
:param display_name:
|
|
462
|
+
:param add_operator:
|
|
463
|
+
"""
|
|
464
|
+
...
|
|
465
|
+
|
|
466
|
+
def path_resolve(self):
|
|
467
|
+
""" """
|
|
468
|
+
...
|
|
469
|
+
|
|
470
|
+
def pop(self):
|
|
471
|
+
""" """
|
|
472
|
+
...
|
|
473
|
+
|
|
474
|
+
def prepend(self, draw_func):
|
|
475
|
+
"""
|
|
476
|
+
|
|
477
|
+
:param draw_func:
|
|
478
|
+
"""
|
|
479
|
+
...
|
|
480
|
+
|
|
481
|
+
def property_overridable_library_set(self):
|
|
482
|
+
""" """
|
|
483
|
+
...
|
|
484
|
+
|
|
485
|
+
def property_unset(self):
|
|
486
|
+
""" """
|
|
487
|
+
...
|
|
488
|
+
|
|
489
|
+
def remove(self, draw_func):
|
|
490
|
+
"""
|
|
491
|
+
|
|
492
|
+
:param draw_func:
|
|
493
|
+
"""
|
|
494
|
+
...
|
|
495
|
+
|
|
496
|
+
def type_recast(self):
|
|
497
|
+
""" """
|
|
498
|
+
...
|
|
499
|
+
|
|
500
|
+
def values(self):
|
|
501
|
+
""" """
|
|
502
|
+
...
|
|
503
|
+
|
|
504
|
+
class CONSOLE_MT_editor_menus(bpy_types._GenericUI):
|
|
505
|
+
""" """
|
|
506
|
+
|
|
138
507
|
bl_idname: typing.Any
|
|
508
|
+
""" """
|
|
509
|
+
|
|
139
510
|
bl_label: typing.Any
|
|
511
|
+
""" """
|
|
512
|
+
|
|
140
513
|
bl_rna: typing.Any
|
|
514
|
+
""" """
|
|
515
|
+
|
|
141
516
|
id_data: typing.Any
|
|
517
|
+
""" """
|
|
518
|
+
|
|
519
|
+
def append(self, draw_func):
|
|
520
|
+
"""
|
|
521
|
+
|
|
522
|
+
:param draw_func:
|
|
523
|
+
"""
|
|
524
|
+
...
|
|
525
|
+
|
|
526
|
+
def as_pointer(self):
|
|
527
|
+
""" """
|
|
528
|
+
...
|
|
529
|
+
|
|
530
|
+
def bl_rna_get_subclass(self):
|
|
531
|
+
""" """
|
|
532
|
+
...
|
|
533
|
+
|
|
534
|
+
def bl_rna_get_subclass_py(self):
|
|
535
|
+
""" """
|
|
536
|
+
...
|
|
537
|
+
|
|
538
|
+
def draw(self, _context):
|
|
539
|
+
"""
|
|
540
|
+
|
|
541
|
+
:param _context:
|
|
542
|
+
"""
|
|
543
|
+
...
|
|
544
|
+
|
|
545
|
+
def draw_collapsible(self, context, layout):
|
|
546
|
+
"""
|
|
547
|
+
|
|
548
|
+
:param context:
|
|
549
|
+
:param layout:
|
|
550
|
+
"""
|
|
551
|
+
...
|
|
552
|
+
|
|
553
|
+
def draw_preset(self, _context):
|
|
554
|
+
"""
|
|
555
|
+
|
|
556
|
+
:param _context:
|
|
557
|
+
"""
|
|
558
|
+
...
|
|
559
|
+
|
|
560
|
+
def driver_add(self):
|
|
561
|
+
""" """
|
|
562
|
+
...
|
|
563
|
+
|
|
564
|
+
def driver_remove(self):
|
|
565
|
+
""" """
|
|
566
|
+
...
|
|
567
|
+
|
|
568
|
+
def get(self):
|
|
569
|
+
""" """
|
|
570
|
+
...
|
|
571
|
+
|
|
572
|
+
def id_properties_clear(self):
|
|
573
|
+
""" """
|
|
574
|
+
...
|
|
575
|
+
|
|
576
|
+
def id_properties_ensure(self):
|
|
577
|
+
""" """
|
|
578
|
+
...
|
|
579
|
+
|
|
580
|
+
def id_properties_ui(self):
|
|
581
|
+
""" """
|
|
582
|
+
...
|
|
583
|
+
|
|
584
|
+
def is_extended(self):
|
|
585
|
+
""" """
|
|
586
|
+
...
|
|
587
|
+
|
|
588
|
+
def is_property_hidden(self):
|
|
589
|
+
""" """
|
|
590
|
+
...
|
|
591
|
+
|
|
592
|
+
def is_property_overridable_library(self):
|
|
593
|
+
""" """
|
|
594
|
+
...
|
|
595
|
+
|
|
596
|
+
def is_property_readonly(self):
|
|
597
|
+
""" """
|
|
598
|
+
...
|
|
599
|
+
|
|
600
|
+
def is_property_set(self):
|
|
601
|
+
""" """
|
|
602
|
+
...
|
|
603
|
+
|
|
604
|
+
def items(self):
|
|
605
|
+
""" """
|
|
606
|
+
...
|
|
607
|
+
|
|
608
|
+
def keyframe_delete(self):
|
|
609
|
+
""" """
|
|
610
|
+
...
|
|
611
|
+
|
|
612
|
+
def keyframe_insert(self):
|
|
613
|
+
""" """
|
|
614
|
+
...
|
|
615
|
+
|
|
616
|
+
def keys(self):
|
|
617
|
+
""" """
|
|
618
|
+
...
|
|
619
|
+
|
|
620
|
+
def path_from_id(self):
|
|
621
|
+
""" """
|
|
622
|
+
...
|
|
142
623
|
|
|
143
|
-
def append(self, draw_func): ...
|
|
144
|
-
def as_pointer(self): ...
|
|
145
|
-
def bl_rna_get_subclass(self): ...
|
|
146
|
-
def bl_rna_get_subclass_py(self): ...
|
|
147
|
-
def draw(self, _context): ...
|
|
148
|
-
def draw_collapsible(self, context, layout): ...
|
|
149
|
-
def draw_preset(self, _context): ...
|
|
150
|
-
def driver_add(self): ...
|
|
151
|
-
def driver_remove(self): ...
|
|
152
|
-
def get(self): ...
|
|
153
|
-
def id_properties_clear(self): ...
|
|
154
|
-
def id_properties_ensure(self): ...
|
|
155
|
-
def id_properties_ui(self): ...
|
|
156
|
-
def is_extended(self): ...
|
|
157
|
-
def is_property_hidden(self): ...
|
|
158
|
-
def is_property_overridable_library(self): ...
|
|
159
|
-
def is_property_readonly(self): ...
|
|
160
|
-
def is_property_set(self): ...
|
|
161
|
-
def items(self): ...
|
|
162
|
-
def keyframe_delete(self): ...
|
|
163
|
-
def keyframe_insert(self): ...
|
|
164
|
-
def keys(self): ...
|
|
165
|
-
def path_from_id(self): ...
|
|
166
624
|
def path_menu(
|
|
167
625
|
self,
|
|
168
626
|
searchpaths,
|
|
@@ -173,44 +631,175 @@ class CONSOLE_MT_editor_menus(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
173
631
|
filter_path,
|
|
174
632
|
display_name,
|
|
175
633
|
add_operator,
|
|
176
|
-
):
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
634
|
+
):
|
|
635
|
+
"""
|
|
636
|
+
|
|
637
|
+
:param searchpaths:
|
|
638
|
+
:param operator:
|
|
639
|
+
:param props_default:
|
|
640
|
+
:param prop_filepath:
|
|
641
|
+
:param filter_ext:
|
|
642
|
+
:param filter_path:
|
|
643
|
+
:param display_name:
|
|
644
|
+
:param add_operator:
|
|
645
|
+
"""
|
|
646
|
+
...
|
|
647
|
+
|
|
648
|
+
def path_resolve(self):
|
|
649
|
+
""" """
|
|
650
|
+
...
|
|
651
|
+
|
|
652
|
+
def pop(self):
|
|
653
|
+
""" """
|
|
654
|
+
...
|
|
655
|
+
|
|
656
|
+
def prepend(self, draw_func):
|
|
657
|
+
"""
|
|
658
|
+
|
|
659
|
+
:param draw_func:
|
|
660
|
+
"""
|
|
661
|
+
...
|
|
662
|
+
|
|
663
|
+
def property_overridable_library_set(self):
|
|
664
|
+
""" """
|
|
665
|
+
...
|
|
666
|
+
|
|
667
|
+
def property_unset(self):
|
|
668
|
+
""" """
|
|
669
|
+
...
|
|
670
|
+
|
|
671
|
+
def remove(self, draw_func):
|
|
672
|
+
"""
|
|
673
|
+
|
|
674
|
+
:param draw_func:
|
|
675
|
+
"""
|
|
676
|
+
...
|
|
677
|
+
|
|
678
|
+
def type_recast(self):
|
|
679
|
+
""" """
|
|
680
|
+
...
|
|
681
|
+
|
|
682
|
+
def values(self):
|
|
683
|
+
""" """
|
|
684
|
+
...
|
|
685
|
+
|
|
686
|
+
class CONSOLE_MT_language(bpy_types._GenericUI):
|
|
687
|
+
""" """
|
|
688
|
+
|
|
187
689
|
bl_label: typing.Any
|
|
690
|
+
""" """
|
|
691
|
+
|
|
188
692
|
bl_rna: typing.Any
|
|
693
|
+
""" """
|
|
694
|
+
|
|
189
695
|
id_data: typing.Any
|
|
696
|
+
""" """
|
|
697
|
+
|
|
698
|
+
def append(self, draw_func):
|
|
699
|
+
"""
|
|
700
|
+
|
|
701
|
+
:param draw_func:
|
|
702
|
+
"""
|
|
703
|
+
...
|
|
704
|
+
|
|
705
|
+
def as_pointer(self):
|
|
706
|
+
""" """
|
|
707
|
+
...
|
|
708
|
+
|
|
709
|
+
def bl_rna_get_subclass(self):
|
|
710
|
+
""" """
|
|
711
|
+
...
|
|
712
|
+
|
|
713
|
+
def bl_rna_get_subclass_py(self):
|
|
714
|
+
""" """
|
|
715
|
+
...
|
|
716
|
+
|
|
717
|
+
def draw(self, _context):
|
|
718
|
+
"""
|
|
719
|
+
|
|
720
|
+
:param _context:
|
|
721
|
+
"""
|
|
722
|
+
...
|
|
723
|
+
|
|
724
|
+
def draw_collapsible(self, context, layout):
|
|
725
|
+
"""
|
|
726
|
+
|
|
727
|
+
:param context:
|
|
728
|
+
:param layout:
|
|
729
|
+
"""
|
|
730
|
+
...
|
|
731
|
+
|
|
732
|
+
def draw_preset(self, _context):
|
|
733
|
+
"""
|
|
734
|
+
|
|
735
|
+
:param _context:
|
|
736
|
+
"""
|
|
737
|
+
...
|
|
738
|
+
|
|
739
|
+
def driver_add(self):
|
|
740
|
+
""" """
|
|
741
|
+
...
|
|
742
|
+
|
|
743
|
+
def driver_remove(self):
|
|
744
|
+
""" """
|
|
745
|
+
...
|
|
746
|
+
|
|
747
|
+
def get(self):
|
|
748
|
+
""" """
|
|
749
|
+
...
|
|
750
|
+
|
|
751
|
+
def id_properties_clear(self):
|
|
752
|
+
""" """
|
|
753
|
+
...
|
|
754
|
+
|
|
755
|
+
def id_properties_ensure(self):
|
|
756
|
+
""" """
|
|
757
|
+
...
|
|
758
|
+
|
|
759
|
+
def id_properties_ui(self):
|
|
760
|
+
""" """
|
|
761
|
+
...
|
|
762
|
+
|
|
763
|
+
def is_extended(self):
|
|
764
|
+
""" """
|
|
765
|
+
...
|
|
766
|
+
|
|
767
|
+
def is_property_hidden(self):
|
|
768
|
+
""" """
|
|
769
|
+
...
|
|
770
|
+
|
|
771
|
+
def is_property_overridable_library(self):
|
|
772
|
+
""" """
|
|
773
|
+
...
|
|
774
|
+
|
|
775
|
+
def is_property_readonly(self):
|
|
776
|
+
""" """
|
|
777
|
+
...
|
|
778
|
+
|
|
779
|
+
def is_property_set(self):
|
|
780
|
+
""" """
|
|
781
|
+
...
|
|
782
|
+
|
|
783
|
+
def items(self):
|
|
784
|
+
""" """
|
|
785
|
+
...
|
|
786
|
+
|
|
787
|
+
def keyframe_delete(self):
|
|
788
|
+
""" """
|
|
789
|
+
...
|
|
790
|
+
|
|
791
|
+
def keyframe_insert(self):
|
|
792
|
+
""" """
|
|
793
|
+
...
|
|
794
|
+
|
|
795
|
+
def keys(self):
|
|
796
|
+
""" """
|
|
797
|
+
...
|
|
798
|
+
|
|
799
|
+
def path_from_id(self):
|
|
800
|
+
""" """
|
|
801
|
+
...
|
|
190
802
|
|
|
191
|
-
def append(self, draw_func): ...
|
|
192
|
-
def as_pointer(self): ...
|
|
193
|
-
def bl_rna_get_subclass(self): ...
|
|
194
|
-
def bl_rna_get_subclass_py(self): ...
|
|
195
|
-
def draw(self, _context): ...
|
|
196
|
-
def draw_collapsible(self, context, layout): ...
|
|
197
|
-
def draw_preset(self, _context): ...
|
|
198
|
-
def driver_add(self): ...
|
|
199
|
-
def driver_remove(self): ...
|
|
200
|
-
def get(self): ...
|
|
201
|
-
def id_properties_clear(self): ...
|
|
202
|
-
def id_properties_ensure(self): ...
|
|
203
|
-
def id_properties_ui(self): ...
|
|
204
|
-
def is_extended(self): ...
|
|
205
|
-
def is_property_hidden(self): ...
|
|
206
|
-
def is_property_overridable_library(self): ...
|
|
207
|
-
def is_property_readonly(self): ...
|
|
208
|
-
def is_property_set(self): ...
|
|
209
|
-
def items(self): ...
|
|
210
|
-
def keyframe_delete(self): ...
|
|
211
|
-
def keyframe_insert(self): ...
|
|
212
|
-
def keys(self): ...
|
|
213
|
-
def path_from_id(self): ...
|
|
214
803
|
def path_menu(
|
|
215
804
|
self,
|
|
216
805
|
searchpaths,
|
|
@@ -221,44 +810,175 @@ class CONSOLE_MT_language(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
221
810
|
filter_path,
|
|
222
811
|
display_name,
|
|
223
812
|
add_operator,
|
|
224
|
-
):
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
813
|
+
):
|
|
814
|
+
"""
|
|
815
|
+
|
|
816
|
+
:param searchpaths:
|
|
817
|
+
:param operator:
|
|
818
|
+
:param props_default:
|
|
819
|
+
:param prop_filepath:
|
|
820
|
+
:param filter_ext:
|
|
821
|
+
:param filter_path:
|
|
822
|
+
:param display_name:
|
|
823
|
+
:param add_operator:
|
|
824
|
+
"""
|
|
825
|
+
...
|
|
826
|
+
|
|
827
|
+
def path_resolve(self):
|
|
828
|
+
""" """
|
|
829
|
+
...
|
|
830
|
+
|
|
831
|
+
def pop(self):
|
|
832
|
+
""" """
|
|
833
|
+
...
|
|
834
|
+
|
|
835
|
+
def prepend(self, draw_func):
|
|
836
|
+
"""
|
|
837
|
+
|
|
838
|
+
:param draw_func:
|
|
839
|
+
"""
|
|
840
|
+
...
|
|
841
|
+
|
|
842
|
+
def property_overridable_library_set(self):
|
|
843
|
+
""" """
|
|
844
|
+
...
|
|
845
|
+
|
|
846
|
+
def property_unset(self):
|
|
847
|
+
""" """
|
|
848
|
+
...
|
|
849
|
+
|
|
850
|
+
def remove(self, draw_func):
|
|
851
|
+
"""
|
|
852
|
+
|
|
853
|
+
:param draw_func:
|
|
854
|
+
"""
|
|
855
|
+
...
|
|
856
|
+
|
|
857
|
+
def type_recast(self):
|
|
858
|
+
""" """
|
|
859
|
+
...
|
|
860
|
+
|
|
861
|
+
def values(self):
|
|
862
|
+
""" """
|
|
863
|
+
...
|
|
864
|
+
|
|
865
|
+
class CONSOLE_MT_view(bpy_types._GenericUI):
|
|
866
|
+
""" """
|
|
867
|
+
|
|
235
868
|
bl_label: typing.Any
|
|
869
|
+
""" """
|
|
870
|
+
|
|
236
871
|
bl_rna: typing.Any
|
|
872
|
+
""" """
|
|
873
|
+
|
|
237
874
|
id_data: typing.Any
|
|
875
|
+
""" """
|
|
876
|
+
|
|
877
|
+
def append(self, draw_func):
|
|
878
|
+
"""
|
|
879
|
+
|
|
880
|
+
:param draw_func:
|
|
881
|
+
"""
|
|
882
|
+
...
|
|
883
|
+
|
|
884
|
+
def as_pointer(self):
|
|
885
|
+
""" """
|
|
886
|
+
...
|
|
887
|
+
|
|
888
|
+
def bl_rna_get_subclass(self):
|
|
889
|
+
""" """
|
|
890
|
+
...
|
|
891
|
+
|
|
892
|
+
def bl_rna_get_subclass_py(self):
|
|
893
|
+
""" """
|
|
894
|
+
...
|
|
895
|
+
|
|
896
|
+
def draw(self, _context):
|
|
897
|
+
"""
|
|
898
|
+
|
|
899
|
+
:param _context:
|
|
900
|
+
"""
|
|
901
|
+
...
|
|
902
|
+
|
|
903
|
+
def draw_collapsible(self, context, layout):
|
|
904
|
+
"""
|
|
905
|
+
|
|
906
|
+
:param context:
|
|
907
|
+
:param layout:
|
|
908
|
+
"""
|
|
909
|
+
...
|
|
910
|
+
|
|
911
|
+
def draw_preset(self, _context):
|
|
912
|
+
"""
|
|
913
|
+
|
|
914
|
+
:param _context:
|
|
915
|
+
"""
|
|
916
|
+
...
|
|
917
|
+
|
|
918
|
+
def driver_add(self):
|
|
919
|
+
""" """
|
|
920
|
+
...
|
|
921
|
+
|
|
922
|
+
def driver_remove(self):
|
|
923
|
+
""" """
|
|
924
|
+
...
|
|
925
|
+
|
|
926
|
+
def get(self):
|
|
927
|
+
""" """
|
|
928
|
+
...
|
|
929
|
+
|
|
930
|
+
def id_properties_clear(self):
|
|
931
|
+
""" """
|
|
932
|
+
...
|
|
933
|
+
|
|
934
|
+
def id_properties_ensure(self):
|
|
935
|
+
""" """
|
|
936
|
+
...
|
|
937
|
+
|
|
938
|
+
def id_properties_ui(self):
|
|
939
|
+
""" """
|
|
940
|
+
...
|
|
941
|
+
|
|
942
|
+
def is_extended(self):
|
|
943
|
+
""" """
|
|
944
|
+
...
|
|
945
|
+
|
|
946
|
+
def is_property_hidden(self):
|
|
947
|
+
""" """
|
|
948
|
+
...
|
|
949
|
+
|
|
950
|
+
def is_property_overridable_library(self):
|
|
951
|
+
""" """
|
|
952
|
+
...
|
|
953
|
+
|
|
954
|
+
def is_property_readonly(self):
|
|
955
|
+
""" """
|
|
956
|
+
...
|
|
957
|
+
|
|
958
|
+
def is_property_set(self):
|
|
959
|
+
""" """
|
|
960
|
+
...
|
|
961
|
+
|
|
962
|
+
def items(self):
|
|
963
|
+
""" """
|
|
964
|
+
...
|
|
965
|
+
|
|
966
|
+
def keyframe_delete(self):
|
|
967
|
+
""" """
|
|
968
|
+
...
|
|
969
|
+
|
|
970
|
+
def keyframe_insert(self):
|
|
971
|
+
""" """
|
|
972
|
+
...
|
|
973
|
+
|
|
974
|
+
def keys(self):
|
|
975
|
+
""" """
|
|
976
|
+
...
|
|
977
|
+
|
|
978
|
+
def path_from_id(self):
|
|
979
|
+
""" """
|
|
980
|
+
...
|
|
238
981
|
|
|
239
|
-
def append(self, draw_func): ...
|
|
240
|
-
def as_pointer(self): ...
|
|
241
|
-
def bl_rna_get_subclass(self): ...
|
|
242
|
-
def bl_rna_get_subclass_py(self): ...
|
|
243
|
-
def draw(self, _context): ...
|
|
244
|
-
def draw_collapsible(self, context, layout): ...
|
|
245
|
-
def draw_preset(self, _context): ...
|
|
246
|
-
def driver_add(self): ...
|
|
247
|
-
def driver_remove(self): ...
|
|
248
|
-
def get(self): ...
|
|
249
|
-
def id_properties_clear(self): ...
|
|
250
|
-
def id_properties_ensure(self): ...
|
|
251
|
-
def id_properties_ui(self): ...
|
|
252
|
-
def is_extended(self): ...
|
|
253
|
-
def is_property_hidden(self): ...
|
|
254
|
-
def is_property_overridable_library(self): ...
|
|
255
|
-
def is_property_readonly(self): ...
|
|
256
|
-
def is_property_set(self): ...
|
|
257
|
-
def items(self): ...
|
|
258
|
-
def keyframe_delete(self): ...
|
|
259
|
-
def keyframe_insert(self): ...
|
|
260
|
-
def keys(self): ...
|
|
261
|
-
def path_from_id(self): ...
|
|
262
982
|
def path_menu(
|
|
263
983
|
self,
|
|
264
984
|
searchpaths,
|
|
@@ -269,14 +989,59 @@ class CONSOLE_MT_view(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
269
989
|
filter_path,
|
|
270
990
|
display_name,
|
|
271
991
|
add_operator,
|
|
272
|
-
):
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
992
|
+
):
|
|
993
|
+
"""
|
|
994
|
+
|
|
995
|
+
:param searchpaths:
|
|
996
|
+
:param operator:
|
|
997
|
+
:param props_default:
|
|
998
|
+
:param prop_filepath:
|
|
999
|
+
:param filter_ext:
|
|
1000
|
+
:param filter_path:
|
|
1001
|
+
:param display_name:
|
|
1002
|
+
:param add_operator:
|
|
1003
|
+
"""
|
|
1004
|
+
...
|
|
1005
|
+
|
|
1006
|
+
def path_resolve(self):
|
|
1007
|
+
""" """
|
|
1008
|
+
...
|
|
1009
|
+
|
|
1010
|
+
def pop(self):
|
|
1011
|
+
""" """
|
|
1012
|
+
...
|
|
1013
|
+
|
|
1014
|
+
def prepend(self, draw_func):
|
|
1015
|
+
"""
|
|
1016
|
+
|
|
1017
|
+
:param draw_func:
|
|
1018
|
+
"""
|
|
1019
|
+
...
|
|
1020
|
+
|
|
1021
|
+
def property_overridable_library_set(self):
|
|
1022
|
+
""" """
|
|
1023
|
+
...
|
|
1024
|
+
|
|
1025
|
+
def property_unset(self):
|
|
1026
|
+
""" """
|
|
1027
|
+
...
|
|
1028
|
+
|
|
1029
|
+
def remove(self, draw_func):
|
|
1030
|
+
"""
|
|
1031
|
+
|
|
1032
|
+
:param draw_func:
|
|
1033
|
+
"""
|
|
1034
|
+
...
|
|
1035
|
+
|
|
1036
|
+
def type_recast(self):
|
|
1037
|
+
""" """
|
|
1038
|
+
...
|
|
1039
|
+
|
|
1040
|
+
def values(self):
|
|
1041
|
+
""" """
|
|
1042
|
+
...
|
|
1043
|
+
|
|
1044
|
+
def add_scrollback(text, text_type):
|
|
1045
|
+
""" """
|
|
1046
|
+
|
|
1047
|
+
...
|