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
bpy_types/__init__.pyi
CHANGED
|
@@ -3,1102 +3,3978 @@ import typing
|
|
|
3
3
|
GenericType = typing.TypeVar("GenericType")
|
|
4
4
|
|
|
5
5
|
class AddonPreferences:
|
|
6
|
+
""" """
|
|
7
|
+
|
|
6
8
|
bl_rna: typing.Any
|
|
9
|
+
""" """
|
|
10
|
+
|
|
7
11
|
id_data: typing.Any
|
|
12
|
+
""" """
|
|
8
13
|
|
|
9
|
-
def as_pointer(self):
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
def driver_add(self): ...
|
|
13
|
-
def driver_remove(self): ...
|
|
14
|
-
def get(self): ...
|
|
15
|
-
def id_properties_clear(self): ...
|
|
16
|
-
def id_properties_ensure(self): ...
|
|
17
|
-
def id_properties_ui(self): ...
|
|
18
|
-
def is_property_hidden(self): ...
|
|
19
|
-
def is_property_overridable_library(self): ...
|
|
20
|
-
def is_property_readonly(self): ...
|
|
21
|
-
def is_property_set(self): ...
|
|
22
|
-
def items(self): ...
|
|
23
|
-
def keyframe_delete(self): ...
|
|
24
|
-
def keyframe_insert(self): ...
|
|
25
|
-
def keys(self): ...
|
|
26
|
-
def path_from_id(self): ...
|
|
27
|
-
def path_resolve(self): ...
|
|
28
|
-
def pop(self): ...
|
|
29
|
-
def property_overridable_library_set(self): ...
|
|
30
|
-
def property_unset(self): ...
|
|
31
|
-
def type_recast(self): ...
|
|
32
|
-
def values(self): ...
|
|
14
|
+
def as_pointer(self):
|
|
15
|
+
""" """
|
|
16
|
+
...
|
|
33
17
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
18
|
+
def bl_rna_get_subclass(self):
|
|
19
|
+
""" """
|
|
20
|
+
...
|
|
37
21
|
|
|
38
|
-
def
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
def driver_add(self): ...
|
|
42
|
-
def driver_remove(self): ...
|
|
43
|
-
def get(self): ...
|
|
44
|
-
def id_properties_clear(self): ...
|
|
45
|
-
def id_properties_ensure(self): ...
|
|
46
|
-
def id_properties_ui(self): ...
|
|
47
|
-
def is_property_hidden(self): ...
|
|
48
|
-
def is_property_overridable_library(self): ...
|
|
49
|
-
def is_property_readonly(self): ...
|
|
50
|
-
def is_property_set(self): ...
|
|
51
|
-
def items(self): ...
|
|
52
|
-
def keyframe_delete(self): ...
|
|
53
|
-
def keyframe_insert(self): ...
|
|
54
|
-
def keys(self): ...
|
|
55
|
-
def path_from_id(self): ...
|
|
56
|
-
def path_resolve(self): ...
|
|
57
|
-
def pop(self): ...
|
|
58
|
-
def property_overridable_library_set(self): ...
|
|
59
|
-
def property_unset(self): ...
|
|
60
|
-
def type_recast(self): ...
|
|
61
|
-
def values(self): ...
|
|
22
|
+
def bl_rna_get_subclass_py(self):
|
|
23
|
+
""" """
|
|
24
|
+
...
|
|
62
25
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
id_data: typing.Any
|
|
26
|
+
def driver_add(self):
|
|
27
|
+
""" """
|
|
28
|
+
...
|
|
67
29
|
|
|
68
|
-
def
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
def driver_add(self): ...
|
|
72
|
-
def driver_remove(self): ...
|
|
73
|
-
def get(self): ...
|
|
74
|
-
def id_properties_clear(self): ...
|
|
75
|
-
def id_properties_ensure(self): ...
|
|
76
|
-
def id_properties_ui(self): ...
|
|
77
|
-
def is_property_hidden(self): ...
|
|
78
|
-
def is_property_overridable_library(self): ...
|
|
79
|
-
def is_property_readonly(self): ...
|
|
80
|
-
def is_property_set(self): ...
|
|
81
|
-
def items(self): ...
|
|
82
|
-
def keyframe_delete(self): ...
|
|
83
|
-
def keyframe_insert(self): ...
|
|
84
|
-
def keys(self): ...
|
|
85
|
-
def path_from_id(self): ...
|
|
86
|
-
def path_resolve(self): ...
|
|
87
|
-
def pop(self): ...
|
|
88
|
-
def property_overridable_library_set(self): ...
|
|
89
|
-
def property_unset(self): ...
|
|
90
|
-
def type_recast(self): ...
|
|
91
|
-
def values(self): ...
|
|
30
|
+
def driver_remove(self):
|
|
31
|
+
""" """
|
|
32
|
+
...
|
|
92
33
|
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
34
|
+
def get(self):
|
|
35
|
+
""" """
|
|
36
|
+
...
|
|
96
37
|
|
|
97
|
-
def
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
def copy(self): ...
|
|
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_property_hidden(self): ...
|
|
108
|
-
def is_property_overridable_library(self): ...
|
|
109
|
-
def is_property_readonly(self): ...
|
|
110
|
-
def is_property_set(self): ...
|
|
111
|
-
def items(self): ...
|
|
112
|
-
def keyframe_delete(self): ...
|
|
113
|
-
def keyframe_insert(self): ...
|
|
114
|
-
def keys(self): ...
|
|
115
|
-
def path_from_id(self): ...
|
|
116
|
-
def path_resolve(self, path, coerce): ...
|
|
117
|
-
def pop(self): ...
|
|
118
|
-
def property_overridable_library_set(self): ...
|
|
119
|
-
def property_unset(self): ...
|
|
120
|
-
def temp_override(self): ...
|
|
121
|
-
def type_recast(self): ...
|
|
122
|
-
def values(self): ...
|
|
38
|
+
def id_properties_clear(self):
|
|
39
|
+
""" """
|
|
40
|
+
...
|
|
123
41
|
|
|
124
|
-
|
|
125
|
-
|
|
42
|
+
def id_properties_ensure(self):
|
|
43
|
+
""" """
|
|
44
|
+
...
|
|
126
45
|
|
|
127
|
-
def
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
def driver_add(self): ...
|
|
131
|
-
def driver_remove(self): ...
|
|
132
|
-
def get(self): ...
|
|
133
|
-
def id_properties_clear(self): ...
|
|
134
|
-
def id_properties_ensure(self): ...
|
|
135
|
-
def id_properties_ui(self): ...
|
|
136
|
-
def is_property_hidden(self): ...
|
|
137
|
-
def is_property_overridable_library(self): ...
|
|
138
|
-
def is_property_readonly(self): ...
|
|
139
|
-
def is_property_set(self): ...
|
|
140
|
-
def items(self): ...
|
|
141
|
-
def keyframe_delete(self): ...
|
|
142
|
-
def keyframe_insert(self): ...
|
|
143
|
-
def keys(self): ...
|
|
144
|
-
def path_from_id(self): ...
|
|
145
|
-
def path_resolve(self): ...
|
|
146
|
-
def pop(self): ...
|
|
147
|
-
def property_overridable_library_set(self): ...
|
|
148
|
-
def property_unset(self): ...
|
|
149
|
-
def type_recast(self): ...
|
|
150
|
-
def values(self): ...
|
|
46
|
+
def id_properties_ui(self):
|
|
47
|
+
""" """
|
|
48
|
+
...
|
|
151
49
|
|
|
152
|
-
|
|
153
|
-
|
|
50
|
+
def is_property_hidden(self):
|
|
51
|
+
""" """
|
|
52
|
+
...
|
|
154
53
|
|
|
155
|
-
def
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
def draw_custom_shape(self, shape, matrix, select_id): ...
|
|
159
|
-
def driver_add(self): ...
|
|
160
|
-
def driver_remove(self): ...
|
|
161
|
-
def get(self): ...
|
|
162
|
-
def id_properties_clear(self): ...
|
|
163
|
-
def id_properties_ensure(self): ...
|
|
164
|
-
def id_properties_ui(self): ...
|
|
165
|
-
def is_property_hidden(self): ...
|
|
166
|
-
def is_property_overridable_library(self): ...
|
|
167
|
-
def is_property_readonly(self): ...
|
|
168
|
-
def is_property_set(self): ...
|
|
169
|
-
def items(self): ...
|
|
170
|
-
def keyframe_delete(self): ...
|
|
171
|
-
def keyframe_insert(self): ...
|
|
172
|
-
def keys(self): ...
|
|
173
|
-
def new_custom_shape(self, type, verts): ...
|
|
174
|
-
def path_from_id(self): ...
|
|
175
|
-
def path_resolve(self): ...
|
|
176
|
-
def pop(self): ...
|
|
177
|
-
def property_overridable_library_set(self): ...
|
|
178
|
-
def property_unset(self): ...
|
|
179
|
-
def target_get_range(self): ...
|
|
180
|
-
def target_get_value(self): ...
|
|
181
|
-
def target_set_handler(self): ...
|
|
182
|
-
def target_set_value(self): ...
|
|
183
|
-
def type_recast(self): ...
|
|
184
|
-
def values(self): ...
|
|
54
|
+
def is_property_overridable_library(self):
|
|
55
|
+
""" """
|
|
56
|
+
...
|
|
185
57
|
|
|
186
|
-
|
|
187
|
-
|
|
58
|
+
def is_property_readonly(self):
|
|
59
|
+
""" """
|
|
60
|
+
...
|
|
188
61
|
|
|
189
|
-
def
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
def driver_add(self): ...
|
|
193
|
-
def driver_remove(self): ...
|
|
194
|
-
def get(self): ...
|
|
195
|
-
def id_properties_clear(self): ...
|
|
196
|
-
def id_properties_ensure(self): ...
|
|
197
|
-
def id_properties_ui(self): ...
|
|
198
|
-
def is_property_hidden(self): ...
|
|
199
|
-
def is_property_overridable_library(self): ...
|
|
200
|
-
def is_property_readonly(self): ...
|
|
201
|
-
def is_property_set(self): ...
|
|
202
|
-
def items(self): ...
|
|
203
|
-
def keyframe_delete(self): ...
|
|
204
|
-
def keyframe_insert(self): ...
|
|
205
|
-
def keys(self): ...
|
|
206
|
-
def path_from_id(self): ...
|
|
207
|
-
def path_resolve(self): ...
|
|
208
|
-
def pop(self): ...
|
|
209
|
-
def property_overridable_library_set(self): ...
|
|
210
|
-
def property_unset(self): ...
|
|
211
|
-
def type_recast(self): ...
|
|
212
|
-
def values(self): ...
|
|
62
|
+
def is_property_set(self):
|
|
63
|
+
""" """
|
|
64
|
+
...
|
|
213
65
|
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
66
|
+
def items(self):
|
|
67
|
+
""" """
|
|
68
|
+
...
|
|
217
69
|
|
|
218
|
-
def
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
def driver_add(self): ...
|
|
222
|
-
def driver_remove(self): ...
|
|
223
|
-
def get(self): ...
|
|
224
|
-
def id_properties_clear(self): ...
|
|
225
|
-
def id_properties_ensure(self): ...
|
|
226
|
-
def id_properties_ui(self): ...
|
|
227
|
-
def is_property_hidden(self): ...
|
|
228
|
-
def is_property_overridable_library(self): ...
|
|
229
|
-
def is_property_readonly(self): ...
|
|
230
|
-
def is_property_set(self): ...
|
|
231
|
-
def items(self): ...
|
|
232
|
-
def keyframe_delete(self): ...
|
|
233
|
-
def keyframe_insert(self): ...
|
|
234
|
-
def keys(self): ...
|
|
235
|
-
def path_from_id(self): ...
|
|
236
|
-
def path_resolve(self): ...
|
|
237
|
-
def pop(self): ...
|
|
238
|
-
def property_overridable_library_set(self): ...
|
|
239
|
-
def property_unset(self): ...
|
|
240
|
-
def type_recast(self): ...
|
|
241
|
-
def values(self): ...
|
|
70
|
+
def keyframe_delete(self):
|
|
71
|
+
""" """
|
|
72
|
+
...
|
|
242
73
|
|
|
243
|
-
|
|
244
|
-
|
|
74
|
+
def keyframe_insert(self):
|
|
75
|
+
""" """
|
|
76
|
+
...
|
|
245
77
|
|
|
246
|
-
def
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
def define(self, opname): ...
|
|
250
|
-
def driver_add(self): ...
|
|
251
|
-
def driver_remove(self): ...
|
|
252
|
-
def get(self): ...
|
|
253
|
-
def id_properties_clear(self): ...
|
|
254
|
-
def id_properties_ensure(self): ...
|
|
255
|
-
def id_properties_ui(self): ...
|
|
256
|
-
def is_property_hidden(self): ...
|
|
257
|
-
def is_property_overridable_library(self): ...
|
|
258
|
-
def is_property_readonly(self): ...
|
|
259
|
-
def is_property_set(self): ...
|
|
260
|
-
def items(self): ...
|
|
261
|
-
def keyframe_delete(self): ...
|
|
262
|
-
def keyframe_insert(self): ...
|
|
263
|
-
def keys(self): ...
|
|
264
|
-
def path_from_id(self): ...
|
|
265
|
-
def path_resolve(self): ...
|
|
266
|
-
def pop(self): ...
|
|
267
|
-
def property_overridable_library_set(self): ...
|
|
268
|
-
def property_unset(self): ...
|
|
269
|
-
def type_recast(self): ...
|
|
270
|
-
def values(self): ...
|
|
78
|
+
def keys(self):
|
|
79
|
+
""" """
|
|
80
|
+
...
|
|
271
81
|
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
82
|
+
def path_from_id(self):
|
|
83
|
+
""" """
|
|
84
|
+
...
|
|
275
85
|
|
|
276
|
-
def
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
def driver_add(self): ...
|
|
280
|
-
def driver_remove(self): ...
|
|
281
|
-
def get(self): ...
|
|
282
|
-
def id_properties_clear(self): ...
|
|
283
|
-
def id_properties_ensure(self): ...
|
|
284
|
-
def id_properties_ui(self): ...
|
|
285
|
-
def is_property_hidden(self): ...
|
|
286
|
-
def is_property_overridable_library(self): ...
|
|
287
|
-
def is_property_readonly(self): ...
|
|
288
|
-
def is_property_set(self): ...
|
|
289
|
-
def items(self): ...
|
|
290
|
-
def keyframe_delete(self): ...
|
|
291
|
-
def keyframe_insert(self): ...
|
|
292
|
-
def keys(self): ...
|
|
293
|
-
def path_from_id(self): ...
|
|
294
|
-
def path_resolve(self): ...
|
|
295
|
-
def pop(self): ...
|
|
296
|
-
def property_overridable_library_set(self): ...
|
|
297
|
-
def property_unset(self): ...
|
|
298
|
-
def type_recast(self): ...
|
|
299
|
-
def values(self): ...
|
|
86
|
+
def path_resolve(self):
|
|
87
|
+
""" """
|
|
88
|
+
...
|
|
300
89
|
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
id_data: typing.Any
|
|
90
|
+
def pop(self):
|
|
91
|
+
""" """
|
|
92
|
+
...
|
|
305
93
|
|
|
306
|
-
def
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
def driver_add(self): ...
|
|
310
|
-
def driver_remove(self): ...
|
|
311
|
-
def get(self): ...
|
|
312
|
-
def id_properties_clear(self): ...
|
|
313
|
-
def id_properties_ensure(self): ...
|
|
314
|
-
def id_properties_ui(self): ...
|
|
315
|
-
def is_property_hidden(self): ...
|
|
316
|
-
def is_property_overridable_library(self): ...
|
|
317
|
-
def is_property_readonly(self): ...
|
|
318
|
-
def is_property_set(self): ...
|
|
319
|
-
def items(self): ...
|
|
320
|
-
def keyframe_delete(self): ...
|
|
321
|
-
def keyframe_insert(self): ...
|
|
322
|
-
def keys(self): ...
|
|
323
|
-
def path_from_id(self): ...
|
|
324
|
-
def path_resolve(self): ...
|
|
325
|
-
def pop(self): ...
|
|
326
|
-
def property_overridable_library_set(self): ...
|
|
327
|
-
def property_unset(self): ...
|
|
328
|
-
def type_recast(self): ...
|
|
329
|
-
def values(self): ...
|
|
94
|
+
def property_overridable_library_set(self):
|
|
95
|
+
""" """
|
|
96
|
+
...
|
|
330
97
|
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
loop_indices: typing.Any
|
|
98
|
+
def property_unset(self):
|
|
99
|
+
""" """
|
|
100
|
+
...
|
|
335
101
|
|
|
336
|
-
def
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
def driver_add(self): ...
|
|
340
|
-
def driver_remove(self): ...
|
|
341
|
-
def get(self): ...
|
|
342
|
-
def id_properties_clear(self): ...
|
|
343
|
-
def id_properties_ensure(self): ...
|
|
344
|
-
def id_properties_ui(self): ...
|
|
345
|
-
def is_property_hidden(self): ...
|
|
346
|
-
def is_property_overridable_library(self): ...
|
|
347
|
-
def is_property_readonly(self): ...
|
|
348
|
-
def is_property_set(self): ...
|
|
349
|
-
def items(self): ...
|
|
350
|
-
def keyframe_delete(self): ...
|
|
351
|
-
def keyframe_insert(self): ...
|
|
352
|
-
def keys(self): ...
|
|
353
|
-
def path_from_id(self): ...
|
|
354
|
-
def path_resolve(self): ...
|
|
355
|
-
def pop(self): ...
|
|
356
|
-
def property_overridable_library_set(self): ...
|
|
357
|
-
def property_unset(self): ...
|
|
358
|
-
def type_recast(self): ...
|
|
359
|
-
def values(self): ...
|
|
102
|
+
def type_recast(self):
|
|
103
|
+
""" """
|
|
104
|
+
...
|
|
360
105
|
|
|
361
|
-
|
|
362
|
-
|
|
106
|
+
def values(self):
|
|
107
|
+
""" """
|
|
108
|
+
...
|
|
363
109
|
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
def get(self): ...
|
|
370
|
-
def id_properties_clear(self): ...
|
|
371
|
-
def id_properties_ensure(self): ...
|
|
372
|
-
def id_properties_ui(self): ...
|
|
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(self, _ntree): ...
|
|
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): ...
|
|
110
|
+
class AssetShelf:
|
|
111
|
+
""" """
|
|
112
|
+
|
|
113
|
+
bl_rna: typing.Any
|
|
114
|
+
""" """
|
|
389
115
|
|
|
390
|
-
class NodeSocket:
|
|
391
116
|
id_data: typing.Any
|
|
392
|
-
|
|
117
|
+
""" """
|
|
393
118
|
|
|
394
|
-
def as_pointer(self):
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
def driver_add(self): ...
|
|
398
|
-
def driver_remove(self): ...
|
|
399
|
-
def get(self): ...
|
|
400
|
-
def id_properties_clear(self): ...
|
|
401
|
-
def id_properties_ensure(self): ...
|
|
402
|
-
def id_properties_ui(self): ...
|
|
403
|
-
def is_property_hidden(self): ...
|
|
404
|
-
def is_property_overridable_library(self): ...
|
|
405
|
-
def is_property_readonly(self): ...
|
|
406
|
-
def is_property_set(self): ...
|
|
407
|
-
def items(self): ...
|
|
408
|
-
def keyframe_delete(self): ...
|
|
409
|
-
def keyframe_insert(self): ...
|
|
410
|
-
def keys(self): ...
|
|
411
|
-
def path_from_id(self): ...
|
|
412
|
-
def path_resolve(self): ...
|
|
413
|
-
def pop(self): ...
|
|
414
|
-
def property_overridable_library_set(self): ...
|
|
415
|
-
def property_unset(self): ...
|
|
416
|
-
def type_recast(self): ...
|
|
417
|
-
def values(self): ...
|
|
119
|
+
def as_pointer(self):
|
|
120
|
+
""" """
|
|
121
|
+
...
|
|
418
122
|
|
|
419
|
-
|
|
420
|
-
|
|
123
|
+
def bl_rna_get_subclass(self):
|
|
124
|
+
""" """
|
|
125
|
+
...
|
|
421
126
|
|
|
422
|
-
def
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
def driver_add(self): ...
|
|
426
|
-
def driver_remove(self): ...
|
|
427
|
-
def get(self): ...
|
|
428
|
-
def id_properties_clear(self): ...
|
|
429
|
-
def id_properties_ensure(self): ...
|
|
430
|
-
def id_properties_ui(self): ...
|
|
431
|
-
def is_property_hidden(self): ...
|
|
432
|
-
def is_property_overridable_library(self): ...
|
|
433
|
-
def is_property_readonly(self): ...
|
|
434
|
-
def is_property_set(self): ...
|
|
435
|
-
def items(self): ...
|
|
436
|
-
def keyframe_delete(self): ...
|
|
437
|
-
def keyframe_insert(self): ...
|
|
438
|
-
def keys(self): ...
|
|
439
|
-
def path_from_id(self): ...
|
|
440
|
-
def path_resolve(self): ...
|
|
441
|
-
def pop(self): ...
|
|
442
|
-
def property_overridable_library_set(self): ...
|
|
443
|
-
def property_unset(self): ...
|
|
444
|
-
def type_recast(self): ...
|
|
445
|
-
def values(self): ...
|
|
127
|
+
def bl_rna_get_subclass_py(self):
|
|
128
|
+
""" """
|
|
129
|
+
...
|
|
446
130
|
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
131
|
+
def driver_add(self):
|
|
132
|
+
""" """
|
|
133
|
+
...
|
|
450
134
|
|
|
451
|
-
def
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
def bl_rna_get_subclass_py(self): ...
|
|
455
|
-
def driver_add(self): ...
|
|
456
|
-
def driver_remove(self): ...
|
|
457
|
-
def get(self): ...
|
|
458
|
-
def id_properties_clear(self): ...
|
|
459
|
-
def id_properties_ensure(self): ...
|
|
460
|
-
def id_properties_ui(self): ...
|
|
461
|
-
def is_property_hidden(self): ...
|
|
462
|
-
def is_property_overridable_library(self): ...
|
|
463
|
-
def is_property_readonly(self): ...
|
|
464
|
-
def is_property_set(self): ...
|
|
465
|
-
def items(self): ...
|
|
466
|
-
def keyframe_delete(self): ...
|
|
467
|
-
def keyframe_insert(self): ...
|
|
468
|
-
def keys(self): ...
|
|
469
|
-
def path_from_id(self): ...
|
|
470
|
-
def path_resolve(self): ...
|
|
471
|
-
def poll_message_set(self): ...
|
|
472
|
-
def pop(self): ...
|
|
473
|
-
def property_overridable_library_set(self): ...
|
|
474
|
-
def property_unset(self): ...
|
|
475
|
-
def type_recast(self): ...
|
|
476
|
-
def values(self): ...
|
|
135
|
+
def driver_remove(self):
|
|
136
|
+
""" """
|
|
137
|
+
...
|
|
477
138
|
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
139
|
+
def get(self):
|
|
140
|
+
""" """
|
|
141
|
+
...
|
|
481
142
|
|
|
482
|
-
def
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
def driver_add(self): ...
|
|
486
|
-
def driver_remove(self): ...
|
|
487
|
-
def get(self): ...
|
|
488
|
-
def id_properties_clear(self): ...
|
|
489
|
-
def id_properties_ensure(self): ...
|
|
490
|
-
def id_properties_ui(self): ...
|
|
491
|
-
def is_property_hidden(self): ...
|
|
492
|
-
def is_property_overridable_library(self): ...
|
|
493
|
-
def is_property_readonly(self): ...
|
|
494
|
-
def is_property_set(self): ...
|
|
495
|
-
def items(self): ...
|
|
496
|
-
def keyframe_delete(self): ...
|
|
497
|
-
def keyframe_insert(self): ...
|
|
498
|
-
def keys(self): ...
|
|
499
|
-
def path_from_id(self): ...
|
|
500
|
-
def path_resolve(self): ...
|
|
501
|
-
def pop(self): ...
|
|
502
|
-
def property_overridable_library_set(self): ...
|
|
503
|
-
def property_unset(self): ...
|
|
504
|
-
def type_recast(self): ...
|
|
505
|
-
def values(self): ...
|
|
143
|
+
def id_properties_clear(self):
|
|
144
|
+
""" """
|
|
145
|
+
...
|
|
506
146
|
|
|
507
|
-
|
|
508
|
-
|
|
147
|
+
def id_properties_ensure(self):
|
|
148
|
+
""" """
|
|
149
|
+
...
|
|
509
150
|
|
|
510
|
-
def
|
|
151
|
+
def id_properties_ui(self):
|
|
152
|
+
""" """
|
|
153
|
+
...
|
|
511
154
|
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
155
|
+
def is_property_hidden(self):
|
|
156
|
+
""" """
|
|
157
|
+
...
|
|
515
158
|
|
|
516
|
-
def
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
def driver_add(self): ...
|
|
520
|
-
def driver_remove(self): ...
|
|
521
|
-
def get(self): ...
|
|
522
|
-
def id_properties_clear(self): ...
|
|
523
|
-
def id_properties_ensure(self): ...
|
|
524
|
-
def id_properties_ui(self): ...
|
|
525
|
-
def is_property_hidden(self): ...
|
|
526
|
-
def is_property_overridable_library(self): ...
|
|
527
|
-
def is_property_readonly(self): ...
|
|
528
|
-
def is_property_set(self): ...
|
|
529
|
-
def items(self): ...
|
|
530
|
-
def keyframe_delete(self): ...
|
|
531
|
-
def keyframe_insert(self): ...
|
|
532
|
-
def keys(self): ...
|
|
533
|
-
def path_from_id(self): ...
|
|
534
|
-
def path_resolve(self): ...
|
|
535
|
-
def pop(self): ...
|
|
536
|
-
def property_overridable_library_set(self): ...
|
|
537
|
-
def property_unset(self): ...
|
|
538
|
-
def type_recast(self): ...
|
|
539
|
-
def values(self): ...
|
|
159
|
+
def is_property_overridable_library(self):
|
|
160
|
+
""" """
|
|
161
|
+
...
|
|
540
162
|
|
|
541
|
-
|
|
542
|
-
|
|
163
|
+
def is_property_readonly(self):
|
|
164
|
+
""" """
|
|
165
|
+
...
|
|
543
166
|
|
|
544
|
-
def
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
def driver_add(self): ...
|
|
548
|
-
def driver_remove(self): ...
|
|
549
|
-
def get(self): ...
|
|
550
|
-
def id_properties_clear(self): ...
|
|
551
|
-
def id_properties_ensure(self): ...
|
|
552
|
-
def id_properties_ui(self): ...
|
|
553
|
-
def is_property_hidden(self): ...
|
|
554
|
-
def is_property_overridable_library(self): ...
|
|
555
|
-
def is_property_readonly(self): ...
|
|
556
|
-
def is_property_set(self): ...
|
|
557
|
-
def items(self): ...
|
|
558
|
-
def keyframe_delete(self): ...
|
|
559
|
-
def keyframe_insert(self): ...
|
|
560
|
-
def keys(self): ...
|
|
561
|
-
def path_from_id(self): ...
|
|
562
|
-
def path_resolve(self): ...
|
|
563
|
-
def pop(self): ...
|
|
564
|
-
def property_overridable_library_set(self): ...
|
|
565
|
-
def property_unset(self): ...
|
|
566
|
-
def type_recast(self): ...
|
|
567
|
-
def values(self): ...
|
|
568
|
-
|
|
569
|
-
class UserExtensionRepo:
|
|
570
|
-
directory: typing.Any
|
|
571
|
-
id_data: typing.Any
|
|
167
|
+
def is_property_set(self):
|
|
168
|
+
""" """
|
|
169
|
+
...
|
|
572
170
|
|
|
573
|
-
def
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
def
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
def
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
def
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
def
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
def
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
171
|
+
def items(self):
|
|
172
|
+
""" """
|
|
173
|
+
...
|
|
174
|
+
|
|
175
|
+
def keyframe_delete(self):
|
|
176
|
+
""" """
|
|
177
|
+
...
|
|
178
|
+
|
|
179
|
+
def keyframe_insert(self):
|
|
180
|
+
""" """
|
|
181
|
+
...
|
|
182
|
+
|
|
183
|
+
def keys(self):
|
|
184
|
+
""" """
|
|
185
|
+
...
|
|
186
|
+
|
|
187
|
+
def path_from_id(self):
|
|
188
|
+
""" """
|
|
189
|
+
...
|
|
190
|
+
|
|
191
|
+
def path_resolve(self):
|
|
192
|
+
""" """
|
|
193
|
+
...
|
|
194
|
+
|
|
195
|
+
def pop(self):
|
|
196
|
+
""" """
|
|
197
|
+
...
|
|
198
|
+
|
|
199
|
+
def property_overridable_library_set(self):
|
|
200
|
+
""" """
|
|
201
|
+
...
|
|
202
|
+
|
|
203
|
+
def property_unset(self):
|
|
204
|
+
""" """
|
|
205
|
+
...
|
|
206
|
+
|
|
207
|
+
def type_recast(self):
|
|
208
|
+
""" """
|
|
209
|
+
...
|
|
210
|
+
|
|
211
|
+
def values(self):
|
|
212
|
+
""" """
|
|
213
|
+
...
|
|
214
|
+
|
|
215
|
+
class Bone(_GenericBone):
|
|
216
|
+
""" """
|
|
597
217
|
|
|
598
|
-
class _GenericBone:
|
|
599
218
|
basename: typing.Any
|
|
219
|
+
""" """
|
|
220
|
+
|
|
221
|
+
bl_rna: typing.Any
|
|
222
|
+
""" """
|
|
223
|
+
|
|
600
224
|
center: typing.Any
|
|
225
|
+
""" """
|
|
226
|
+
|
|
601
227
|
children_recursive: typing.Any
|
|
228
|
+
""" """
|
|
229
|
+
|
|
602
230
|
children_recursive_basename: typing.Any
|
|
231
|
+
""" """
|
|
232
|
+
|
|
233
|
+
id_data: typing.Any
|
|
234
|
+
""" """
|
|
235
|
+
|
|
603
236
|
parent_recursive: typing.Any
|
|
237
|
+
""" """
|
|
238
|
+
|
|
604
239
|
vector: typing.Any
|
|
240
|
+
""" """
|
|
241
|
+
|
|
605
242
|
x_axis: typing.Any
|
|
243
|
+
""" """
|
|
244
|
+
|
|
606
245
|
y_axis: typing.Any
|
|
246
|
+
""" """
|
|
247
|
+
|
|
607
248
|
z_axis: typing.Any
|
|
249
|
+
""" """
|
|
608
250
|
|
|
609
|
-
def
|
|
610
|
-
|
|
251
|
+
def AxisRollFromMatrix(self):
|
|
252
|
+
""" """
|
|
253
|
+
...
|
|
611
254
|
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
def prepend(self, draw_func): ...
|
|
616
|
-
def remove(self, draw_func): ...
|
|
255
|
+
def MatrixFromAxisRoll(self):
|
|
256
|
+
""" """
|
|
257
|
+
...
|
|
617
258
|
|
|
618
|
-
|
|
619
|
-
|
|
259
|
+
def as_pointer(self):
|
|
260
|
+
""" """
|
|
261
|
+
...
|
|
620
262
|
|
|
621
|
-
def
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
def driver_add(self): ...
|
|
625
|
-
def driver_remove(self): ...
|
|
626
|
-
def get(self): ...
|
|
627
|
-
def id_properties_clear(self): ...
|
|
628
|
-
def id_properties_ensure(self): ...
|
|
629
|
-
def id_properties_ui(self): ...
|
|
630
|
-
def is_property_hidden(self): ...
|
|
631
|
-
def is_property_overridable_library(self): ...
|
|
632
|
-
def is_property_readonly(self): ...
|
|
633
|
-
def is_property_set(self): ...
|
|
634
|
-
def items(self): ...
|
|
635
|
-
def keyframe_delete(self): ...
|
|
636
|
-
def keyframe_insert(self): ...
|
|
637
|
-
def keys(self): ...
|
|
638
|
-
def path_from_id(self): ...
|
|
639
|
-
def path_resolve(self): ...
|
|
640
|
-
def poll(self, _ntree): ...
|
|
641
|
-
def pop(self): ...
|
|
642
|
-
def property_overridable_library_set(self): ...
|
|
643
|
-
def property_unset(self): ...
|
|
644
|
-
def type_recast(self): ...
|
|
645
|
-
def values(self): ...
|
|
263
|
+
def bl_rna_get_subclass(self):
|
|
264
|
+
""" """
|
|
265
|
+
...
|
|
646
266
|
|
|
647
|
-
|
|
648
|
-
|
|
267
|
+
def bl_rna_get_subclass_py(self):
|
|
268
|
+
""" """
|
|
269
|
+
...
|
|
649
270
|
|
|
650
|
-
def
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
def driver_add(self): ...
|
|
654
|
-
def driver_remove(self): ...
|
|
655
|
-
def get(self): ...
|
|
656
|
-
def id_properties_clear(self): ...
|
|
657
|
-
def id_properties_ensure(self): ...
|
|
658
|
-
def id_properties_ui(self): ...
|
|
659
|
-
def is_property_hidden(self): ...
|
|
660
|
-
def is_property_overridable_library(self): ...
|
|
661
|
-
def is_property_readonly(self): ...
|
|
662
|
-
def is_property_set(self): ...
|
|
663
|
-
def items(self): ...
|
|
664
|
-
def keyframe_delete(self): ...
|
|
665
|
-
def keyframe_insert(self): ...
|
|
666
|
-
def keys(self): ...
|
|
667
|
-
def path_from_id(self): ...
|
|
668
|
-
def path_resolve(self): ...
|
|
669
|
-
def pop(self): ...
|
|
670
|
-
def property_overridable_library_set(self): ...
|
|
671
|
-
def property_unset(self): ...
|
|
672
|
-
def type_recast(self): ...
|
|
673
|
-
def values(self): ...
|
|
271
|
+
def driver_add(self):
|
|
272
|
+
""" """
|
|
273
|
+
...
|
|
674
274
|
|
|
675
|
-
|
|
676
|
-
|
|
275
|
+
def driver_remove(self):
|
|
276
|
+
""" """
|
|
277
|
+
...
|
|
677
278
|
|
|
678
|
-
def
|
|
279
|
+
def get(self):
|
|
280
|
+
""" """
|
|
281
|
+
...
|
|
282
|
+
|
|
283
|
+
def id_properties_clear(self):
|
|
284
|
+
""" """
|
|
285
|
+
...
|
|
286
|
+
|
|
287
|
+
def id_properties_ensure(self):
|
|
288
|
+
""" """
|
|
289
|
+
...
|
|
290
|
+
|
|
291
|
+
def id_properties_ui(self):
|
|
292
|
+
""" """
|
|
293
|
+
...
|
|
294
|
+
|
|
295
|
+
def is_property_hidden(self):
|
|
296
|
+
""" """
|
|
297
|
+
...
|
|
298
|
+
|
|
299
|
+
def is_property_overridable_library(self):
|
|
300
|
+
""" """
|
|
301
|
+
...
|
|
302
|
+
|
|
303
|
+
def is_property_readonly(self):
|
|
304
|
+
""" """
|
|
305
|
+
...
|
|
306
|
+
|
|
307
|
+
def is_property_set(self):
|
|
308
|
+
""" """
|
|
309
|
+
...
|
|
310
|
+
|
|
311
|
+
def items(self):
|
|
312
|
+
""" """
|
|
313
|
+
...
|
|
314
|
+
|
|
315
|
+
def keyframe_delete(self):
|
|
316
|
+
""" """
|
|
317
|
+
...
|
|
318
|
+
|
|
319
|
+
def keyframe_insert(self):
|
|
320
|
+
""" """
|
|
321
|
+
...
|
|
322
|
+
|
|
323
|
+
def keys(self):
|
|
324
|
+
""" """
|
|
325
|
+
...
|
|
326
|
+
|
|
327
|
+
def parent_index(self, parent_test):
|
|
328
|
+
"""
|
|
329
|
+
|
|
330
|
+
:param parent_test:
|
|
331
|
+
"""
|
|
332
|
+
...
|
|
333
|
+
|
|
334
|
+
def path_from_id(self):
|
|
335
|
+
""" """
|
|
336
|
+
...
|
|
337
|
+
|
|
338
|
+
def path_resolve(self):
|
|
339
|
+
""" """
|
|
340
|
+
...
|
|
341
|
+
|
|
342
|
+
def pop(self):
|
|
343
|
+
""" """
|
|
344
|
+
...
|
|
345
|
+
|
|
346
|
+
def property_overridable_library_set(self):
|
|
347
|
+
""" """
|
|
348
|
+
...
|
|
349
|
+
|
|
350
|
+
def property_unset(self):
|
|
351
|
+
""" """
|
|
352
|
+
...
|
|
353
|
+
|
|
354
|
+
def translate(self, vec):
|
|
355
|
+
"""
|
|
356
|
+
|
|
357
|
+
:param vec:
|
|
358
|
+
"""
|
|
359
|
+
...
|
|
360
|
+
|
|
361
|
+
def type_recast(self):
|
|
362
|
+
""" """
|
|
363
|
+
...
|
|
364
|
+
|
|
365
|
+
def values(self):
|
|
366
|
+
""" """
|
|
367
|
+
...
|
|
368
|
+
|
|
369
|
+
class BoneCollection:
|
|
370
|
+
""" """
|
|
679
371
|
|
|
680
|
-
class HydraRenderEngine(RenderEngine):
|
|
681
|
-
bl_delegate_id: typing.Any
|
|
682
372
|
bl_rna: typing.Any
|
|
683
|
-
|
|
373
|
+
""" """
|
|
374
|
+
|
|
375
|
+
bones_recursive: typing.Any
|
|
376
|
+
""" """
|
|
377
|
+
|
|
684
378
|
id_data: typing.Any
|
|
379
|
+
""" """
|
|
685
380
|
|
|
686
|
-
def as_pointer(self):
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
def
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
def
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
def
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
def
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
def
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
def
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
def
|
|
381
|
+
def as_pointer(self):
|
|
382
|
+
""" """
|
|
383
|
+
...
|
|
384
|
+
|
|
385
|
+
def bl_rna_get_subclass(self):
|
|
386
|
+
""" """
|
|
387
|
+
...
|
|
388
|
+
|
|
389
|
+
def bl_rna_get_subclass_py(self):
|
|
390
|
+
""" """
|
|
391
|
+
...
|
|
392
|
+
|
|
393
|
+
def driver_add(self):
|
|
394
|
+
""" """
|
|
395
|
+
...
|
|
396
|
+
|
|
397
|
+
def driver_remove(self):
|
|
398
|
+
""" """
|
|
399
|
+
...
|
|
400
|
+
|
|
401
|
+
def get(self):
|
|
402
|
+
""" """
|
|
403
|
+
...
|
|
404
|
+
|
|
405
|
+
def id_properties_clear(self):
|
|
406
|
+
""" """
|
|
407
|
+
...
|
|
408
|
+
|
|
409
|
+
def id_properties_ensure(self):
|
|
410
|
+
""" """
|
|
411
|
+
...
|
|
412
|
+
|
|
413
|
+
def id_properties_ui(self):
|
|
414
|
+
""" """
|
|
415
|
+
...
|
|
416
|
+
|
|
417
|
+
def is_property_hidden(self):
|
|
418
|
+
""" """
|
|
419
|
+
...
|
|
420
|
+
|
|
421
|
+
def is_property_overridable_library(self):
|
|
422
|
+
""" """
|
|
423
|
+
...
|
|
424
|
+
|
|
425
|
+
def is_property_readonly(self):
|
|
426
|
+
""" """
|
|
427
|
+
...
|
|
428
|
+
|
|
429
|
+
def is_property_set(self):
|
|
430
|
+
""" """
|
|
431
|
+
...
|
|
432
|
+
|
|
433
|
+
def items(self):
|
|
434
|
+
""" """
|
|
435
|
+
...
|
|
436
|
+
|
|
437
|
+
def keyframe_delete(self):
|
|
438
|
+
""" """
|
|
439
|
+
...
|
|
440
|
+
|
|
441
|
+
def keyframe_insert(self):
|
|
442
|
+
""" """
|
|
443
|
+
...
|
|
444
|
+
|
|
445
|
+
def keys(self):
|
|
446
|
+
""" """
|
|
447
|
+
...
|
|
448
|
+
|
|
449
|
+
def path_from_id(self):
|
|
450
|
+
""" """
|
|
451
|
+
...
|
|
452
|
+
|
|
453
|
+
def path_resolve(self):
|
|
454
|
+
""" """
|
|
455
|
+
...
|
|
456
|
+
|
|
457
|
+
def pop(self):
|
|
458
|
+
""" """
|
|
459
|
+
...
|
|
460
|
+
|
|
461
|
+
def property_overridable_library_set(self):
|
|
462
|
+
""" """
|
|
463
|
+
...
|
|
464
|
+
|
|
465
|
+
def property_unset(self):
|
|
466
|
+
""" """
|
|
467
|
+
...
|
|
468
|
+
|
|
469
|
+
def type_recast(self):
|
|
470
|
+
""" """
|
|
471
|
+
...
|
|
472
|
+
|
|
473
|
+
def values(self):
|
|
474
|
+
""" """
|
|
475
|
+
...
|
|
476
|
+
|
|
477
|
+
class CompositorNode(Node):
|
|
478
|
+
""" """
|
|
715
479
|
|
|
716
|
-
class Bone(_GenericBone):
|
|
717
|
-
basename: typing.Any
|
|
718
|
-
bl_rna: typing.Any
|
|
719
|
-
center: typing.Any
|
|
720
|
-
children_recursive: typing.Any
|
|
721
|
-
children_recursive_basename: typing.Any
|
|
722
480
|
id_data: typing.Any
|
|
723
|
-
|
|
724
|
-
vector: typing.Any
|
|
725
|
-
x_axis: typing.Any
|
|
726
|
-
y_axis: typing.Any
|
|
727
|
-
z_axis: typing.Any
|
|
481
|
+
""" """
|
|
728
482
|
|
|
729
|
-
def
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
def
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
def
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
def
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
def
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
def
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
def
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
483
|
+
def as_pointer(self):
|
|
484
|
+
""" """
|
|
485
|
+
...
|
|
486
|
+
|
|
487
|
+
def bl_rna_get_subclass(self):
|
|
488
|
+
""" """
|
|
489
|
+
...
|
|
490
|
+
|
|
491
|
+
def bl_rna_get_subclass_py(self):
|
|
492
|
+
""" """
|
|
493
|
+
...
|
|
494
|
+
|
|
495
|
+
def driver_add(self):
|
|
496
|
+
""" """
|
|
497
|
+
...
|
|
498
|
+
|
|
499
|
+
def driver_remove(self):
|
|
500
|
+
""" """
|
|
501
|
+
...
|
|
502
|
+
|
|
503
|
+
def get(self):
|
|
504
|
+
""" """
|
|
505
|
+
...
|
|
506
|
+
|
|
507
|
+
def id_properties_clear(self):
|
|
508
|
+
""" """
|
|
509
|
+
...
|
|
510
|
+
|
|
511
|
+
def id_properties_ensure(self):
|
|
512
|
+
""" """
|
|
513
|
+
...
|
|
514
|
+
|
|
515
|
+
def id_properties_ui(self):
|
|
516
|
+
""" """
|
|
517
|
+
...
|
|
518
|
+
|
|
519
|
+
def is_property_hidden(self):
|
|
520
|
+
""" """
|
|
521
|
+
...
|
|
522
|
+
|
|
523
|
+
def is_property_overridable_library(self):
|
|
524
|
+
""" """
|
|
525
|
+
...
|
|
526
|
+
|
|
527
|
+
def is_property_readonly(self):
|
|
528
|
+
""" """
|
|
529
|
+
...
|
|
530
|
+
|
|
531
|
+
def is_property_set(self):
|
|
532
|
+
""" """
|
|
533
|
+
...
|
|
534
|
+
|
|
535
|
+
def items(self):
|
|
536
|
+
""" """
|
|
537
|
+
...
|
|
538
|
+
|
|
539
|
+
def keyframe_delete(self):
|
|
540
|
+
""" """
|
|
541
|
+
...
|
|
542
|
+
|
|
543
|
+
def keyframe_insert(self):
|
|
544
|
+
""" """
|
|
545
|
+
...
|
|
546
|
+
|
|
547
|
+
def keys(self):
|
|
548
|
+
""" """
|
|
549
|
+
...
|
|
550
|
+
|
|
551
|
+
def path_from_id(self):
|
|
552
|
+
""" """
|
|
553
|
+
...
|
|
554
|
+
|
|
555
|
+
def path_resolve(self):
|
|
556
|
+
""" """
|
|
557
|
+
...
|
|
558
|
+
|
|
559
|
+
def poll(self, ntree):
|
|
560
|
+
"""
|
|
561
|
+
|
|
562
|
+
:param ntree:
|
|
563
|
+
"""
|
|
564
|
+
...
|
|
565
|
+
|
|
566
|
+
def pop(self):
|
|
567
|
+
""" """
|
|
568
|
+
...
|
|
569
|
+
|
|
570
|
+
def property_overridable_library_set(self):
|
|
571
|
+
""" """
|
|
572
|
+
...
|
|
573
|
+
|
|
574
|
+
def property_unset(self):
|
|
575
|
+
""" """
|
|
576
|
+
...
|
|
577
|
+
|
|
578
|
+
def type_recast(self):
|
|
579
|
+
""" """
|
|
580
|
+
...
|
|
581
|
+
|
|
582
|
+
def update(self):
|
|
583
|
+
""" """
|
|
584
|
+
...
|
|
585
|
+
|
|
586
|
+
def values(self):
|
|
587
|
+
""" """
|
|
588
|
+
...
|
|
589
|
+
|
|
590
|
+
class Context:
|
|
591
|
+
""" """
|
|
757
592
|
|
|
758
|
-
class EditBone(_GenericBone):
|
|
759
|
-
basename: typing.Any
|
|
760
593
|
bl_rna: typing.Any
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
children_recursive: typing.Any
|
|
764
|
-
children_recursive_basename: typing.Any
|
|
594
|
+
""" """
|
|
595
|
+
|
|
765
596
|
id_data: typing.Any
|
|
766
|
-
|
|
767
|
-
vector: typing.Any
|
|
768
|
-
x_axis: typing.Any
|
|
769
|
-
y_axis: typing.Any
|
|
770
|
-
z_axis: typing.Any
|
|
597
|
+
""" """
|
|
771
598
|
|
|
772
|
-
def
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
def
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
def
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
def
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
def
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
def
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
def
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
599
|
+
def as_pointer(self):
|
|
600
|
+
""" """
|
|
601
|
+
...
|
|
602
|
+
|
|
603
|
+
def bl_rna_get_subclass(self):
|
|
604
|
+
""" """
|
|
605
|
+
...
|
|
606
|
+
|
|
607
|
+
def bl_rna_get_subclass_py(self):
|
|
608
|
+
""" """
|
|
609
|
+
...
|
|
610
|
+
|
|
611
|
+
def copy(self):
|
|
612
|
+
""" """
|
|
613
|
+
...
|
|
614
|
+
|
|
615
|
+
def driver_add(self):
|
|
616
|
+
""" """
|
|
617
|
+
...
|
|
618
|
+
|
|
619
|
+
def driver_remove(self):
|
|
620
|
+
""" """
|
|
621
|
+
...
|
|
622
|
+
|
|
623
|
+
def get(self):
|
|
624
|
+
""" """
|
|
625
|
+
...
|
|
626
|
+
|
|
627
|
+
def id_properties_clear(self):
|
|
628
|
+
""" """
|
|
629
|
+
...
|
|
630
|
+
|
|
631
|
+
def id_properties_ensure(self):
|
|
632
|
+
""" """
|
|
633
|
+
...
|
|
634
|
+
|
|
635
|
+
def id_properties_ui(self):
|
|
636
|
+
""" """
|
|
637
|
+
...
|
|
638
|
+
|
|
639
|
+
def is_property_hidden(self):
|
|
640
|
+
""" """
|
|
641
|
+
...
|
|
642
|
+
|
|
643
|
+
def is_property_overridable_library(self):
|
|
644
|
+
""" """
|
|
645
|
+
...
|
|
646
|
+
|
|
647
|
+
def is_property_readonly(self):
|
|
648
|
+
""" """
|
|
649
|
+
...
|
|
650
|
+
|
|
651
|
+
def is_property_set(self):
|
|
652
|
+
""" """
|
|
653
|
+
...
|
|
654
|
+
|
|
655
|
+
def items(self):
|
|
656
|
+
""" """
|
|
657
|
+
...
|
|
658
|
+
|
|
659
|
+
def keyframe_delete(self):
|
|
660
|
+
""" """
|
|
661
|
+
...
|
|
662
|
+
|
|
663
|
+
def keyframe_insert(self):
|
|
664
|
+
""" """
|
|
665
|
+
...
|
|
666
|
+
|
|
667
|
+
def keys(self):
|
|
668
|
+
""" """
|
|
669
|
+
...
|
|
670
|
+
|
|
671
|
+
def path_from_id(self):
|
|
672
|
+
""" """
|
|
673
|
+
...
|
|
674
|
+
|
|
675
|
+
def path_resolve(self, path, coerce):
|
|
676
|
+
"""
|
|
677
|
+
|
|
678
|
+
:param path:
|
|
679
|
+
:param coerce:
|
|
680
|
+
"""
|
|
681
|
+
...
|
|
682
|
+
|
|
683
|
+
def pop(self):
|
|
684
|
+
""" """
|
|
685
|
+
...
|
|
686
|
+
|
|
687
|
+
def property_overridable_library_set(self):
|
|
688
|
+
""" """
|
|
689
|
+
...
|
|
690
|
+
|
|
691
|
+
def property_unset(self):
|
|
692
|
+
""" """
|
|
693
|
+
...
|
|
694
|
+
|
|
695
|
+
def temp_override(self):
|
|
696
|
+
""" """
|
|
697
|
+
...
|
|
698
|
+
|
|
699
|
+
def type_recast(self):
|
|
700
|
+
""" """
|
|
701
|
+
...
|
|
702
|
+
|
|
703
|
+
def values(self):
|
|
704
|
+
""" """
|
|
705
|
+
...
|
|
706
|
+
|
|
707
|
+
class EditBone(_GenericBone):
|
|
708
|
+
""" """
|
|
800
709
|
|
|
801
|
-
class PoseBone(_GenericBone):
|
|
802
710
|
basename: typing.Any
|
|
711
|
+
""" """
|
|
712
|
+
|
|
803
713
|
bl_rna: typing.Any
|
|
714
|
+
""" """
|
|
715
|
+
|
|
804
716
|
center: typing.Any
|
|
717
|
+
""" """
|
|
718
|
+
|
|
805
719
|
children: typing.Any
|
|
720
|
+
""" """
|
|
721
|
+
|
|
806
722
|
children_recursive: typing.Any
|
|
723
|
+
""" """
|
|
724
|
+
|
|
807
725
|
children_recursive_basename: typing.Any
|
|
726
|
+
""" """
|
|
727
|
+
|
|
808
728
|
id_data: typing.Any
|
|
729
|
+
""" """
|
|
730
|
+
|
|
809
731
|
parent_recursive: typing.Any
|
|
732
|
+
""" """
|
|
733
|
+
|
|
810
734
|
vector: typing.Any
|
|
735
|
+
""" """
|
|
736
|
+
|
|
811
737
|
x_axis: typing.Any
|
|
738
|
+
""" """
|
|
739
|
+
|
|
812
740
|
y_axis: typing.Any
|
|
741
|
+
""" """
|
|
742
|
+
|
|
813
743
|
z_axis: typing.Any
|
|
744
|
+
""" """
|
|
814
745
|
|
|
815
|
-
def
|
|
816
|
-
|
|
817
|
-
def bl_rna_get_subclass_py(self): ...
|
|
818
|
-
def driver_add(self): ...
|
|
819
|
-
def driver_remove(self): ...
|
|
820
|
-
def get(self): ...
|
|
821
|
-
def id_properties_clear(self): ...
|
|
822
|
-
def id_properties_ensure(self): ...
|
|
823
|
-
def id_properties_ui(self): ...
|
|
824
|
-
def is_property_hidden(self): ...
|
|
825
|
-
def is_property_overridable_library(self): ...
|
|
826
|
-
def is_property_readonly(self): ...
|
|
827
|
-
def is_property_set(self): ...
|
|
828
|
-
def items(self): ...
|
|
829
|
-
def keyframe_delete(self): ...
|
|
830
|
-
def keyframe_insert(self): ...
|
|
831
|
-
def keys(self): ...
|
|
832
|
-
def parent_index(self, parent_test): ...
|
|
833
|
-
def path_from_id(self): ...
|
|
834
|
-
def path_resolve(self): ...
|
|
835
|
-
def pop(self): ...
|
|
836
|
-
def property_overridable_library_set(self): ...
|
|
837
|
-
def property_unset(self): ...
|
|
838
|
-
def translate(self, vec): ...
|
|
839
|
-
def type_recast(self): ...
|
|
840
|
-
def values(self): ...
|
|
746
|
+
def align_orientation(self, other):
|
|
747
|
+
"""
|
|
841
748
|
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
749
|
+
:param other:
|
|
750
|
+
"""
|
|
751
|
+
...
|
|
845
752
|
|
|
846
|
-
def
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
def bl_rna_get_subclass_py(self): ...
|
|
850
|
-
def driver_add(self): ...
|
|
851
|
-
def driver_remove(self): ...
|
|
852
|
-
def get(self): ...
|
|
853
|
-
def id_properties_clear(self): ...
|
|
854
|
-
def id_properties_ensure(self): ...
|
|
855
|
-
def id_properties_ui(self): ...
|
|
856
|
-
def is_extended(self): ...
|
|
857
|
-
def is_property_hidden(self): ...
|
|
858
|
-
def is_property_overridable_library(self): ...
|
|
859
|
-
def is_property_readonly(self): ...
|
|
860
|
-
def is_property_set(self): ...
|
|
861
|
-
def items(self): ...
|
|
862
|
-
def keyframe_delete(self): ...
|
|
863
|
-
def keyframe_insert(self): ...
|
|
864
|
-
def keys(self): ...
|
|
865
|
-
def path_from_id(self): ...
|
|
866
|
-
def path_resolve(self): ...
|
|
867
|
-
def pop(self): ...
|
|
868
|
-
def prepend(self, draw_func): ...
|
|
869
|
-
def property_overridable_library_set(self): ...
|
|
870
|
-
def property_unset(self): ...
|
|
871
|
-
def remove(self, draw_func): ...
|
|
872
|
-
def type_recast(self): ...
|
|
873
|
-
def values(self): ...
|
|
753
|
+
def as_pointer(self):
|
|
754
|
+
""" """
|
|
755
|
+
...
|
|
874
756
|
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
757
|
+
def bl_rna_get_subclass(self):
|
|
758
|
+
""" """
|
|
759
|
+
...
|
|
878
760
|
|
|
879
|
-
def
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
def bl_rna_get_subclass_py(self): ...
|
|
883
|
-
def draw_collapsible(self, context, layout): ...
|
|
884
|
-
def draw_preset(self, _context): ...
|
|
885
|
-
def driver_add(self): ...
|
|
886
|
-
def driver_remove(self): ...
|
|
887
|
-
def get(self): ...
|
|
888
|
-
def id_properties_clear(self): ...
|
|
889
|
-
def id_properties_ensure(self): ...
|
|
890
|
-
def id_properties_ui(self): ...
|
|
891
|
-
def is_extended(self): ...
|
|
892
|
-
def is_property_hidden(self): ...
|
|
893
|
-
def is_property_overridable_library(self): ...
|
|
894
|
-
def is_property_readonly(self): ...
|
|
895
|
-
def is_property_set(self): ...
|
|
896
|
-
def items(self): ...
|
|
897
|
-
def keyframe_delete(self): ...
|
|
898
|
-
def keyframe_insert(self): ...
|
|
899
|
-
def keys(self): ...
|
|
900
|
-
def path_from_id(self): ...
|
|
901
|
-
def path_menu(
|
|
902
|
-
self,
|
|
903
|
-
searchpaths,
|
|
904
|
-
operator,
|
|
905
|
-
props_default,
|
|
906
|
-
prop_filepath,
|
|
907
|
-
filter_ext,
|
|
908
|
-
filter_path,
|
|
909
|
-
display_name,
|
|
910
|
-
add_operator,
|
|
911
|
-
): ...
|
|
912
|
-
def path_resolve(self): ...
|
|
913
|
-
def pop(self): ...
|
|
914
|
-
def prepend(self, draw_func): ...
|
|
915
|
-
def property_overridable_library_set(self): ...
|
|
916
|
-
def property_unset(self): ...
|
|
917
|
-
def remove(self, draw_func): ...
|
|
918
|
-
def type_recast(self): ...
|
|
919
|
-
def values(self): ...
|
|
761
|
+
def bl_rna_get_subclass_py(self):
|
|
762
|
+
""" """
|
|
763
|
+
...
|
|
920
764
|
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
765
|
+
def driver_add(self):
|
|
766
|
+
""" """
|
|
767
|
+
...
|
|
924
768
|
|
|
925
|
-
def
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
def bl_rna_get_subclass_py(self): ...
|
|
929
|
-
def driver_add(self): ...
|
|
930
|
-
def driver_remove(self): ...
|
|
931
|
-
def get(self): ...
|
|
932
|
-
def id_properties_clear(self): ...
|
|
933
|
-
def id_properties_ensure(self): ...
|
|
934
|
-
def id_properties_ui(self): ...
|
|
935
|
-
def is_extended(self): ...
|
|
936
|
-
def is_property_hidden(self): ...
|
|
937
|
-
def is_property_overridable_library(self): ...
|
|
938
|
-
def is_property_readonly(self): ...
|
|
939
|
-
def is_property_set(self): ...
|
|
940
|
-
def items(self): ...
|
|
941
|
-
def keyframe_delete(self): ...
|
|
942
|
-
def keyframe_insert(self): ...
|
|
943
|
-
def keys(self): ...
|
|
944
|
-
def path_from_id(self): ...
|
|
945
|
-
def path_resolve(self): ...
|
|
946
|
-
def pop(self): ...
|
|
947
|
-
def prepend(self, draw_func): ...
|
|
948
|
-
def property_overridable_library_set(self): ...
|
|
949
|
-
def property_unset(self): ...
|
|
950
|
-
def remove(self, draw_func): ...
|
|
951
|
-
def type_recast(self): ...
|
|
952
|
-
def values(self): ...
|
|
769
|
+
def driver_remove(self):
|
|
770
|
+
""" """
|
|
771
|
+
...
|
|
953
772
|
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
773
|
+
def get(self):
|
|
774
|
+
""" """
|
|
775
|
+
...
|
|
776
|
+
|
|
777
|
+
def id_properties_clear(self):
|
|
778
|
+
""" """
|
|
779
|
+
...
|
|
780
|
+
|
|
781
|
+
def id_properties_ensure(self):
|
|
782
|
+
""" """
|
|
783
|
+
...
|
|
784
|
+
|
|
785
|
+
def id_properties_ui(self):
|
|
786
|
+
""" """
|
|
787
|
+
...
|
|
788
|
+
|
|
789
|
+
def is_property_hidden(self):
|
|
790
|
+
""" """
|
|
791
|
+
...
|
|
792
|
+
|
|
793
|
+
def is_property_overridable_library(self):
|
|
794
|
+
""" """
|
|
795
|
+
...
|
|
796
|
+
|
|
797
|
+
def is_property_readonly(self):
|
|
798
|
+
""" """
|
|
799
|
+
...
|
|
800
|
+
|
|
801
|
+
def is_property_set(self):
|
|
802
|
+
""" """
|
|
803
|
+
...
|
|
804
|
+
|
|
805
|
+
def items(self):
|
|
806
|
+
""" """
|
|
807
|
+
...
|
|
808
|
+
|
|
809
|
+
def keyframe_delete(self):
|
|
810
|
+
""" """
|
|
811
|
+
...
|
|
812
|
+
|
|
813
|
+
def keyframe_insert(self):
|
|
814
|
+
""" """
|
|
815
|
+
...
|
|
816
|
+
|
|
817
|
+
def keys(self):
|
|
818
|
+
""" """
|
|
819
|
+
...
|
|
820
|
+
|
|
821
|
+
def parent_index(self, parent_test):
|
|
822
|
+
"""
|
|
823
|
+
|
|
824
|
+
:param parent_test:
|
|
825
|
+
"""
|
|
826
|
+
...
|
|
827
|
+
|
|
828
|
+
def path_from_id(self):
|
|
829
|
+
""" """
|
|
830
|
+
...
|
|
831
|
+
|
|
832
|
+
def path_resolve(self):
|
|
833
|
+
""" """
|
|
834
|
+
...
|
|
835
|
+
|
|
836
|
+
def pop(self):
|
|
837
|
+
""" """
|
|
838
|
+
...
|
|
839
|
+
|
|
840
|
+
def property_overridable_library_set(self):
|
|
841
|
+
""" """
|
|
842
|
+
...
|
|
843
|
+
|
|
844
|
+
def property_unset(self):
|
|
845
|
+
""" """
|
|
846
|
+
...
|
|
847
|
+
|
|
848
|
+
def transform(self, matrix, scale, roll):
|
|
849
|
+
"""
|
|
850
|
+
|
|
851
|
+
:param matrix:
|
|
852
|
+
:param scale:
|
|
853
|
+
:param roll:
|
|
854
|
+
"""
|
|
855
|
+
...
|
|
856
|
+
|
|
857
|
+
def translate(self, vec):
|
|
858
|
+
"""
|
|
859
|
+
|
|
860
|
+
:param vec:
|
|
861
|
+
"""
|
|
862
|
+
...
|
|
863
|
+
|
|
864
|
+
def type_recast(self):
|
|
865
|
+
""" """
|
|
866
|
+
...
|
|
867
|
+
|
|
868
|
+
def values(self):
|
|
869
|
+
""" """
|
|
870
|
+
...
|
|
871
|
+
|
|
872
|
+
class FileHandler:
|
|
873
|
+
""" """
|
|
874
|
+
|
|
875
|
+
id_data: typing.Any
|
|
876
|
+
""" """
|
|
877
|
+
|
|
878
|
+
def as_pointer(self):
|
|
879
|
+
""" """
|
|
880
|
+
...
|
|
881
|
+
|
|
882
|
+
def bl_rna_get_subclass(self):
|
|
883
|
+
""" """
|
|
884
|
+
...
|
|
885
|
+
|
|
886
|
+
def bl_rna_get_subclass_py(self):
|
|
887
|
+
""" """
|
|
888
|
+
...
|
|
889
|
+
|
|
890
|
+
def driver_add(self):
|
|
891
|
+
""" """
|
|
892
|
+
...
|
|
893
|
+
|
|
894
|
+
def driver_remove(self):
|
|
895
|
+
""" """
|
|
896
|
+
...
|
|
897
|
+
|
|
898
|
+
def get(self):
|
|
899
|
+
""" """
|
|
900
|
+
...
|
|
901
|
+
|
|
902
|
+
def id_properties_clear(self):
|
|
903
|
+
""" """
|
|
904
|
+
...
|
|
905
|
+
|
|
906
|
+
def id_properties_ensure(self):
|
|
907
|
+
""" """
|
|
908
|
+
...
|
|
909
|
+
|
|
910
|
+
def id_properties_ui(self):
|
|
911
|
+
""" """
|
|
912
|
+
...
|
|
913
|
+
|
|
914
|
+
def is_property_hidden(self):
|
|
915
|
+
""" """
|
|
916
|
+
...
|
|
917
|
+
|
|
918
|
+
def is_property_overridable_library(self):
|
|
919
|
+
""" """
|
|
920
|
+
...
|
|
921
|
+
|
|
922
|
+
def is_property_readonly(self):
|
|
923
|
+
""" """
|
|
924
|
+
...
|
|
925
|
+
|
|
926
|
+
def is_property_set(self):
|
|
927
|
+
""" """
|
|
928
|
+
...
|
|
929
|
+
|
|
930
|
+
def items(self):
|
|
931
|
+
""" """
|
|
932
|
+
...
|
|
933
|
+
|
|
934
|
+
def keyframe_delete(self):
|
|
935
|
+
""" """
|
|
936
|
+
...
|
|
937
|
+
|
|
938
|
+
def keyframe_insert(self):
|
|
939
|
+
""" """
|
|
940
|
+
...
|
|
941
|
+
|
|
942
|
+
def keys(self):
|
|
943
|
+
""" """
|
|
944
|
+
...
|
|
945
|
+
|
|
946
|
+
def path_from_id(self):
|
|
947
|
+
""" """
|
|
948
|
+
...
|
|
949
|
+
|
|
950
|
+
def path_resolve(self):
|
|
951
|
+
""" """
|
|
952
|
+
...
|
|
953
|
+
|
|
954
|
+
def pop(self):
|
|
955
|
+
""" """
|
|
956
|
+
...
|
|
957
|
+
|
|
958
|
+
def property_overridable_library_set(self):
|
|
959
|
+
""" """
|
|
960
|
+
...
|
|
961
|
+
|
|
962
|
+
def property_unset(self):
|
|
963
|
+
""" """
|
|
964
|
+
...
|
|
965
|
+
|
|
966
|
+
def type_recast(self):
|
|
967
|
+
""" """
|
|
968
|
+
...
|
|
969
|
+
|
|
970
|
+
def values(self):
|
|
971
|
+
""" """
|
|
972
|
+
...
|
|
973
|
+
|
|
974
|
+
class GeometryNode(Node):
|
|
975
|
+
""" """
|
|
976
|
+
|
|
977
|
+
id_data: typing.Any
|
|
978
|
+
""" """
|
|
979
|
+
|
|
980
|
+
def as_pointer(self):
|
|
981
|
+
""" """
|
|
982
|
+
...
|
|
983
|
+
|
|
984
|
+
def bl_rna_get_subclass(self):
|
|
985
|
+
""" """
|
|
986
|
+
...
|
|
987
|
+
|
|
988
|
+
def bl_rna_get_subclass_py(self):
|
|
989
|
+
""" """
|
|
990
|
+
...
|
|
991
|
+
|
|
992
|
+
def driver_add(self):
|
|
993
|
+
""" """
|
|
994
|
+
...
|
|
995
|
+
|
|
996
|
+
def driver_remove(self):
|
|
997
|
+
""" """
|
|
998
|
+
...
|
|
999
|
+
|
|
1000
|
+
def get(self):
|
|
1001
|
+
""" """
|
|
1002
|
+
...
|
|
1003
|
+
|
|
1004
|
+
def id_properties_clear(self):
|
|
1005
|
+
""" """
|
|
1006
|
+
...
|
|
1007
|
+
|
|
1008
|
+
def id_properties_ensure(self):
|
|
1009
|
+
""" """
|
|
1010
|
+
...
|
|
1011
|
+
|
|
1012
|
+
def id_properties_ui(self):
|
|
1013
|
+
""" """
|
|
1014
|
+
...
|
|
1015
|
+
|
|
1016
|
+
def is_property_hidden(self):
|
|
1017
|
+
""" """
|
|
1018
|
+
...
|
|
1019
|
+
|
|
1020
|
+
def is_property_overridable_library(self):
|
|
1021
|
+
""" """
|
|
1022
|
+
...
|
|
1023
|
+
|
|
1024
|
+
def is_property_readonly(self):
|
|
1025
|
+
""" """
|
|
1026
|
+
...
|
|
1027
|
+
|
|
1028
|
+
def is_property_set(self):
|
|
1029
|
+
""" """
|
|
1030
|
+
...
|
|
1031
|
+
|
|
1032
|
+
def items(self):
|
|
1033
|
+
""" """
|
|
1034
|
+
...
|
|
1035
|
+
|
|
1036
|
+
def keyframe_delete(self):
|
|
1037
|
+
""" """
|
|
1038
|
+
...
|
|
1039
|
+
|
|
1040
|
+
def keyframe_insert(self):
|
|
1041
|
+
""" """
|
|
1042
|
+
...
|
|
1043
|
+
|
|
1044
|
+
def keys(self):
|
|
1045
|
+
""" """
|
|
1046
|
+
...
|
|
1047
|
+
|
|
1048
|
+
def path_from_id(self):
|
|
1049
|
+
""" """
|
|
1050
|
+
...
|
|
1051
|
+
|
|
1052
|
+
def path_resolve(self):
|
|
1053
|
+
""" """
|
|
1054
|
+
...
|
|
1055
|
+
|
|
1056
|
+
def poll(self, ntree):
|
|
1057
|
+
"""
|
|
1058
|
+
|
|
1059
|
+
:param ntree:
|
|
1060
|
+
"""
|
|
1061
|
+
...
|
|
1062
|
+
|
|
1063
|
+
def pop(self):
|
|
1064
|
+
""" """
|
|
1065
|
+
...
|
|
1066
|
+
|
|
1067
|
+
def property_overridable_library_set(self):
|
|
1068
|
+
""" """
|
|
1069
|
+
...
|
|
1070
|
+
|
|
1071
|
+
def property_unset(self):
|
|
1072
|
+
""" """
|
|
1073
|
+
...
|
|
1074
|
+
|
|
1075
|
+
def type_recast(self):
|
|
1076
|
+
""" """
|
|
1077
|
+
...
|
|
1078
|
+
|
|
1079
|
+
def values(self):
|
|
1080
|
+
""" """
|
|
1081
|
+
...
|
|
1082
|
+
|
|
1083
|
+
class Gizmo:
|
|
1084
|
+
""" """
|
|
1085
|
+
|
|
1086
|
+
id_data: typing.Any
|
|
1087
|
+
""" """
|
|
1088
|
+
|
|
1089
|
+
def as_pointer(self):
|
|
1090
|
+
""" """
|
|
1091
|
+
...
|
|
1092
|
+
|
|
1093
|
+
def bl_rna_get_subclass(self):
|
|
1094
|
+
""" """
|
|
1095
|
+
...
|
|
1096
|
+
|
|
1097
|
+
def bl_rna_get_subclass_py(self):
|
|
1098
|
+
""" """
|
|
1099
|
+
...
|
|
1100
|
+
|
|
1101
|
+
def draw_custom_shape(self, shape, matrix, select_id):
|
|
1102
|
+
"""
|
|
1103
|
+
|
|
1104
|
+
:param shape:
|
|
1105
|
+
:param matrix:
|
|
1106
|
+
:param select_id:
|
|
1107
|
+
"""
|
|
1108
|
+
...
|
|
1109
|
+
|
|
1110
|
+
def driver_add(self):
|
|
1111
|
+
""" """
|
|
1112
|
+
...
|
|
1113
|
+
|
|
1114
|
+
def driver_remove(self):
|
|
1115
|
+
""" """
|
|
1116
|
+
...
|
|
1117
|
+
|
|
1118
|
+
def get(self):
|
|
1119
|
+
""" """
|
|
1120
|
+
...
|
|
1121
|
+
|
|
1122
|
+
def id_properties_clear(self):
|
|
1123
|
+
""" """
|
|
1124
|
+
...
|
|
1125
|
+
|
|
1126
|
+
def id_properties_ensure(self):
|
|
1127
|
+
""" """
|
|
1128
|
+
...
|
|
1129
|
+
|
|
1130
|
+
def id_properties_ui(self):
|
|
1131
|
+
""" """
|
|
1132
|
+
...
|
|
1133
|
+
|
|
1134
|
+
def is_property_hidden(self):
|
|
1135
|
+
""" """
|
|
1136
|
+
...
|
|
1137
|
+
|
|
1138
|
+
def is_property_overridable_library(self):
|
|
1139
|
+
""" """
|
|
1140
|
+
...
|
|
1141
|
+
|
|
1142
|
+
def is_property_readonly(self):
|
|
1143
|
+
""" """
|
|
1144
|
+
...
|
|
1145
|
+
|
|
1146
|
+
def is_property_set(self):
|
|
1147
|
+
""" """
|
|
1148
|
+
...
|
|
1149
|
+
|
|
1150
|
+
def items(self):
|
|
1151
|
+
""" """
|
|
1152
|
+
...
|
|
1153
|
+
|
|
1154
|
+
def keyframe_delete(self):
|
|
1155
|
+
""" """
|
|
1156
|
+
...
|
|
1157
|
+
|
|
1158
|
+
def keyframe_insert(self):
|
|
1159
|
+
""" """
|
|
1160
|
+
...
|
|
1161
|
+
|
|
1162
|
+
def keys(self):
|
|
1163
|
+
""" """
|
|
1164
|
+
...
|
|
1165
|
+
|
|
1166
|
+
def new_custom_shape(self, type, verts):
|
|
1167
|
+
"""
|
|
1168
|
+
|
|
1169
|
+
:param type:
|
|
1170
|
+
:param verts:
|
|
1171
|
+
"""
|
|
1172
|
+
...
|
|
1173
|
+
|
|
1174
|
+
def path_from_id(self):
|
|
1175
|
+
""" """
|
|
1176
|
+
...
|
|
1177
|
+
|
|
1178
|
+
def path_resolve(self):
|
|
1179
|
+
""" """
|
|
1180
|
+
...
|
|
1181
|
+
|
|
1182
|
+
def pop(self):
|
|
1183
|
+
""" """
|
|
1184
|
+
...
|
|
1185
|
+
|
|
1186
|
+
def property_overridable_library_set(self):
|
|
1187
|
+
""" """
|
|
1188
|
+
...
|
|
1189
|
+
|
|
1190
|
+
def property_unset(self):
|
|
1191
|
+
""" """
|
|
1192
|
+
...
|
|
1193
|
+
|
|
1194
|
+
def target_get_range(self):
|
|
1195
|
+
""" """
|
|
1196
|
+
...
|
|
1197
|
+
|
|
1198
|
+
def target_get_value(self):
|
|
1199
|
+
""" """
|
|
1200
|
+
...
|
|
1201
|
+
|
|
1202
|
+
def target_set_handler(self):
|
|
1203
|
+
""" """
|
|
1204
|
+
...
|
|
1205
|
+
|
|
1206
|
+
def target_set_value(self):
|
|
1207
|
+
""" """
|
|
1208
|
+
...
|
|
1209
|
+
|
|
1210
|
+
def type_recast(self):
|
|
1211
|
+
""" """
|
|
1212
|
+
...
|
|
1213
|
+
|
|
1214
|
+
def values(self):
|
|
1215
|
+
""" """
|
|
1216
|
+
...
|
|
1217
|
+
|
|
1218
|
+
class GizmoGroup:
|
|
1219
|
+
""" """
|
|
1220
|
+
|
|
1221
|
+
id_data: typing.Any
|
|
1222
|
+
""" """
|
|
1223
|
+
|
|
1224
|
+
def as_pointer(self):
|
|
1225
|
+
""" """
|
|
1226
|
+
...
|
|
1227
|
+
|
|
1228
|
+
def bl_rna_get_subclass(self):
|
|
1229
|
+
""" """
|
|
1230
|
+
...
|
|
1231
|
+
|
|
1232
|
+
def bl_rna_get_subclass_py(self):
|
|
1233
|
+
""" """
|
|
1234
|
+
...
|
|
1235
|
+
|
|
1236
|
+
def driver_add(self):
|
|
1237
|
+
""" """
|
|
1238
|
+
...
|
|
1239
|
+
|
|
1240
|
+
def driver_remove(self):
|
|
1241
|
+
""" """
|
|
1242
|
+
...
|
|
1243
|
+
|
|
1244
|
+
def get(self):
|
|
1245
|
+
""" """
|
|
1246
|
+
...
|
|
1247
|
+
|
|
1248
|
+
def id_properties_clear(self):
|
|
1249
|
+
""" """
|
|
1250
|
+
...
|
|
1251
|
+
|
|
1252
|
+
def id_properties_ensure(self):
|
|
1253
|
+
""" """
|
|
1254
|
+
...
|
|
1255
|
+
|
|
1256
|
+
def id_properties_ui(self):
|
|
1257
|
+
""" """
|
|
1258
|
+
...
|
|
1259
|
+
|
|
1260
|
+
def is_property_hidden(self):
|
|
1261
|
+
""" """
|
|
1262
|
+
...
|
|
1263
|
+
|
|
1264
|
+
def is_property_overridable_library(self):
|
|
1265
|
+
""" """
|
|
1266
|
+
...
|
|
1267
|
+
|
|
1268
|
+
def is_property_readonly(self):
|
|
1269
|
+
""" """
|
|
1270
|
+
...
|
|
1271
|
+
|
|
1272
|
+
def is_property_set(self):
|
|
1273
|
+
""" """
|
|
1274
|
+
...
|
|
1275
|
+
|
|
1276
|
+
def items(self):
|
|
1277
|
+
""" """
|
|
1278
|
+
...
|
|
1279
|
+
|
|
1280
|
+
def keyframe_delete(self):
|
|
1281
|
+
""" """
|
|
1282
|
+
...
|
|
1283
|
+
|
|
1284
|
+
def keyframe_insert(self):
|
|
1285
|
+
""" """
|
|
1286
|
+
...
|
|
1287
|
+
|
|
1288
|
+
def keys(self):
|
|
1289
|
+
""" """
|
|
1290
|
+
...
|
|
1291
|
+
|
|
1292
|
+
def path_from_id(self):
|
|
1293
|
+
""" """
|
|
1294
|
+
...
|
|
1295
|
+
|
|
1296
|
+
def path_resolve(self):
|
|
1297
|
+
""" """
|
|
1298
|
+
...
|
|
1299
|
+
|
|
1300
|
+
def pop(self):
|
|
1301
|
+
""" """
|
|
1302
|
+
...
|
|
1303
|
+
|
|
1304
|
+
def property_overridable_library_set(self):
|
|
1305
|
+
""" """
|
|
1306
|
+
...
|
|
1307
|
+
|
|
1308
|
+
def property_unset(self):
|
|
1309
|
+
""" """
|
|
1310
|
+
...
|
|
1311
|
+
|
|
1312
|
+
def type_recast(self):
|
|
1313
|
+
""" """
|
|
1314
|
+
...
|
|
1315
|
+
|
|
1316
|
+
def values(self):
|
|
1317
|
+
""" """
|
|
1318
|
+
...
|
|
1319
|
+
|
|
1320
|
+
class Header(_GenericUI):
|
|
1321
|
+
""" """
|
|
1322
|
+
|
|
1323
|
+
bl_rna: typing.Any
|
|
1324
|
+
""" """
|
|
1325
|
+
|
|
1326
|
+
id_data: typing.Any
|
|
1327
|
+
""" """
|
|
1328
|
+
|
|
1329
|
+
def append(self, draw_func):
|
|
1330
|
+
"""
|
|
1331
|
+
|
|
1332
|
+
:param draw_func:
|
|
1333
|
+
"""
|
|
1334
|
+
...
|
|
1335
|
+
|
|
1336
|
+
def as_pointer(self):
|
|
1337
|
+
""" """
|
|
1338
|
+
...
|
|
1339
|
+
|
|
1340
|
+
def bl_rna_get_subclass(self):
|
|
1341
|
+
""" """
|
|
1342
|
+
...
|
|
1343
|
+
|
|
1344
|
+
def bl_rna_get_subclass_py(self):
|
|
1345
|
+
""" """
|
|
1346
|
+
...
|
|
1347
|
+
|
|
1348
|
+
def driver_add(self):
|
|
1349
|
+
""" """
|
|
1350
|
+
...
|
|
1351
|
+
|
|
1352
|
+
def driver_remove(self):
|
|
1353
|
+
""" """
|
|
1354
|
+
...
|
|
1355
|
+
|
|
1356
|
+
def get(self):
|
|
1357
|
+
""" """
|
|
1358
|
+
...
|
|
1359
|
+
|
|
1360
|
+
def id_properties_clear(self):
|
|
1361
|
+
""" """
|
|
1362
|
+
...
|
|
1363
|
+
|
|
1364
|
+
def id_properties_ensure(self):
|
|
1365
|
+
""" """
|
|
1366
|
+
...
|
|
1367
|
+
|
|
1368
|
+
def id_properties_ui(self):
|
|
1369
|
+
""" """
|
|
1370
|
+
...
|
|
1371
|
+
|
|
1372
|
+
def is_extended(self):
|
|
1373
|
+
""" """
|
|
1374
|
+
...
|
|
1375
|
+
|
|
1376
|
+
def is_property_hidden(self):
|
|
1377
|
+
""" """
|
|
1378
|
+
...
|
|
1379
|
+
|
|
1380
|
+
def is_property_overridable_library(self):
|
|
1381
|
+
""" """
|
|
1382
|
+
...
|
|
1383
|
+
|
|
1384
|
+
def is_property_readonly(self):
|
|
1385
|
+
""" """
|
|
1386
|
+
...
|
|
1387
|
+
|
|
1388
|
+
def is_property_set(self):
|
|
1389
|
+
""" """
|
|
1390
|
+
...
|
|
1391
|
+
|
|
1392
|
+
def items(self):
|
|
1393
|
+
""" """
|
|
1394
|
+
...
|
|
1395
|
+
|
|
1396
|
+
def keyframe_delete(self):
|
|
1397
|
+
""" """
|
|
1398
|
+
...
|
|
1399
|
+
|
|
1400
|
+
def keyframe_insert(self):
|
|
1401
|
+
""" """
|
|
1402
|
+
...
|
|
1403
|
+
|
|
1404
|
+
def keys(self):
|
|
1405
|
+
""" """
|
|
1406
|
+
...
|
|
1407
|
+
|
|
1408
|
+
def path_from_id(self):
|
|
1409
|
+
""" """
|
|
1410
|
+
...
|
|
1411
|
+
|
|
1412
|
+
def path_resolve(self):
|
|
1413
|
+
""" """
|
|
1414
|
+
...
|
|
1415
|
+
|
|
1416
|
+
def pop(self):
|
|
1417
|
+
""" """
|
|
1418
|
+
...
|
|
1419
|
+
|
|
1420
|
+
def prepend(self, draw_func):
|
|
1421
|
+
"""
|
|
1422
|
+
|
|
1423
|
+
:param draw_func:
|
|
1424
|
+
"""
|
|
1425
|
+
...
|
|
1426
|
+
|
|
1427
|
+
def property_overridable_library_set(self):
|
|
1428
|
+
""" """
|
|
1429
|
+
...
|
|
1430
|
+
|
|
1431
|
+
def property_unset(self):
|
|
1432
|
+
""" """
|
|
1433
|
+
...
|
|
1434
|
+
|
|
1435
|
+
def remove(self, draw_func):
|
|
1436
|
+
"""
|
|
1437
|
+
|
|
1438
|
+
:param draw_func:
|
|
1439
|
+
"""
|
|
1440
|
+
...
|
|
1441
|
+
|
|
1442
|
+
def type_recast(self):
|
|
1443
|
+
""" """
|
|
1444
|
+
...
|
|
1445
|
+
|
|
1446
|
+
def values(self):
|
|
1447
|
+
""" """
|
|
1448
|
+
...
|
|
1449
|
+
|
|
1450
|
+
class HydraRenderEngine(RenderEngine):
|
|
1451
|
+
""" """
|
|
1452
|
+
|
|
1453
|
+
bl_delegate_id: typing.Any
|
|
1454
|
+
""" """
|
|
1455
|
+
|
|
1456
|
+
bl_rna: typing.Any
|
|
1457
|
+
""" """
|
|
1458
|
+
|
|
1459
|
+
bl_use_shading_nodes_custom: typing.Any
|
|
1460
|
+
""" """
|
|
1461
|
+
|
|
1462
|
+
id_data: typing.Any
|
|
1463
|
+
""" """
|
|
1464
|
+
|
|
1465
|
+
def as_pointer(self):
|
|
1466
|
+
""" """
|
|
1467
|
+
...
|
|
1468
|
+
|
|
1469
|
+
def bl_rna_get_subclass(self):
|
|
1470
|
+
""" """
|
|
1471
|
+
...
|
|
1472
|
+
|
|
1473
|
+
def bl_rna_get_subclass_py(self):
|
|
1474
|
+
""" """
|
|
1475
|
+
...
|
|
1476
|
+
|
|
1477
|
+
def driver_add(self):
|
|
1478
|
+
""" """
|
|
1479
|
+
...
|
|
1480
|
+
|
|
1481
|
+
def driver_remove(self):
|
|
1482
|
+
""" """
|
|
1483
|
+
...
|
|
1484
|
+
|
|
1485
|
+
def get(self):
|
|
1486
|
+
""" """
|
|
1487
|
+
...
|
|
1488
|
+
|
|
1489
|
+
def get_render_settings(self, engine_type):
|
|
1490
|
+
"""
|
|
1491
|
+
|
|
1492
|
+
:param engine_type:
|
|
1493
|
+
"""
|
|
1494
|
+
...
|
|
1495
|
+
|
|
1496
|
+
def id_properties_clear(self):
|
|
1497
|
+
""" """
|
|
1498
|
+
...
|
|
1499
|
+
|
|
1500
|
+
def id_properties_ensure(self):
|
|
1501
|
+
""" """
|
|
1502
|
+
...
|
|
1503
|
+
|
|
1504
|
+
def id_properties_ui(self):
|
|
1505
|
+
""" """
|
|
1506
|
+
...
|
|
1507
|
+
|
|
1508
|
+
def is_property_hidden(self):
|
|
1509
|
+
""" """
|
|
1510
|
+
...
|
|
1511
|
+
|
|
1512
|
+
def is_property_overridable_library(self):
|
|
1513
|
+
""" """
|
|
1514
|
+
...
|
|
1515
|
+
|
|
1516
|
+
def is_property_readonly(self):
|
|
1517
|
+
""" """
|
|
1518
|
+
...
|
|
1519
|
+
|
|
1520
|
+
def is_property_set(self):
|
|
1521
|
+
""" """
|
|
1522
|
+
...
|
|
1523
|
+
|
|
1524
|
+
def items(self):
|
|
1525
|
+
""" """
|
|
1526
|
+
...
|
|
1527
|
+
|
|
1528
|
+
def keyframe_delete(self):
|
|
1529
|
+
""" """
|
|
1530
|
+
...
|
|
1531
|
+
|
|
1532
|
+
def keyframe_insert(self):
|
|
1533
|
+
""" """
|
|
1534
|
+
...
|
|
1535
|
+
|
|
1536
|
+
def keys(self):
|
|
1537
|
+
""" """
|
|
1538
|
+
...
|
|
1539
|
+
|
|
1540
|
+
def path_from_id(self):
|
|
1541
|
+
""" """
|
|
1542
|
+
...
|
|
1543
|
+
|
|
1544
|
+
def path_resolve(self):
|
|
1545
|
+
""" """
|
|
1546
|
+
...
|
|
1547
|
+
|
|
1548
|
+
def pop(self):
|
|
1549
|
+
""" """
|
|
1550
|
+
...
|
|
1551
|
+
|
|
1552
|
+
def property_overridable_library_set(self):
|
|
1553
|
+
""" """
|
|
1554
|
+
...
|
|
1555
|
+
|
|
1556
|
+
def property_unset(self):
|
|
1557
|
+
""" """
|
|
1558
|
+
...
|
|
1559
|
+
|
|
1560
|
+
def render(self, depsgraph):
|
|
1561
|
+
"""
|
|
1562
|
+
|
|
1563
|
+
:param depsgraph:
|
|
1564
|
+
"""
|
|
1565
|
+
...
|
|
1566
|
+
|
|
1567
|
+
def type_recast(self):
|
|
1568
|
+
""" """
|
|
1569
|
+
...
|
|
1570
|
+
|
|
1571
|
+
def update(self, data, depsgraph):
|
|
1572
|
+
"""
|
|
1573
|
+
|
|
1574
|
+
:param data:
|
|
1575
|
+
:param depsgraph:
|
|
1576
|
+
"""
|
|
1577
|
+
...
|
|
1578
|
+
|
|
1579
|
+
def values(self):
|
|
1580
|
+
""" """
|
|
1581
|
+
...
|
|
1582
|
+
|
|
1583
|
+
def view_draw(self, context, depsgraph):
|
|
1584
|
+
"""
|
|
1585
|
+
|
|
1586
|
+
:param context:
|
|
1587
|
+
:param depsgraph:
|
|
1588
|
+
"""
|
|
1589
|
+
...
|
|
1590
|
+
|
|
1591
|
+
def view_update(self, context, depsgraph):
|
|
1592
|
+
"""
|
|
1593
|
+
|
|
1594
|
+
:param context:
|
|
1595
|
+
:param depsgraph:
|
|
1596
|
+
"""
|
|
1597
|
+
...
|
|
1598
|
+
|
|
1599
|
+
class KeyingSetInfo:
|
|
1600
|
+
""" """
|
|
1601
|
+
|
|
1602
|
+
bl_rna: typing.Any
|
|
1603
|
+
""" """
|
|
1604
|
+
|
|
1605
|
+
id_data: typing.Any
|
|
1606
|
+
""" """
|
|
1607
|
+
|
|
1608
|
+
def as_pointer(self):
|
|
1609
|
+
""" """
|
|
1610
|
+
...
|
|
1611
|
+
|
|
1612
|
+
def bl_rna_get_subclass(self):
|
|
1613
|
+
""" """
|
|
1614
|
+
...
|
|
1615
|
+
|
|
1616
|
+
def bl_rna_get_subclass_py(self):
|
|
1617
|
+
""" """
|
|
1618
|
+
...
|
|
1619
|
+
|
|
1620
|
+
def driver_add(self):
|
|
1621
|
+
""" """
|
|
1622
|
+
...
|
|
1623
|
+
|
|
1624
|
+
def driver_remove(self):
|
|
1625
|
+
""" """
|
|
1626
|
+
...
|
|
1627
|
+
|
|
1628
|
+
def get(self):
|
|
1629
|
+
""" """
|
|
1630
|
+
...
|
|
1631
|
+
|
|
1632
|
+
def id_properties_clear(self):
|
|
1633
|
+
""" """
|
|
1634
|
+
...
|
|
1635
|
+
|
|
1636
|
+
def id_properties_ensure(self):
|
|
1637
|
+
""" """
|
|
1638
|
+
...
|
|
1639
|
+
|
|
1640
|
+
def id_properties_ui(self):
|
|
1641
|
+
""" """
|
|
1642
|
+
...
|
|
1643
|
+
|
|
1644
|
+
def is_property_hidden(self):
|
|
1645
|
+
""" """
|
|
1646
|
+
...
|
|
1647
|
+
|
|
1648
|
+
def is_property_overridable_library(self):
|
|
1649
|
+
""" """
|
|
1650
|
+
...
|
|
1651
|
+
|
|
1652
|
+
def is_property_readonly(self):
|
|
1653
|
+
""" """
|
|
1654
|
+
...
|
|
1655
|
+
|
|
1656
|
+
def is_property_set(self):
|
|
1657
|
+
""" """
|
|
1658
|
+
...
|
|
1659
|
+
|
|
1660
|
+
def items(self):
|
|
1661
|
+
""" """
|
|
1662
|
+
...
|
|
1663
|
+
|
|
1664
|
+
def keyframe_delete(self):
|
|
1665
|
+
""" """
|
|
1666
|
+
...
|
|
1667
|
+
|
|
1668
|
+
def keyframe_insert(self):
|
|
1669
|
+
""" """
|
|
1670
|
+
...
|
|
1671
|
+
|
|
1672
|
+
def keys(self):
|
|
1673
|
+
""" """
|
|
1674
|
+
...
|
|
1675
|
+
|
|
1676
|
+
def path_from_id(self):
|
|
1677
|
+
""" """
|
|
1678
|
+
...
|
|
1679
|
+
|
|
1680
|
+
def path_resolve(self):
|
|
1681
|
+
""" """
|
|
1682
|
+
...
|
|
1683
|
+
|
|
1684
|
+
def pop(self):
|
|
1685
|
+
""" """
|
|
1686
|
+
...
|
|
1687
|
+
|
|
1688
|
+
def property_overridable_library_set(self):
|
|
1689
|
+
""" """
|
|
1690
|
+
...
|
|
1691
|
+
|
|
1692
|
+
def property_unset(self):
|
|
1693
|
+
""" """
|
|
1694
|
+
...
|
|
1695
|
+
|
|
1696
|
+
def type_recast(self):
|
|
1697
|
+
""" """
|
|
1698
|
+
...
|
|
1699
|
+
|
|
1700
|
+
def values(self):
|
|
1701
|
+
""" """
|
|
1702
|
+
...
|
|
1703
|
+
|
|
1704
|
+
class Macro:
|
|
1705
|
+
""" """
|
|
1706
|
+
|
|
1707
|
+
id_data: typing.Any
|
|
1708
|
+
""" """
|
|
1709
|
+
|
|
1710
|
+
def as_pointer(self):
|
|
1711
|
+
""" """
|
|
1712
|
+
...
|
|
1713
|
+
|
|
1714
|
+
def bl_rna_get_subclass(self):
|
|
1715
|
+
""" """
|
|
1716
|
+
...
|
|
1717
|
+
|
|
1718
|
+
def bl_rna_get_subclass_py(self):
|
|
1719
|
+
""" """
|
|
1720
|
+
...
|
|
1721
|
+
|
|
1722
|
+
def define(self, opname):
|
|
1723
|
+
"""
|
|
1724
|
+
|
|
1725
|
+
:param opname:
|
|
1726
|
+
"""
|
|
1727
|
+
...
|
|
1728
|
+
|
|
1729
|
+
def driver_add(self):
|
|
1730
|
+
""" """
|
|
1731
|
+
...
|
|
1732
|
+
|
|
1733
|
+
def driver_remove(self):
|
|
1734
|
+
""" """
|
|
1735
|
+
...
|
|
1736
|
+
|
|
1737
|
+
def get(self):
|
|
1738
|
+
""" """
|
|
1739
|
+
...
|
|
1740
|
+
|
|
1741
|
+
def id_properties_clear(self):
|
|
1742
|
+
""" """
|
|
1743
|
+
...
|
|
1744
|
+
|
|
1745
|
+
def id_properties_ensure(self):
|
|
1746
|
+
""" """
|
|
1747
|
+
...
|
|
1748
|
+
|
|
1749
|
+
def id_properties_ui(self):
|
|
1750
|
+
""" """
|
|
1751
|
+
...
|
|
1752
|
+
|
|
1753
|
+
def is_property_hidden(self):
|
|
1754
|
+
""" """
|
|
1755
|
+
...
|
|
1756
|
+
|
|
1757
|
+
def is_property_overridable_library(self):
|
|
1758
|
+
""" """
|
|
1759
|
+
...
|
|
1760
|
+
|
|
1761
|
+
def is_property_readonly(self):
|
|
1762
|
+
""" """
|
|
1763
|
+
...
|
|
1764
|
+
|
|
1765
|
+
def is_property_set(self):
|
|
1766
|
+
""" """
|
|
1767
|
+
...
|
|
1768
|
+
|
|
1769
|
+
def items(self):
|
|
1770
|
+
""" """
|
|
1771
|
+
...
|
|
1772
|
+
|
|
1773
|
+
def keyframe_delete(self):
|
|
1774
|
+
""" """
|
|
1775
|
+
...
|
|
1776
|
+
|
|
1777
|
+
def keyframe_insert(self):
|
|
1778
|
+
""" """
|
|
1779
|
+
...
|
|
1780
|
+
|
|
1781
|
+
def keys(self):
|
|
1782
|
+
""" """
|
|
1783
|
+
...
|
|
1784
|
+
|
|
1785
|
+
def path_from_id(self):
|
|
1786
|
+
""" """
|
|
1787
|
+
...
|
|
1788
|
+
|
|
1789
|
+
def path_resolve(self):
|
|
1790
|
+
""" """
|
|
1791
|
+
...
|
|
1792
|
+
|
|
1793
|
+
def pop(self):
|
|
1794
|
+
""" """
|
|
1795
|
+
...
|
|
1796
|
+
|
|
1797
|
+
def property_overridable_library_set(self):
|
|
1798
|
+
""" """
|
|
1799
|
+
...
|
|
1800
|
+
|
|
1801
|
+
def property_unset(self):
|
|
1802
|
+
""" """
|
|
1803
|
+
...
|
|
1804
|
+
|
|
1805
|
+
def type_recast(self):
|
|
1806
|
+
""" """
|
|
1807
|
+
...
|
|
1808
|
+
|
|
1809
|
+
def values(self):
|
|
1810
|
+
""" """
|
|
1811
|
+
...
|
|
1812
|
+
|
|
1813
|
+
class Menu(_GenericUI):
|
|
1814
|
+
""" """
|
|
1815
|
+
|
|
1816
|
+
bl_rna: typing.Any
|
|
1817
|
+
""" """
|
|
1818
|
+
|
|
1819
|
+
id_data: typing.Any
|
|
1820
|
+
""" """
|
|
1821
|
+
|
|
1822
|
+
def append(self, draw_func):
|
|
1823
|
+
"""
|
|
1824
|
+
|
|
1825
|
+
:param draw_func:
|
|
1826
|
+
"""
|
|
1827
|
+
...
|
|
1828
|
+
|
|
1829
|
+
def as_pointer(self):
|
|
1830
|
+
""" """
|
|
1831
|
+
...
|
|
1832
|
+
|
|
1833
|
+
def bl_rna_get_subclass(self):
|
|
1834
|
+
""" """
|
|
1835
|
+
...
|
|
1836
|
+
|
|
1837
|
+
def bl_rna_get_subclass_py(self):
|
|
1838
|
+
""" """
|
|
1839
|
+
...
|
|
1840
|
+
|
|
1841
|
+
def draw_collapsible(self, context, layout):
|
|
1842
|
+
"""
|
|
1843
|
+
|
|
1844
|
+
:param context:
|
|
1845
|
+
:param layout:
|
|
1846
|
+
"""
|
|
1847
|
+
...
|
|
1848
|
+
|
|
1849
|
+
def draw_preset(self, _context):
|
|
1850
|
+
"""
|
|
1851
|
+
|
|
1852
|
+
:param _context:
|
|
1853
|
+
"""
|
|
1854
|
+
...
|
|
1855
|
+
|
|
1856
|
+
def driver_add(self):
|
|
1857
|
+
""" """
|
|
1858
|
+
...
|
|
1859
|
+
|
|
1860
|
+
def driver_remove(self):
|
|
1861
|
+
""" """
|
|
1862
|
+
...
|
|
1863
|
+
|
|
1864
|
+
def get(self):
|
|
1865
|
+
""" """
|
|
1866
|
+
...
|
|
1867
|
+
|
|
1868
|
+
def id_properties_clear(self):
|
|
1869
|
+
""" """
|
|
1870
|
+
...
|
|
1871
|
+
|
|
1872
|
+
def id_properties_ensure(self):
|
|
1873
|
+
""" """
|
|
1874
|
+
...
|
|
1875
|
+
|
|
1876
|
+
def id_properties_ui(self):
|
|
1877
|
+
""" """
|
|
1878
|
+
...
|
|
1879
|
+
|
|
1880
|
+
def is_extended(self):
|
|
1881
|
+
""" """
|
|
1882
|
+
...
|
|
1883
|
+
|
|
1884
|
+
def is_property_hidden(self):
|
|
1885
|
+
""" """
|
|
1886
|
+
...
|
|
1887
|
+
|
|
1888
|
+
def is_property_overridable_library(self):
|
|
1889
|
+
""" """
|
|
1890
|
+
...
|
|
1891
|
+
|
|
1892
|
+
def is_property_readonly(self):
|
|
1893
|
+
""" """
|
|
1894
|
+
...
|
|
1895
|
+
|
|
1896
|
+
def is_property_set(self):
|
|
1897
|
+
""" """
|
|
1898
|
+
...
|
|
1899
|
+
|
|
1900
|
+
def items(self):
|
|
1901
|
+
""" """
|
|
1902
|
+
...
|
|
1903
|
+
|
|
1904
|
+
def keyframe_delete(self):
|
|
1905
|
+
""" """
|
|
1906
|
+
...
|
|
1907
|
+
|
|
1908
|
+
def keyframe_insert(self):
|
|
1909
|
+
""" """
|
|
1910
|
+
...
|
|
1911
|
+
|
|
1912
|
+
def keys(self):
|
|
1913
|
+
""" """
|
|
1914
|
+
...
|
|
1915
|
+
|
|
1916
|
+
def path_from_id(self):
|
|
1917
|
+
""" """
|
|
1918
|
+
...
|
|
1919
|
+
|
|
1920
|
+
def path_menu(
|
|
1921
|
+
self,
|
|
1922
|
+
searchpaths,
|
|
1923
|
+
operator,
|
|
1924
|
+
props_default,
|
|
1925
|
+
prop_filepath,
|
|
1926
|
+
filter_ext,
|
|
1927
|
+
filter_path,
|
|
1928
|
+
display_name,
|
|
1929
|
+
add_operator,
|
|
1930
|
+
):
|
|
1931
|
+
"""
|
|
1932
|
+
|
|
1933
|
+
:param searchpaths:
|
|
1934
|
+
:param operator:
|
|
1935
|
+
:param props_default:
|
|
1936
|
+
:param prop_filepath:
|
|
1937
|
+
:param filter_ext:
|
|
1938
|
+
:param filter_path:
|
|
1939
|
+
:param display_name:
|
|
1940
|
+
:param add_operator:
|
|
1941
|
+
"""
|
|
1942
|
+
...
|
|
1943
|
+
|
|
1944
|
+
def path_resolve(self):
|
|
1945
|
+
""" """
|
|
1946
|
+
...
|
|
1947
|
+
|
|
1948
|
+
def pop(self):
|
|
1949
|
+
""" """
|
|
1950
|
+
...
|
|
1951
|
+
|
|
1952
|
+
def prepend(self, draw_func):
|
|
1953
|
+
"""
|
|
1954
|
+
|
|
1955
|
+
:param draw_func:
|
|
1956
|
+
"""
|
|
1957
|
+
...
|
|
1958
|
+
|
|
1959
|
+
def property_overridable_library_set(self):
|
|
1960
|
+
""" """
|
|
1961
|
+
...
|
|
1962
|
+
|
|
1963
|
+
def property_unset(self):
|
|
1964
|
+
""" """
|
|
1965
|
+
...
|
|
1966
|
+
|
|
1967
|
+
def remove(self, draw_func):
|
|
1968
|
+
"""
|
|
1969
|
+
|
|
1970
|
+
:param draw_func:
|
|
1971
|
+
"""
|
|
1972
|
+
...
|
|
1973
|
+
|
|
1974
|
+
def type_recast(self):
|
|
1975
|
+
""" """
|
|
1976
|
+
...
|
|
1977
|
+
|
|
1978
|
+
def values(self):
|
|
1979
|
+
""" """
|
|
1980
|
+
...
|
|
1981
|
+
|
|
1982
|
+
class MeshEdge:
|
|
1983
|
+
""" """
|
|
1984
|
+
|
|
1985
|
+
id_data: typing.Any
|
|
1986
|
+
""" """
|
|
1987
|
+
|
|
1988
|
+
key: typing.Any
|
|
1989
|
+
""" """
|
|
1990
|
+
|
|
1991
|
+
def as_pointer(self):
|
|
1992
|
+
""" """
|
|
1993
|
+
...
|
|
1994
|
+
|
|
1995
|
+
def bl_rna_get_subclass(self):
|
|
1996
|
+
""" """
|
|
1997
|
+
...
|
|
1998
|
+
|
|
1999
|
+
def bl_rna_get_subclass_py(self):
|
|
2000
|
+
""" """
|
|
2001
|
+
...
|
|
2002
|
+
|
|
2003
|
+
def driver_add(self):
|
|
2004
|
+
""" """
|
|
2005
|
+
...
|
|
2006
|
+
|
|
2007
|
+
def driver_remove(self):
|
|
2008
|
+
""" """
|
|
2009
|
+
...
|
|
2010
|
+
|
|
2011
|
+
def get(self):
|
|
2012
|
+
""" """
|
|
2013
|
+
...
|
|
2014
|
+
|
|
2015
|
+
def id_properties_clear(self):
|
|
2016
|
+
""" """
|
|
2017
|
+
...
|
|
2018
|
+
|
|
2019
|
+
def id_properties_ensure(self):
|
|
2020
|
+
""" """
|
|
2021
|
+
...
|
|
2022
|
+
|
|
2023
|
+
def id_properties_ui(self):
|
|
2024
|
+
""" """
|
|
2025
|
+
...
|
|
2026
|
+
|
|
2027
|
+
def is_property_hidden(self):
|
|
2028
|
+
""" """
|
|
2029
|
+
...
|
|
2030
|
+
|
|
2031
|
+
def is_property_overridable_library(self):
|
|
2032
|
+
""" """
|
|
2033
|
+
...
|
|
2034
|
+
|
|
2035
|
+
def is_property_readonly(self):
|
|
2036
|
+
""" """
|
|
2037
|
+
...
|
|
2038
|
+
|
|
2039
|
+
def is_property_set(self):
|
|
2040
|
+
""" """
|
|
2041
|
+
...
|
|
2042
|
+
|
|
2043
|
+
def items(self):
|
|
2044
|
+
""" """
|
|
2045
|
+
...
|
|
2046
|
+
|
|
2047
|
+
def keyframe_delete(self):
|
|
2048
|
+
""" """
|
|
2049
|
+
...
|
|
2050
|
+
|
|
2051
|
+
def keyframe_insert(self):
|
|
2052
|
+
""" """
|
|
2053
|
+
...
|
|
2054
|
+
|
|
2055
|
+
def keys(self):
|
|
2056
|
+
""" """
|
|
2057
|
+
...
|
|
2058
|
+
|
|
2059
|
+
def path_from_id(self):
|
|
2060
|
+
""" """
|
|
2061
|
+
...
|
|
2062
|
+
|
|
2063
|
+
def path_resolve(self):
|
|
2064
|
+
""" """
|
|
2065
|
+
...
|
|
2066
|
+
|
|
2067
|
+
def pop(self):
|
|
2068
|
+
""" """
|
|
2069
|
+
...
|
|
2070
|
+
|
|
2071
|
+
def property_overridable_library_set(self):
|
|
2072
|
+
""" """
|
|
2073
|
+
...
|
|
2074
|
+
|
|
2075
|
+
def property_unset(self):
|
|
2076
|
+
""" """
|
|
2077
|
+
...
|
|
2078
|
+
|
|
2079
|
+
def type_recast(self):
|
|
2080
|
+
""" """
|
|
2081
|
+
...
|
|
2082
|
+
|
|
2083
|
+
def values(self):
|
|
2084
|
+
""" """
|
|
2085
|
+
...
|
|
2086
|
+
|
|
2087
|
+
class MeshLoopTriangle:
|
|
2088
|
+
""" """
|
|
2089
|
+
|
|
2090
|
+
center: typing.Any
|
|
2091
|
+
""" """
|
|
2092
|
+
|
|
2093
|
+
edge_keys: typing.Any
|
|
2094
|
+
""" """
|
|
2095
|
+
|
|
2096
|
+
id_data: typing.Any
|
|
2097
|
+
""" """
|
|
2098
|
+
|
|
2099
|
+
def as_pointer(self):
|
|
2100
|
+
""" """
|
|
2101
|
+
...
|
|
2102
|
+
|
|
2103
|
+
def bl_rna_get_subclass(self):
|
|
2104
|
+
""" """
|
|
2105
|
+
...
|
|
2106
|
+
|
|
2107
|
+
def bl_rna_get_subclass_py(self):
|
|
2108
|
+
""" """
|
|
2109
|
+
...
|
|
2110
|
+
|
|
2111
|
+
def driver_add(self):
|
|
2112
|
+
""" """
|
|
2113
|
+
...
|
|
2114
|
+
|
|
2115
|
+
def driver_remove(self):
|
|
2116
|
+
""" """
|
|
2117
|
+
...
|
|
2118
|
+
|
|
2119
|
+
def get(self):
|
|
2120
|
+
""" """
|
|
2121
|
+
...
|
|
2122
|
+
|
|
2123
|
+
def id_properties_clear(self):
|
|
2124
|
+
""" """
|
|
2125
|
+
...
|
|
2126
|
+
|
|
2127
|
+
def id_properties_ensure(self):
|
|
2128
|
+
""" """
|
|
2129
|
+
...
|
|
2130
|
+
|
|
2131
|
+
def id_properties_ui(self):
|
|
2132
|
+
""" """
|
|
2133
|
+
...
|
|
2134
|
+
|
|
2135
|
+
def is_property_hidden(self):
|
|
2136
|
+
""" """
|
|
2137
|
+
...
|
|
2138
|
+
|
|
2139
|
+
def is_property_overridable_library(self):
|
|
2140
|
+
""" """
|
|
2141
|
+
...
|
|
2142
|
+
|
|
2143
|
+
def is_property_readonly(self):
|
|
2144
|
+
""" """
|
|
2145
|
+
...
|
|
2146
|
+
|
|
2147
|
+
def is_property_set(self):
|
|
2148
|
+
""" """
|
|
2149
|
+
...
|
|
2150
|
+
|
|
2151
|
+
def items(self):
|
|
2152
|
+
""" """
|
|
2153
|
+
...
|
|
2154
|
+
|
|
2155
|
+
def keyframe_delete(self):
|
|
2156
|
+
""" """
|
|
2157
|
+
...
|
|
2158
|
+
|
|
2159
|
+
def keyframe_insert(self):
|
|
2160
|
+
""" """
|
|
2161
|
+
...
|
|
2162
|
+
|
|
2163
|
+
def keys(self):
|
|
2164
|
+
""" """
|
|
2165
|
+
...
|
|
2166
|
+
|
|
2167
|
+
def path_from_id(self):
|
|
2168
|
+
""" """
|
|
2169
|
+
...
|
|
2170
|
+
|
|
2171
|
+
def path_resolve(self):
|
|
2172
|
+
""" """
|
|
2173
|
+
...
|
|
2174
|
+
|
|
2175
|
+
def pop(self):
|
|
2176
|
+
""" """
|
|
2177
|
+
...
|
|
2178
|
+
|
|
2179
|
+
def property_overridable_library_set(self):
|
|
2180
|
+
""" """
|
|
2181
|
+
...
|
|
2182
|
+
|
|
2183
|
+
def property_unset(self):
|
|
2184
|
+
""" """
|
|
2185
|
+
...
|
|
2186
|
+
|
|
2187
|
+
def type_recast(self):
|
|
2188
|
+
""" """
|
|
2189
|
+
...
|
|
2190
|
+
|
|
2191
|
+
def values(self):
|
|
2192
|
+
""" """
|
|
2193
|
+
...
|
|
2194
|
+
|
|
2195
|
+
class MeshPolygon:
|
|
2196
|
+
""" """
|
|
2197
|
+
|
|
2198
|
+
edge_keys: typing.Any
|
|
2199
|
+
""" """
|
|
2200
|
+
|
|
2201
|
+
id_data: typing.Any
|
|
2202
|
+
""" """
|
|
2203
|
+
|
|
2204
|
+
loop_indices: typing.Any
|
|
2205
|
+
""" """
|
|
2206
|
+
|
|
2207
|
+
def as_pointer(self):
|
|
2208
|
+
""" """
|
|
2209
|
+
...
|
|
2210
|
+
|
|
2211
|
+
def bl_rna_get_subclass(self):
|
|
2212
|
+
""" """
|
|
2213
|
+
...
|
|
2214
|
+
|
|
2215
|
+
def bl_rna_get_subclass_py(self):
|
|
2216
|
+
""" """
|
|
2217
|
+
...
|
|
2218
|
+
|
|
2219
|
+
def driver_add(self):
|
|
2220
|
+
""" """
|
|
2221
|
+
...
|
|
2222
|
+
|
|
2223
|
+
def driver_remove(self):
|
|
2224
|
+
""" """
|
|
2225
|
+
...
|
|
2226
|
+
|
|
2227
|
+
def get(self):
|
|
2228
|
+
""" """
|
|
2229
|
+
...
|
|
2230
|
+
|
|
2231
|
+
def id_properties_clear(self):
|
|
2232
|
+
""" """
|
|
2233
|
+
...
|
|
2234
|
+
|
|
2235
|
+
def id_properties_ensure(self):
|
|
2236
|
+
""" """
|
|
2237
|
+
...
|
|
2238
|
+
|
|
2239
|
+
def id_properties_ui(self):
|
|
2240
|
+
""" """
|
|
2241
|
+
...
|
|
2242
|
+
|
|
2243
|
+
def is_property_hidden(self):
|
|
2244
|
+
""" """
|
|
2245
|
+
...
|
|
2246
|
+
|
|
2247
|
+
def is_property_overridable_library(self):
|
|
2248
|
+
""" """
|
|
2249
|
+
...
|
|
2250
|
+
|
|
2251
|
+
def is_property_readonly(self):
|
|
2252
|
+
""" """
|
|
2253
|
+
...
|
|
2254
|
+
|
|
2255
|
+
def is_property_set(self):
|
|
2256
|
+
""" """
|
|
2257
|
+
...
|
|
2258
|
+
|
|
2259
|
+
def items(self):
|
|
2260
|
+
""" """
|
|
2261
|
+
...
|
|
2262
|
+
|
|
2263
|
+
def keyframe_delete(self):
|
|
2264
|
+
""" """
|
|
2265
|
+
...
|
|
2266
|
+
|
|
2267
|
+
def keyframe_insert(self):
|
|
2268
|
+
""" """
|
|
2269
|
+
...
|
|
2270
|
+
|
|
2271
|
+
def keys(self):
|
|
2272
|
+
""" """
|
|
2273
|
+
...
|
|
2274
|
+
|
|
2275
|
+
def path_from_id(self):
|
|
2276
|
+
""" """
|
|
2277
|
+
...
|
|
2278
|
+
|
|
2279
|
+
def path_resolve(self):
|
|
2280
|
+
""" """
|
|
2281
|
+
...
|
|
2282
|
+
|
|
2283
|
+
def pop(self):
|
|
2284
|
+
""" """
|
|
2285
|
+
...
|
|
2286
|
+
|
|
2287
|
+
def property_overridable_library_set(self):
|
|
2288
|
+
""" """
|
|
2289
|
+
...
|
|
2290
|
+
|
|
2291
|
+
def property_unset(self):
|
|
2292
|
+
""" """
|
|
2293
|
+
...
|
|
2294
|
+
|
|
2295
|
+
def type_recast(self):
|
|
2296
|
+
""" """
|
|
2297
|
+
...
|
|
2298
|
+
|
|
2299
|
+
def values(self):
|
|
2300
|
+
""" """
|
|
2301
|
+
...
|
|
2302
|
+
|
|
2303
|
+
class NodeInternal(Node):
|
|
2304
|
+
""" """
|
|
2305
|
+
|
|
2306
|
+
id_data: typing.Any
|
|
2307
|
+
""" """
|
|
2308
|
+
|
|
2309
|
+
def as_pointer(self):
|
|
2310
|
+
""" """
|
|
2311
|
+
...
|
|
2312
|
+
|
|
2313
|
+
def bl_rna_get_subclass(self):
|
|
2314
|
+
""" """
|
|
2315
|
+
...
|
|
2316
|
+
|
|
2317
|
+
def bl_rna_get_subclass_py(self):
|
|
2318
|
+
""" """
|
|
2319
|
+
...
|
|
2320
|
+
|
|
2321
|
+
def driver_add(self):
|
|
2322
|
+
""" """
|
|
2323
|
+
...
|
|
2324
|
+
|
|
2325
|
+
def driver_remove(self):
|
|
2326
|
+
""" """
|
|
2327
|
+
...
|
|
2328
|
+
|
|
2329
|
+
def get(self):
|
|
2330
|
+
""" """
|
|
2331
|
+
...
|
|
2332
|
+
|
|
2333
|
+
def id_properties_clear(self):
|
|
2334
|
+
""" """
|
|
2335
|
+
...
|
|
2336
|
+
|
|
2337
|
+
def id_properties_ensure(self):
|
|
2338
|
+
""" """
|
|
2339
|
+
...
|
|
2340
|
+
|
|
2341
|
+
def id_properties_ui(self):
|
|
2342
|
+
""" """
|
|
2343
|
+
...
|
|
2344
|
+
|
|
2345
|
+
def is_property_hidden(self):
|
|
2346
|
+
""" """
|
|
2347
|
+
...
|
|
2348
|
+
|
|
2349
|
+
def is_property_overridable_library(self):
|
|
2350
|
+
""" """
|
|
2351
|
+
...
|
|
2352
|
+
|
|
2353
|
+
def is_property_readonly(self):
|
|
2354
|
+
""" """
|
|
2355
|
+
...
|
|
2356
|
+
|
|
2357
|
+
def is_property_set(self):
|
|
2358
|
+
""" """
|
|
2359
|
+
...
|
|
2360
|
+
|
|
2361
|
+
def items(self):
|
|
2362
|
+
""" """
|
|
2363
|
+
...
|
|
2364
|
+
|
|
2365
|
+
def keyframe_delete(self):
|
|
2366
|
+
""" """
|
|
2367
|
+
...
|
|
2368
|
+
|
|
2369
|
+
def keyframe_insert(self):
|
|
2370
|
+
""" """
|
|
2371
|
+
...
|
|
2372
|
+
|
|
2373
|
+
def keys(self):
|
|
2374
|
+
""" """
|
|
2375
|
+
...
|
|
2376
|
+
|
|
2377
|
+
def path_from_id(self):
|
|
2378
|
+
""" """
|
|
2379
|
+
...
|
|
2380
|
+
|
|
2381
|
+
def path_resolve(self):
|
|
2382
|
+
""" """
|
|
2383
|
+
...
|
|
2384
|
+
|
|
2385
|
+
def poll(self, _ntree):
|
|
2386
|
+
"""
|
|
2387
|
+
|
|
2388
|
+
:param _ntree:
|
|
2389
|
+
"""
|
|
2390
|
+
...
|
|
2391
|
+
|
|
2392
|
+
def pop(self):
|
|
2393
|
+
""" """
|
|
2394
|
+
...
|
|
2395
|
+
|
|
2396
|
+
def property_overridable_library_set(self):
|
|
2397
|
+
""" """
|
|
2398
|
+
...
|
|
2399
|
+
|
|
2400
|
+
def property_unset(self):
|
|
2401
|
+
""" """
|
|
2402
|
+
...
|
|
2403
|
+
|
|
2404
|
+
def type_recast(self):
|
|
2405
|
+
""" """
|
|
2406
|
+
...
|
|
2407
|
+
|
|
2408
|
+
def values(self):
|
|
2409
|
+
""" """
|
|
2410
|
+
...
|
|
2411
|
+
|
|
2412
|
+
class NodeSocket:
|
|
2413
|
+
""" """
|
|
2414
|
+
|
|
2415
|
+
id_data: typing.Any
|
|
2416
|
+
""" """
|
|
2417
|
+
|
|
2418
|
+
links: typing.Any
|
|
2419
|
+
""" """
|
|
2420
|
+
|
|
2421
|
+
def as_pointer(self):
|
|
2422
|
+
""" """
|
|
2423
|
+
...
|
|
2424
|
+
|
|
2425
|
+
def bl_rna_get_subclass(self):
|
|
2426
|
+
""" """
|
|
2427
|
+
...
|
|
2428
|
+
|
|
2429
|
+
def bl_rna_get_subclass_py(self):
|
|
2430
|
+
""" """
|
|
2431
|
+
...
|
|
2432
|
+
|
|
2433
|
+
def driver_add(self):
|
|
2434
|
+
""" """
|
|
2435
|
+
...
|
|
2436
|
+
|
|
2437
|
+
def driver_remove(self):
|
|
2438
|
+
""" """
|
|
2439
|
+
...
|
|
2440
|
+
|
|
2441
|
+
def get(self):
|
|
2442
|
+
""" """
|
|
2443
|
+
...
|
|
2444
|
+
|
|
2445
|
+
def id_properties_clear(self):
|
|
2446
|
+
""" """
|
|
2447
|
+
...
|
|
2448
|
+
|
|
2449
|
+
def id_properties_ensure(self):
|
|
2450
|
+
""" """
|
|
2451
|
+
...
|
|
2452
|
+
|
|
2453
|
+
def id_properties_ui(self):
|
|
2454
|
+
""" """
|
|
2455
|
+
...
|
|
2456
|
+
|
|
2457
|
+
def is_property_hidden(self):
|
|
2458
|
+
""" """
|
|
2459
|
+
...
|
|
2460
|
+
|
|
2461
|
+
def is_property_overridable_library(self):
|
|
2462
|
+
""" """
|
|
2463
|
+
...
|
|
2464
|
+
|
|
2465
|
+
def is_property_readonly(self):
|
|
2466
|
+
""" """
|
|
2467
|
+
...
|
|
2468
|
+
|
|
2469
|
+
def is_property_set(self):
|
|
2470
|
+
""" """
|
|
2471
|
+
...
|
|
2472
|
+
|
|
2473
|
+
def items(self):
|
|
2474
|
+
""" """
|
|
2475
|
+
...
|
|
2476
|
+
|
|
2477
|
+
def keyframe_delete(self):
|
|
2478
|
+
""" """
|
|
2479
|
+
...
|
|
2480
|
+
|
|
2481
|
+
def keyframe_insert(self):
|
|
2482
|
+
""" """
|
|
2483
|
+
...
|
|
2484
|
+
|
|
2485
|
+
def keys(self):
|
|
2486
|
+
""" """
|
|
2487
|
+
...
|
|
2488
|
+
|
|
2489
|
+
def path_from_id(self):
|
|
2490
|
+
""" """
|
|
2491
|
+
...
|
|
2492
|
+
|
|
2493
|
+
def path_resolve(self):
|
|
2494
|
+
""" """
|
|
2495
|
+
...
|
|
2496
|
+
|
|
2497
|
+
def pop(self):
|
|
2498
|
+
""" """
|
|
2499
|
+
...
|
|
2500
|
+
|
|
2501
|
+
def property_overridable_library_set(self):
|
|
2502
|
+
""" """
|
|
2503
|
+
...
|
|
2504
|
+
|
|
2505
|
+
def property_unset(self):
|
|
2506
|
+
""" """
|
|
2507
|
+
...
|
|
2508
|
+
|
|
2509
|
+
def type_recast(self):
|
|
2510
|
+
""" """
|
|
2511
|
+
...
|
|
2512
|
+
|
|
2513
|
+
def values(self):
|
|
2514
|
+
""" """
|
|
2515
|
+
...
|
|
2516
|
+
|
|
2517
|
+
class NodeTreeInterfaceSocket(NodeTreeInterfaceItem):
|
|
2518
|
+
""" """
|
|
2519
|
+
|
|
2520
|
+
id_data: typing.Any
|
|
2521
|
+
""" """
|
|
2522
|
+
|
|
2523
|
+
def as_pointer(self):
|
|
2524
|
+
""" """
|
|
2525
|
+
...
|
|
2526
|
+
|
|
2527
|
+
def bl_rna_get_subclass(self):
|
|
2528
|
+
""" """
|
|
2529
|
+
...
|
|
2530
|
+
|
|
2531
|
+
def bl_rna_get_subclass_py(self):
|
|
2532
|
+
""" """
|
|
2533
|
+
...
|
|
2534
|
+
|
|
2535
|
+
def driver_add(self):
|
|
2536
|
+
""" """
|
|
2537
|
+
...
|
|
2538
|
+
|
|
2539
|
+
def driver_remove(self):
|
|
2540
|
+
""" """
|
|
2541
|
+
...
|
|
2542
|
+
|
|
2543
|
+
def get(self):
|
|
2544
|
+
""" """
|
|
2545
|
+
...
|
|
2546
|
+
|
|
2547
|
+
def id_properties_clear(self):
|
|
2548
|
+
""" """
|
|
2549
|
+
...
|
|
2550
|
+
|
|
2551
|
+
def id_properties_ensure(self):
|
|
2552
|
+
""" """
|
|
2553
|
+
...
|
|
2554
|
+
|
|
2555
|
+
def id_properties_ui(self):
|
|
2556
|
+
""" """
|
|
2557
|
+
...
|
|
2558
|
+
|
|
2559
|
+
def is_property_hidden(self):
|
|
2560
|
+
""" """
|
|
2561
|
+
...
|
|
2562
|
+
|
|
2563
|
+
def is_property_overridable_library(self):
|
|
2564
|
+
""" """
|
|
2565
|
+
...
|
|
2566
|
+
|
|
2567
|
+
def is_property_readonly(self):
|
|
2568
|
+
""" """
|
|
2569
|
+
...
|
|
2570
|
+
|
|
2571
|
+
def is_property_set(self):
|
|
2572
|
+
""" """
|
|
2573
|
+
...
|
|
2574
|
+
|
|
2575
|
+
def items(self):
|
|
2576
|
+
""" """
|
|
2577
|
+
...
|
|
2578
|
+
|
|
2579
|
+
def keyframe_delete(self):
|
|
2580
|
+
""" """
|
|
2581
|
+
...
|
|
2582
|
+
|
|
2583
|
+
def keyframe_insert(self):
|
|
2584
|
+
""" """
|
|
2585
|
+
...
|
|
2586
|
+
|
|
2587
|
+
def keys(self):
|
|
2588
|
+
""" """
|
|
2589
|
+
...
|
|
2590
|
+
|
|
2591
|
+
def path_from_id(self):
|
|
2592
|
+
""" """
|
|
2593
|
+
...
|
|
2594
|
+
|
|
2595
|
+
def path_resolve(self):
|
|
2596
|
+
""" """
|
|
2597
|
+
...
|
|
2598
|
+
|
|
2599
|
+
def pop(self):
|
|
2600
|
+
""" """
|
|
2601
|
+
...
|
|
2602
|
+
|
|
2603
|
+
def property_overridable_library_set(self):
|
|
2604
|
+
""" """
|
|
2605
|
+
...
|
|
2606
|
+
|
|
2607
|
+
def property_unset(self):
|
|
2608
|
+
""" """
|
|
2609
|
+
...
|
|
2610
|
+
|
|
2611
|
+
def type_recast(self):
|
|
2612
|
+
""" """
|
|
2613
|
+
...
|
|
2614
|
+
|
|
2615
|
+
def values(self):
|
|
2616
|
+
""" """
|
|
2617
|
+
...
|
|
2618
|
+
|
|
2619
|
+
class Operator:
|
|
2620
|
+
""" """
|
|
2621
|
+
|
|
2622
|
+
bl_rna: typing.Any
|
|
2623
|
+
""" """
|
|
2624
|
+
|
|
2625
|
+
id_data: typing.Any
|
|
2626
|
+
""" """
|
|
2627
|
+
|
|
2628
|
+
def as_keywords(self, ignore):
|
|
2629
|
+
"""
|
|
2630
|
+
|
|
2631
|
+
:param ignore:
|
|
2632
|
+
"""
|
|
2633
|
+
...
|
|
2634
|
+
|
|
2635
|
+
def as_pointer(self):
|
|
2636
|
+
""" """
|
|
2637
|
+
...
|
|
2638
|
+
|
|
2639
|
+
def bl_rna_get_subclass(self):
|
|
2640
|
+
""" """
|
|
2641
|
+
...
|
|
2642
|
+
|
|
2643
|
+
def bl_rna_get_subclass_py(self):
|
|
2644
|
+
""" """
|
|
2645
|
+
...
|
|
2646
|
+
|
|
2647
|
+
def driver_add(self):
|
|
2648
|
+
""" """
|
|
2649
|
+
...
|
|
2650
|
+
|
|
2651
|
+
def driver_remove(self):
|
|
2652
|
+
""" """
|
|
2653
|
+
...
|
|
2654
|
+
|
|
2655
|
+
def get(self):
|
|
2656
|
+
""" """
|
|
2657
|
+
...
|
|
2658
|
+
|
|
2659
|
+
def id_properties_clear(self):
|
|
2660
|
+
""" """
|
|
2661
|
+
...
|
|
2662
|
+
|
|
2663
|
+
def id_properties_ensure(self):
|
|
2664
|
+
""" """
|
|
2665
|
+
...
|
|
2666
|
+
|
|
2667
|
+
def id_properties_ui(self):
|
|
2668
|
+
""" """
|
|
2669
|
+
...
|
|
2670
|
+
|
|
2671
|
+
def is_property_hidden(self):
|
|
2672
|
+
""" """
|
|
2673
|
+
...
|
|
2674
|
+
|
|
2675
|
+
def is_property_overridable_library(self):
|
|
2676
|
+
""" """
|
|
2677
|
+
...
|
|
2678
|
+
|
|
2679
|
+
def is_property_readonly(self):
|
|
2680
|
+
""" """
|
|
2681
|
+
...
|
|
2682
|
+
|
|
2683
|
+
def is_property_set(self):
|
|
2684
|
+
""" """
|
|
2685
|
+
...
|
|
2686
|
+
|
|
2687
|
+
def items(self):
|
|
2688
|
+
""" """
|
|
2689
|
+
...
|
|
2690
|
+
|
|
2691
|
+
def keyframe_delete(self):
|
|
2692
|
+
""" """
|
|
2693
|
+
...
|
|
2694
|
+
|
|
2695
|
+
def keyframe_insert(self):
|
|
2696
|
+
""" """
|
|
2697
|
+
...
|
|
2698
|
+
|
|
2699
|
+
def keys(self):
|
|
2700
|
+
""" """
|
|
2701
|
+
...
|
|
2702
|
+
|
|
2703
|
+
def path_from_id(self):
|
|
2704
|
+
""" """
|
|
2705
|
+
...
|
|
2706
|
+
|
|
2707
|
+
def path_resolve(self):
|
|
2708
|
+
""" """
|
|
2709
|
+
...
|
|
2710
|
+
|
|
2711
|
+
def poll_message_set(self):
|
|
2712
|
+
""" """
|
|
2713
|
+
...
|
|
2714
|
+
|
|
2715
|
+
def pop(self):
|
|
2716
|
+
""" """
|
|
2717
|
+
...
|
|
2718
|
+
|
|
2719
|
+
def property_overridable_library_set(self):
|
|
2720
|
+
""" """
|
|
2721
|
+
...
|
|
2722
|
+
|
|
2723
|
+
def property_unset(self):
|
|
2724
|
+
""" """
|
|
2725
|
+
...
|
|
2726
|
+
|
|
2727
|
+
def type_recast(self):
|
|
2728
|
+
""" """
|
|
2729
|
+
...
|
|
2730
|
+
|
|
2731
|
+
def values(self):
|
|
2732
|
+
""" """
|
|
2733
|
+
...
|
|
2734
|
+
|
|
2735
|
+
class Panel(_GenericUI):
|
|
2736
|
+
""" """
|
|
2737
|
+
|
|
2738
|
+
bl_rna: typing.Any
|
|
2739
|
+
""" """
|
|
2740
|
+
|
|
2741
|
+
id_data: typing.Any
|
|
2742
|
+
""" """
|
|
2743
|
+
|
|
2744
|
+
def append(self, draw_func):
|
|
2745
|
+
"""
|
|
2746
|
+
|
|
2747
|
+
:param draw_func:
|
|
2748
|
+
"""
|
|
2749
|
+
...
|
|
2750
|
+
|
|
2751
|
+
def as_pointer(self):
|
|
2752
|
+
""" """
|
|
2753
|
+
...
|
|
2754
|
+
|
|
2755
|
+
def bl_rna_get_subclass(self):
|
|
2756
|
+
""" """
|
|
2757
|
+
...
|
|
2758
|
+
|
|
2759
|
+
def bl_rna_get_subclass_py(self):
|
|
2760
|
+
""" """
|
|
2761
|
+
...
|
|
2762
|
+
|
|
2763
|
+
def driver_add(self):
|
|
2764
|
+
""" """
|
|
2765
|
+
...
|
|
2766
|
+
|
|
2767
|
+
def driver_remove(self):
|
|
2768
|
+
""" """
|
|
2769
|
+
...
|
|
2770
|
+
|
|
2771
|
+
def get(self):
|
|
2772
|
+
""" """
|
|
2773
|
+
...
|
|
2774
|
+
|
|
2775
|
+
def id_properties_clear(self):
|
|
2776
|
+
""" """
|
|
2777
|
+
...
|
|
2778
|
+
|
|
2779
|
+
def id_properties_ensure(self):
|
|
2780
|
+
""" """
|
|
2781
|
+
...
|
|
2782
|
+
|
|
2783
|
+
def id_properties_ui(self):
|
|
2784
|
+
""" """
|
|
2785
|
+
...
|
|
2786
|
+
|
|
2787
|
+
def is_extended(self):
|
|
2788
|
+
""" """
|
|
2789
|
+
...
|
|
2790
|
+
|
|
2791
|
+
def is_property_hidden(self):
|
|
2792
|
+
""" """
|
|
2793
|
+
...
|
|
2794
|
+
|
|
2795
|
+
def is_property_overridable_library(self):
|
|
2796
|
+
""" """
|
|
2797
|
+
...
|
|
2798
|
+
|
|
2799
|
+
def is_property_readonly(self):
|
|
2800
|
+
""" """
|
|
2801
|
+
...
|
|
2802
|
+
|
|
2803
|
+
def is_property_set(self):
|
|
2804
|
+
""" """
|
|
2805
|
+
...
|
|
2806
|
+
|
|
2807
|
+
def items(self):
|
|
2808
|
+
""" """
|
|
2809
|
+
...
|
|
2810
|
+
|
|
2811
|
+
def keyframe_delete(self):
|
|
2812
|
+
""" """
|
|
2813
|
+
...
|
|
2814
|
+
|
|
2815
|
+
def keyframe_insert(self):
|
|
2816
|
+
""" """
|
|
2817
|
+
...
|
|
2818
|
+
|
|
2819
|
+
def keys(self):
|
|
2820
|
+
""" """
|
|
2821
|
+
...
|
|
2822
|
+
|
|
2823
|
+
def path_from_id(self):
|
|
2824
|
+
""" """
|
|
2825
|
+
...
|
|
2826
|
+
|
|
2827
|
+
def path_resolve(self):
|
|
2828
|
+
""" """
|
|
2829
|
+
...
|
|
2830
|
+
|
|
2831
|
+
def pop(self):
|
|
2832
|
+
""" """
|
|
2833
|
+
...
|
|
2834
|
+
|
|
2835
|
+
def prepend(self, draw_func):
|
|
2836
|
+
"""
|
|
2837
|
+
|
|
2838
|
+
:param draw_func:
|
|
2839
|
+
"""
|
|
2840
|
+
...
|
|
2841
|
+
|
|
2842
|
+
def property_overridable_library_set(self):
|
|
2843
|
+
""" """
|
|
2844
|
+
...
|
|
2845
|
+
|
|
2846
|
+
def property_unset(self):
|
|
2847
|
+
""" """
|
|
2848
|
+
...
|
|
2849
|
+
|
|
2850
|
+
def remove(self, draw_func):
|
|
2851
|
+
"""
|
|
2852
|
+
|
|
2853
|
+
:param draw_func:
|
|
2854
|
+
"""
|
|
2855
|
+
...
|
|
2856
|
+
|
|
2857
|
+
def type_recast(self):
|
|
2858
|
+
""" """
|
|
2859
|
+
...
|
|
2860
|
+
|
|
2861
|
+
def values(self):
|
|
2862
|
+
""" """
|
|
2863
|
+
...
|
|
2864
|
+
|
|
2865
|
+
class PoseBone(_GenericBone):
|
|
2866
|
+
""" """
|
|
2867
|
+
|
|
2868
|
+
basename: typing.Any
|
|
2869
|
+
""" """
|
|
2870
|
+
|
|
2871
|
+
bl_rna: typing.Any
|
|
2872
|
+
""" """
|
|
2873
|
+
|
|
2874
|
+
center: typing.Any
|
|
2875
|
+
""" """
|
|
2876
|
+
|
|
2877
|
+
children: typing.Any
|
|
2878
|
+
""" """
|
|
2879
|
+
|
|
2880
|
+
children_recursive: typing.Any
|
|
2881
|
+
""" """
|
|
2882
|
+
|
|
2883
|
+
children_recursive_basename: typing.Any
|
|
2884
|
+
""" """
|
|
2885
|
+
|
|
2886
|
+
id_data: typing.Any
|
|
2887
|
+
""" """
|
|
2888
|
+
|
|
2889
|
+
parent_recursive: typing.Any
|
|
2890
|
+
""" """
|
|
2891
|
+
|
|
2892
|
+
vector: typing.Any
|
|
2893
|
+
""" """
|
|
2894
|
+
|
|
2895
|
+
x_axis: typing.Any
|
|
2896
|
+
""" """
|
|
2897
|
+
|
|
2898
|
+
y_axis: typing.Any
|
|
2899
|
+
""" """
|
|
2900
|
+
|
|
2901
|
+
z_axis: typing.Any
|
|
2902
|
+
""" """
|
|
2903
|
+
|
|
2904
|
+
def as_pointer(self):
|
|
2905
|
+
""" """
|
|
2906
|
+
...
|
|
2907
|
+
|
|
2908
|
+
def bl_rna_get_subclass(self):
|
|
2909
|
+
""" """
|
|
2910
|
+
...
|
|
2911
|
+
|
|
2912
|
+
def bl_rna_get_subclass_py(self):
|
|
2913
|
+
""" """
|
|
2914
|
+
...
|
|
2915
|
+
|
|
2916
|
+
def driver_add(self):
|
|
2917
|
+
""" """
|
|
2918
|
+
...
|
|
2919
|
+
|
|
2920
|
+
def driver_remove(self):
|
|
2921
|
+
""" """
|
|
2922
|
+
...
|
|
2923
|
+
|
|
2924
|
+
def get(self):
|
|
2925
|
+
""" """
|
|
2926
|
+
...
|
|
2927
|
+
|
|
2928
|
+
def id_properties_clear(self):
|
|
2929
|
+
""" """
|
|
2930
|
+
...
|
|
2931
|
+
|
|
2932
|
+
def id_properties_ensure(self):
|
|
2933
|
+
""" """
|
|
2934
|
+
...
|
|
2935
|
+
|
|
2936
|
+
def id_properties_ui(self):
|
|
2937
|
+
""" """
|
|
2938
|
+
...
|
|
2939
|
+
|
|
2940
|
+
def is_property_hidden(self):
|
|
2941
|
+
""" """
|
|
2942
|
+
...
|
|
2943
|
+
|
|
2944
|
+
def is_property_overridable_library(self):
|
|
2945
|
+
""" """
|
|
2946
|
+
...
|
|
2947
|
+
|
|
2948
|
+
def is_property_readonly(self):
|
|
2949
|
+
""" """
|
|
2950
|
+
...
|
|
2951
|
+
|
|
2952
|
+
def is_property_set(self):
|
|
2953
|
+
""" """
|
|
2954
|
+
...
|
|
2955
|
+
|
|
2956
|
+
def items(self):
|
|
2957
|
+
""" """
|
|
2958
|
+
...
|
|
2959
|
+
|
|
2960
|
+
def keyframe_delete(self):
|
|
2961
|
+
""" """
|
|
2962
|
+
...
|
|
2963
|
+
|
|
2964
|
+
def keyframe_insert(self):
|
|
2965
|
+
""" """
|
|
2966
|
+
...
|
|
2967
|
+
|
|
2968
|
+
def keys(self):
|
|
2969
|
+
""" """
|
|
2970
|
+
...
|
|
2971
|
+
|
|
2972
|
+
def parent_index(self, parent_test):
|
|
2973
|
+
"""
|
|
2974
|
+
|
|
2975
|
+
:param parent_test:
|
|
2976
|
+
"""
|
|
2977
|
+
...
|
|
2978
|
+
|
|
2979
|
+
def path_from_id(self):
|
|
2980
|
+
""" """
|
|
2981
|
+
...
|
|
2982
|
+
|
|
2983
|
+
def path_resolve(self):
|
|
2984
|
+
""" """
|
|
2985
|
+
...
|
|
2986
|
+
|
|
2987
|
+
def pop(self):
|
|
2988
|
+
""" """
|
|
2989
|
+
...
|
|
2990
|
+
|
|
2991
|
+
def property_overridable_library_set(self):
|
|
2992
|
+
""" """
|
|
2993
|
+
...
|
|
2994
|
+
|
|
2995
|
+
def property_unset(self):
|
|
2996
|
+
""" """
|
|
2997
|
+
...
|
|
2998
|
+
|
|
2999
|
+
def translate(self, vec):
|
|
3000
|
+
"""
|
|
3001
|
+
|
|
3002
|
+
:param vec:
|
|
3003
|
+
"""
|
|
3004
|
+
...
|
|
3005
|
+
|
|
3006
|
+
def type_recast(self):
|
|
3007
|
+
""" """
|
|
3008
|
+
...
|
|
3009
|
+
|
|
3010
|
+
def values(self):
|
|
3011
|
+
""" """
|
|
3012
|
+
...
|
|
3013
|
+
|
|
3014
|
+
class PropertyGroup:
|
|
3015
|
+
""" """
|
|
3016
|
+
|
|
3017
|
+
bl_rna: typing.Any
|
|
3018
|
+
""" """
|
|
3019
|
+
|
|
3020
|
+
id_data: typing.Any
|
|
3021
|
+
""" """
|
|
3022
|
+
|
|
3023
|
+
def as_pointer(self):
|
|
3024
|
+
""" """
|
|
3025
|
+
...
|
|
3026
|
+
|
|
3027
|
+
def bl_rna_get_subclass(self):
|
|
3028
|
+
""" """
|
|
3029
|
+
...
|
|
3030
|
+
|
|
3031
|
+
def bl_rna_get_subclass_py(self):
|
|
3032
|
+
""" """
|
|
3033
|
+
...
|
|
3034
|
+
|
|
3035
|
+
def driver_add(self):
|
|
3036
|
+
""" """
|
|
3037
|
+
...
|
|
3038
|
+
|
|
3039
|
+
def driver_remove(self):
|
|
3040
|
+
""" """
|
|
3041
|
+
...
|
|
3042
|
+
|
|
3043
|
+
def get(self):
|
|
3044
|
+
""" """
|
|
3045
|
+
...
|
|
3046
|
+
|
|
3047
|
+
def id_properties_clear(self):
|
|
3048
|
+
""" """
|
|
3049
|
+
...
|
|
3050
|
+
|
|
3051
|
+
def id_properties_ensure(self):
|
|
3052
|
+
""" """
|
|
3053
|
+
...
|
|
3054
|
+
|
|
3055
|
+
def id_properties_ui(self):
|
|
3056
|
+
""" """
|
|
3057
|
+
...
|
|
3058
|
+
|
|
3059
|
+
def is_property_hidden(self):
|
|
3060
|
+
""" """
|
|
3061
|
+
...
|
|
3062
|
+
|
|
3063
|
+
def is_property_overridable_library(self):
|
|
3064
|
+
""" """
|
|
3065
|
+
...
|
|
3066
|
+
|
|
3067
|
+
def is_property_readonly(self):
|
|
3068
|
+
""" """
|
|
3069
|
+
...
|
|
3070
|
+
|
|
3071
|
+
def is_property_set(self):
|
|
3072
|
+
""" """
|
|
3073
|
+
...
|
|
3074
|
+
|
|
3075
|
+
def items(self):
|
|
3076
|
+
""" """
|
|
3077
|
+
...
|
|
3078
|
+
|
|
3079
|
+
def keyframe_delete(self):
|
|
3080
|
+
""" """
|
|
3081
|
+
...
|
|
3082
|
+
|
|
3083
|
+
def keyframe_insert(self):
|
|
3084
|
+
""" """
|
|
3085
|
+
...
|
|
3086
|
+
|
|
3087
|
+
def keys(self):
|
|
3088
|
+
""" """
|
|
3089
|
+
...
|
|
3090
|
+
|
|
3091
|
+
def path_from_id(self):
|
|
3092
|
+
""" """
|
|
3093
|
+
...
|
|
3094
|
+
|
|
3095
|
+
def path_resolve(self):
|
|
3096
|
+
""" """
|
|
3097
|
+
...
|
|
3098
|
+
|
|
3099
|
+
def pop(self):
|
|
3100
|
+
""" """
|
|
3101
|
+
...
|
|
3102
|
+
|
|
3103
|
+
def property_overridable_library_set(self):
|
|
3104
|
+
""" """
|
|
3105
|
+
...
|
|
3106
|
+
|
|
3107
|
+
def property_unset(self):
|
|
3108
|
+
""" """
|
|
3109
|
+
...
|
|
3110
|
+
|
|
3111
|
+
def type_recast(self):
|
|
3112
|
+
""" """
|
|
3113
|
+
...
|
|
3114
|
+
|
|
3115
|
+
def values(self):
|
|
3116
|
+
""" """
|
|
3117
|
+
...
|
|
3118
|
+
|
|
3119
|
+
class RNAMetaPropGroup(RNAMeta):
|
|
3120
|
+
""" """
|
|
3121
|
+
|
|
3122
|
+
is_registered: typing.Any
|
|
3123
|
+
""" """
|
|
3124
|
+
|
|
3125
|
+
def mro(self):
|
|
3126
|
+
""" """
|
|
3127
|
+
...
|
|
3128
|
+
|
|
3129
|
+
class ShaderNode(Node):
|
|
3130
|
+
""" """
|
|
3131
|
+
|
|
3132
|
+
id_data: typing.Any
|
|
3133
|
+
""" """
|
|
3134
|
+
|
|
3135
|
+
def as_pointer(self):
|
|
3136
|
+
""" """
|
|
3137
|
+
...
|
|
3138
|
+
|
|
3139
|
+
def bl_rna_get_subclass(self):
|
|
3140
|
+
""" """
|
|
3141
|
+
...
|
|
3142
|
+
|
|
3143
|
+
def bl_rna_get_subclass_py(self):
|
|
3144
|
+
""" """
|
|
3145
|
+
...
|
|
3146
|
+
|
|
3147
|
+
def driver_add(self):
|
|
3148
|
+
""" """
|
|
3149
|
+
...
|
|
3150
|
+
|
|
3151
|
+
def driver_remove(self):
|
|
3152
|
+
""" """
|
|
3153
|
+
...
|
|
3154
|
+
|
|
3155
|
+
def get(self):
|
|
3156
|
+
""" """
|
|
3157
|
+
...
|
|
3158
|
+
|
|
3159
|
+
def id_properties_clear(self):
|
|
3160
|
+
""" """
|
|
3161
|
+
...
|
|
3162
|
+
|
|
3163
|
+
def id_properties_ensure(self):
|
|
3164
|
+
""" """
|
|
3165
|
+
...
|
|
3166
|
+
|
|
3167
|
+
def id_properties_ui(self):
|
|
3168
|
+
""" """
|
|
3169
|
+
...
|
|
3170
|
+
|
|
3171
|
+
def is_property_hidden(self):
|
|
3172
|
+
""" """
|
|
3173
|
+
...
|
|
3174
|
+
|
|
3175
|
+
def is_property_overridable_library(self):
|
|
3176
|
+
""" """
|
|
3177
|
+
...
|
|
3178
|
+
|
|
3179
|
+
def is_property_readonly(self):
|
|
3180
|
+
""" """
|
|
3181
|
+
...
|
|
3182
|
+
|
|
3183
|
+
def is_property_set(self):
|
|
3184
|
+
""" """
|
|
3185
|
+
...
|
|
3186
|
+
|
|
3187
|
+
def items(self):
|
|
3188
|
+
""" """
|
|
3189
|
+
...
|
|
3190
|
+
|
|
3191
|
+
def keyframe_delete(self):
|
|
3192
|
+
""" """
|
|
3193
|
+
...
|
|
3194
|
+
|
|
3195
|
+
def keyframe_insert(self):
|
|
3196
|
+
""" """
|
|
3197
|
+
...
|
|
3198
|
+
|
|
3199
|
+
def keys(self):
|
|
3200
|
+
""" """
|
|
3201
|
+
...
|
|
3202
|
+
|
|
3203
|
+
def path_from_id(self):
|
|
3204
|
+
""" """
|
|
3205
|
+
...
|
|
3206
|
+
|
|
3207
|
+
def path_resolve(self):
|
|
3208
|
+
""" """
|
|
3209
|
+
...
|
|
3210
|
+
|
|
3211
|
+
def poll(self, ntree):
|
|
3212
|
+
"""
|
|
3213
|
+
|
|
3214
|
+
:param ntree:
|
|
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 TextureNode(Node):
|
|
3239
|
+
""" """
|
|
3240
|
+
|
|
3241
|
+
id_data: typing.Any
|
|
3242
|
+
""" """
|
|
3243
|
+
|
|
3244
|
+
def as_pointer(self):
|
|
3245
|
+
""" """
|
|
3246
|
+
...
|
|
3247
|
+
|
|
3248
|
+
def bl_rna_get_subclass(self):
|
|
3249
|
+
""" """
|
|
3250
|
+
...
|
|
3251
|
+
|
|
3252
|
+
def bl_rna_get_subclass_py(self):
|
|
3253
|
+
""" """
|
|
3254
|
+
...
|
|
3255
|
+
|
|
3256
|
+
def driver_add(self):
|
|
3257
|
+
""" """
|
|
3258
|
+
...
|
|
3259
|
+
|
|
3260
|
+
def driver_remove(self):
|
|
3261
|
+
""" """
|
|
3262
|
+
...
|
|
3263
|
+
|
|
3264
|
+
def get(self):
|
|
3265
|
+
""" """
|
|
3266
|
+
...
|
|
3267
|
+
|
|
3268
|
+
def id_properties_clear(self):
|
|
3269
|
+
""" """
|
|
3270
|
+
...
|
|
3271
|
+
|
|
3272
|
+
def id_properties_ensure(self):
|
|
3273
|
+
""" """
|
|
3274
|
+
...
|
|
3275
|
+
|
|
3276
|
+
def id_properties_ui(self):
|
|
3277
|
+
""" """
|
|
3278
|
+
...
|
|
3279
|
+
|
|
3280
|
+
def is_property_hidden(self):
|
|
3281
|
+
""" """
|
|
3282
|
+
...
|
|
3283
|
+
|
|
3284
|
+
def is_property_overridable_library(self):
|
|
3285
|
+
""" """
|
|
3286
|
+
...
|
|
3287
|
+
|
|
3288
|
+
def is_property_readonly(self):
|
|
3289
|
+
""" """
|
|
3290
|
+
...
|
|
3291
|
+
|
|
3292
|
+
def is_property_set(self):
|
|
3293
|
+
""" """
|
|
3294
|
+
...
|
|
3295
|
+
|
|
3296
|
+
def items(self):
|
|
3297
|
+
""" """
|
|
3298
|
+
...
|
|
3299
|
+
|
|
3300
|
+
def keyframe_delete(self):
|
|
3301
|
+
""" """
|
|
3302
|
+
...
|
|
3303
|
+
|
|
3304
|
+
def keyframe_insert(self):
|
|
3305
|
+
""" """
|
|
3306
|
+
...
|
|
3307
|
+
|
|
3308
|
+
def keys(self):
|
|
3309
|
+
""" """
|
|
3310
|
+
...
|
|
3311
|
+
|
|
3312
|
+
def path_from_id(self):
|
|
3313
|
+
""" """
|
|
3314
|
+
...
|
|
3315
|
+
|
|
3316
|
+
def path_resolve(self):
|
|
3317
|
+
""" """
|
|
3318
|
+
...
|
|
3319
|
+
|
|
3320
|
+
def poll(self, ntree):
|
|
3321
|
+
"""
|
|
3322
|
+
|
|
3323
|
+
:param ntree:
|
|
3324
|
+
"""
|
|
3325
|
+
...
|
|
3326
|
+
|
|
3327
|
+
def pop(self):
|
|
3328
|
+
""" """
|
|
3329
|
+
...
|
|
3330
|
+
|
|
3331
|
+
def property_overridable_library_set(self):
|
|
3332
|
+
""" """
|
|
3333
|
+
...
|
|
3334
|
+
|
|
3335
|
+
def property_unset(self):
|
|
3336
|
+
""" """
|
|
3337
|
+
...
|
|
3338
|
+
|
|
3339
|
+
def type_recast(self):
|
|
3340
|
+
""" """
|
|
3341
|
+
...
|
|
3342
|
+
|
|
3343
|
+
def values(self):
|
|
3344
|
+
""" """
|
|
3345
|
+
...
|
|
3346
|
+
|
|
3347
|
+
class UIList(_GenericUI):
|
|
3348
|
+
""" """
|
|
3349
|
+
|
|
3350
|
+
bl_rna: typing.Any
|
|
3351
|
+
""" """
|
|
3352
|
+
|
|
3353
|
+
id_data: typing.Any
|
|
3354
|
+
""" """
|
|
3355
|
+
|
|
3356
|
+
def append(self, draw_func):
|
|
3357
|
+
"""
|
|
3358
|
+
|
|
3359
|
+
:param draw_func:
|
|
3360
|
+
"""
|
|
3361
|
+
...
|
|
3362
|
+
|
|
3363
|
+
def as_pointer(self):
|
|
3364
|
+
""" """
|
|
3365
|
+
...
|
|
3366
|
+
|
|
3367
|
+
def bl_rna_get_subclass(self):
|
|
3368
|
+
""" """
|
|
3369
|
+
...
|
|
3370
|
+
|
|
3371
|
+
def bl_rna_get_subclass_py(self):
|
|
3372
|
+
""" """
|
|
3373
|
+
...
|
|
3374
|
+
|
|
3375
|
+
def driver_add(self):
|
|
3376
|
+
""" """
|
|
3377
|
+
...
|
|
3378
|
+
|
|
3379
|
+
def driver_remove(self):
|
|
3380
|
+
""" """
|
|
3381
|
+
...
|
|
3382
|
+
|
|
3383
|
+
def get(self):
|
|
3384
|
+
""" """
|
|
3385
|
+
...
|
|
3386
|
+
|
|
3387
|
+
def id_properties_clear(self):
|
|
3388
|
+
""" """
|
|
3389
|
+
...
|
|
3390
|
+
|
|
3391
|
+
def id_properties_ensure(self):
|
|
3392
|
+
""" """
|
|
3393
|
+
...
|
|
3394
|
+
|
|
3395
|
+
def id_properties_ui(self):
|
|
3396
|
+
""" """
|
|
3397
|
+
...
|
|
3398
|
+
|
|
3399
|
+
def is_extended(self):
|
|
3400
|
+
""" """
|
|
3401
|
+
...
|
|
3402
|
+
|
|
3403
|
+
def is_property_hidden(self):
|
|
3404
|
+
""" """
|
|
3405
|
+
...
|
|
3406
|
+
|
|
3407
|
+
def is_property_overridable_library(self):
|
|
3408
|
+
""" """
|
|
3409
|
+
...
|
|
3410
|
+
|
|
3411
|
+
def is_property_readonly(self):
|
|
3412
|
+
""" """
|
|
3413
|
+
...
|
|
3414
|
+
|
|
3415
|
+
def is_property_set(self):
|
|
3416
|
+
""" """
|
|
3417
|
+
...
|
|
3418
|
+
|
|
3419
|
+
def items(self):
|
|
3420
|
+
""" """
|
|
3421
|
+
...
|
|
3422
|
+
|
|
3423
|
+
def keyframe_delete(self):
|
|
3424
|
+
""" """
|
|
3425
|
+
...
|
|
3426
|
+
|
|
3427
|
+
def keyframe_insert(self):
|
|
3428
|
+
""" """
|
|
3429
|
+
...
|
|
3430
|
+
|
|
3431
|
+
def keys(self):
|
|
3432
|
+
""" """
|
|
3433
|
+
...
|
|
3434
|
+
|
|
3435
|
+
def path_from_id(self):
|
|
3436
|
+
""" """
|
|
3437
|
+
...
|
|
3438
|
+
|
|
3439
|
+
def path_resolve(self):
|
|
3440
|
+
""" """
|
|
3441
|
+
...
|
|
3442
|
+
|
|
3443
|
+
def pop(self):
|
|
3444
|
+
""" """
|
|
3445
|
+
...
|
|
3446
|
+
|
|
3447
|
+
def prepend(self, draw_func):
|
|
3448
|
+
"""
|
|
3449
|
+
|
|
3450
|
+
:param draw_func:
|
|
3451
|
+
"""
|
|
3452
|
+
...
|
|
3453
|
+
|
|
3454
|
+
def property_overridable_library_set(self):
|
|
3455
|
+
""" """
|
|
3456
|
+
...
|
|
3457
|
+
|
|
3458
|
+
def property_unset(self):
|
|
3459
|
+
""" """
|
|
3460
|
+
...
|
|
3461
|
+
|
|
3462
|
+
def remove(self, draw_func):
|
|
3463
|
+
"""
|
|
3464
|
+
|
|
3465
|
+
:param draw_func:
|
|
3466
|
+
"""
|
|
3467
|
+
...
|
|
3468
|
+
|
|
3469
|
+
def type_recast(self):
|
|
3470
|
+
""" """
|
|
3471
|
+
...
|
|
3472
|
+
|
|
3473
|
+
def values(self):
|
|
3474
|
+
""" """
|
|
3475
|
+
...
|
|
3476
|
+
|
|
3477
|
+
class USDHook:
|
|
3478
|
+
""" """
|
|
957
3479
|
|
|
958
|
-
def append(self, draw_func): ...
|
|
959
|
-
def as_pointer(self): ...
|
|
960
|
-
def bl_rna_get_subclass(self): ...
|
|
961
|
-
def bl_rna_get_subclass_py(self): ...
|
|
962
|
-
def driver_add(self): ...
|
|
963
|
-
def driver_remove(self): ...
|
|
964
|
-
def get(self): ...
|
|
965
|
-
def id_properties_clear(self): ...
|
|
966
|
-
def id_properties_ensure(self): ...
|
|
967
|
-
def id_properties_ui(self): ...
|
|
968
|
-
def is_extended(self): ...
|
|
969
|
-
def is_property_hidden(self): ...
|
|
970
|
-
def is_property_overridable_library(self): ...
|
|
971
|
-
def is_property_readonly(self): ...
|
|
972
|
-
def is_property_set(self): ...
|
|
973
|
-
def items(self): ...
|
|
974
|
-
def keyframe_delete(self): ...
|
|
975
|
-
def keyframe_insert(self): ...
|
|
976
|
-
def keys(self): ...
|
|
977
|
-
def path_from_id(self): ...
|
|
978
|
-
def path_resolve(self): ...
|
|
979
|
-
def pop(self): ...
|
|
980
|
-
def prepend(self, draw_func): ...
|
|
981
|
-
def property_overridable_library_set(self): ...
|
|
982
|
-
def property_unset(self): ...
|
|
983
|
-
def remove(self, draw_func): ...
|
|
984
|
-
def type_recast(self): ...
|
|
985
|
-
def values(self): ...
|
|
986
|
-
|
|
987
|
-
class CompositorNode(NodeInternal, Node):
|
|
988
3480
|
id_data: typing.Any
|
|
3481
|
+
""" """
|
|
3482
|
+
|
|
3483
|
+
def as_pointer(self):
|
|
3484
|
+
""" """
|
|
3485
|
+
...
|
|
3486
|
+
|
|
3487
|
+
def bl_rna_get_subclass(self):
|
|
3488
|
+
""" """
|
|
3489
|
+
...
|
|
3490
|
+
|
|
3491
|
+
def bl_rna_get_subclass_py(self):
|
|
3492
|
+
""" """
|
|
3493
|
+
...
|
|
3494
|
+
|
|
3495
|
+
def driver_add(self):
|
|
3496
|
+
""" """
|
|
3497
|
+
...
|
|
3498
|
+
|
|
3499
|
+
def driver_remove(self):
|
|
3500
|
+
""" """
|
|
3501
|
+
...
|
|
3502
|
+
|
|
3503
|
+
def get(self):
|
|
3504
|
+
""" """
|
|
3505
|
+
...
|
|
3506
|
+
|
|
3507
|
+
def id_properties_clear(self):
|
|
3508
|
+
""" """
|
|
3509
|
+
...
|
|
3510
|
+
|
|
3511
|
+
def id_properties_ensure(self):
|
|
3512
|
+
""" """
|
|
3513
|
+
...
|
|
3514
|
+
|
|
3515
|
+
def id_properties_ui(self):
|
|
3516
|
+
""" """
|
|
3517
|
+
...
|
|
3518
|
+
|
|
3519
|
+
def is_property_hidden(self):
|
|
3520
|
+
""" """
|
|
3521
|
+
...
|
|
3522
|
+
|
|
3523
|
+
def is_property_overridable_library(self):
|
|
3524
|
+
""" """
|
|
3525
|
+
...
|
|
3526
|
+
|
|
3527
|
+
def is_property_readonly(self):
|
|
3528
|
+
""" """
|
|
3529
|
+
...
|
|
3530
|
+
|
|
3531
|
+
def is_property_set(self):
|
|
3532
|
+
""" """
|
|
3533
|
+
...
|
|
3534
|
+
|
|
3535
|
+
def items(self):
|
|
3536
|
+
""" """
|
|
3537
|
+
...
|
|
3538
|
+
|
|
3539
|
+
def keyframe_delete(self):
|
|
3540
|
+
""" """
|
|
3541
|
+
...
|
|
3542
|
+
|
|
3543
|
+
def keyframe_insert(self):
|
|
3544
|
+
""" """
|
|
3545
|
+
...
|
|
3546
|
+
|
|
3547
|
+
def keys(self):
|
|
3548
|
+
""" """
|
|
3549
|
+
...
|
|
3550
|
+
|
|
3551
|
+
def path_from_id(self):
|
|
3552
|
+
""" """
|
|
3553
|
+
...
|
|
3554
|
+
|
|
3555
|
+
def path_resolve(self):
|
|
3556
|
+
""" """
|
|
3557
|
+
...
|
|
3558
|
+
|
|
3559
|
+
def pop(self):
|
|
3560
|
+
""" """
|
|
3561
|
+
...
|
|
3562
|
+
|
|
3563
|
+
def property_overridable_library_set(self):
|
|
3564
|
+
""" """
|
|
3565
|
+
...
|
|
3566
|
+
|
|
3567
|
+
def property_unset(self):
|
|
3568
|
+
""" """
|
|
3569
|
+
...
|
|
3570
|
+
|
|
3571
|
+
def type_recast(self):
|
|
3572
|
+
""" """
|
|
3573
|
+
...
|
|
3574
|
+
|
|
3575
|
+
def values(self):
|
|
3576
|
+
""" """
|
|
3577
|
+
...
|
|
3578
|
+
|
|
3579
|
+
class RenderEngine:
|
|
3580
|
+
""" """
|
|
3581
|
+
|
|
3582
|
+
bl_rna: typing.Any
|
|
3583
|
+
""" """
|
|
989
3584
|
|
|
990
|
-
def as_pointer(self): ...
|
|
991
|
-
def bl_rna_get_subclass(self): ...
|
|
992
|
-
def bl_rna_get_subclass_py(self): ...
|
|
993
|
-
def driver_add(self): ...
|
|
994
|
-
def driver_remove(self): ...
|
|
995
|
-
def get(self): ...
|
|
996
|
-
def id_properties_clear(self): ...
|
|
997
|
-
def id_properties_ensure(self): ...
|
|
998
|
-
def id_properties_ui(self): ...
|
|
999
|
-
def is_property_hidden(self): ...
|
|
1000
|
-
def is_property_overridable_library(self): ...
|
|
1001
|
-
def is_property_readonly(self): ...
|
|
1002
|
-
def is_property_set(self): ...
|
|
1003
|
-
def items(self): ...
|
|
1004
|
-
def keyframe_delete(self): ...
|
|
1005
|
-
def keyframe_insert(self): ...
|
|
1006
|
-
def keys(self): ...
|
|
1007
|
-
def path_from_id(self): ...
|
|
1008
|
-
def path_resolve(self): ...
|
|
1009
|
-
def poll(self, ntree): ...
|
|
1010
|
-
def pop(self): ...
|
|
1011
|
-
def property_overridable_library_set(self): ...
|
|
1012
|
-
def property_unset(self): ...
|
|
1013
|
-
def type_recast(self): ...
|
|
1014
|
-
def update(self): ...
|
|
1015
|
-
def values(self): ...
|
|
1016
|
-
|
|
1017
|
-
class GeometryNode(NodeInternal, Node):
|
|
1018
3585
|
id_data: typing.Any
|
|
3586
|
+
""" """
|
|
3587
|
+
|
|
3588
|
+
def as_pointer(self):
|
|
3589
|
+
""" """
|
|
3590
|
+
...
|
|
3591
|
+
|
|
3592
|
+
def bl_rna_get_subclass(self):
|
|
3593
|
+
""" """
|
|
3594
|
+
...
|
|
3595
|
+
|
|
3596
|
+
def bl_rna_get_subclass_py(self):
|
|
3597
|
+
""" """
|
|
3598
|
+
...
|
|
3599
|
+
|
|
3600
|
+
def driver_add(self):
|
|
3601
|
+
""" """
|
|
3602
|
+
...
|
|
3603
|
+
|
|
3604
|
+
def driver_remove(self):
|
|
3605
|
+
""" """
|
|
3606
|
+
...
|
|
3607
|
+
|
|
3608
|
+
def get(self):
|
|
3609
|
+
""" """
|
|
3610
|
+
...
|
|
3611
|
+
|
|
3612
|
+
def id_properties_clear(self):
|
|
3613
|
+
""" """
|
|
3614
|
+
...
|
|
3615
|
+
|
|
3616
|
+
def id_properties_ensure(self):
|
|
3617
|
+
""" """
|
|
3618
|
+
...
|
|
3619
|
+
|
|
3620
|
+
def id_properties_ui(self):
|
|
3621
|
+
""" """
|
|
3622
|
+
...
|
|
3623
|
+
|
|
3624
|
+
def is_property_hidden(self):
|
|
3625
|
+
""" """
|
|
3626
|
+
...
|
|
3627
|
+
|
|
3628
|
+
def is_property_overridable_library(self):
|
|
3629
|
+
""" """
|
|
3630
|
+
...
|
|
3631
|
+
|
|
3632
|
+
def is_property_readonly(self):
|
|
3633
|
+
""" """
|
|
3634
|
+
...
|
|
3635
|
+
|
|
3636
|
+
def is_property_set(self):
|
|
3637
|
+
""" """
|
|
3638
|
+
...
|
|
3639
|
+
|
|
3640
|
+
def items(self):
|
|
3641
|
+
""" """
|
|
3642
|
+
...
|
|
3643
|
+
|
|
3644
|
+
def keyframe_delete(self):
|
|
3645
|
+
""" """
|
|
3646
|
+
...
|
|
3647
|
+
|
|
3648
|
+
def keyframe_insert(self):
|
|
3649
|
+
""" """
|
|
3650
|
+
...
|
|
3651
|
+
|
|
3652
|
+
def keys(self):
|
|
3653
|
+
""" """
|
|
3654
|
+
...
|
|
3655
|
+
|
|
3656
|
+
def path_from_id(self):
|
|
3657
|
+
""" """
|
|
3658
|
+
...
|
|
3659
|
+
|
|
3660
|
+
def path_resolve(self):
|
|
3661
|
+
""" """
|
|
3662
|
+
...
|
|
3663
|
+
|
|
3664
|
+
def pop(self):
|
|
3665
|
+
""" """
|
|
3666
|
+
...
|
|
3667
|
+
|
|
3668
|
+
def property_overridable_library_set(self):
|
|
3669
|
+
""" """
|
|
3670
|
+
...
|
|
3671
|
+
|
|
3672
|
+
def property_unset(self):
|
|
3673
|
+
""" """
|
|
3674
|
+
...
|
|
3675
|
+
|
|
3676
|
+
def type_recast(self):
|
|
3677
|
+
""" """
|
|
3678
|
+
...
|
|
3679
|
+
|
|
3680
|
+
def values(self):
|
|
3681
|
+
""" """
|
|
3682
|
+
...
|
|
3683
|
+
|
|
3684
|
+
class NodeTreeInterfaceItem:
|
|
3685
|
+
""" """
|
|
1019
3686
|
|
|
1020
|
-
def as_pointer(self): ...
|
|
1021
|
-
def bl_rna_get_subclass(self): ...
|
|
1022
|
-
def bl_rna_get_subclass_py(self): ...
|
|
1023
|
-
def driver_add(self): ...
|
|
1024
|
-
def driver_remove(self): ...
|
|
1025
|
-
def get(self): ...
|
|
1026
|
-
def id_properties_clear(self): ...
|
|
1027
|
-
def id_properties_ensure(self): ...
|
|
1028
|
-
def id_properties_ui(self): ...
|
|
1029
|
-
def is_property_hidden(self): ...
|
|
1030
|
-
def is_property_overridable_library(self): ...
|
|
1031
|
-
def is_property_readonly(self): ...
|
|
1032
|
-
def is_property_set(self): ...
|
|
1033
|
-
def items(self): ...
|
|
1034
|
-
def keyframe_delete(self): ...
|
|
1035
|
-
def keyframe_insert(self): ...
|
|
1036
|
-
def keys(self): ...
|
|
1037
|
-
def path_from_id(self): ...
|
|
1038
|
-
def path_resolve(self): ...
|
|
1039
|
-
def poll(self, ntree): ...
|
|
1040
|
-
def pop(self): ...
|
|
1041
|
-
def property_overridable_library_set(self): ...
|
|
1042
|
-
def property_unset(self): ...
|
|
1043
|
-
def type_recast(self): ...
|
|
1044
|
-
def values(self): ...
|
|
1045
|
-
|
|
1046
|
-
class ShaderNode(NodeInternal, Node):
|
|
1047
3687
|
id_data: typing.Any
|
|
3688
|
+
""" """
|
|
3689
|
+
|
|
3690
|
+
def as_pointer(self):
|
|
3691
|
+
""" """
|
|
3692
|
+
...
|
|
3693
|
+
|
|
3694
|
+
def bl_rna_get_subclass(self):
|
|
3695
|
+
""" """
|
|
3696
|
+
...
|
|
3697
|
+
|
|
3698
|
+
def bl_rna_get_subclass_py(self):
|
|
3699
|
+
""" """
|
|
3700
|
+
...
|
|
3701
|
+
|
|
3702
|
+
def driver_add(self):
|
|
3703
|
+
""" """
|
|
3704
|
+
...
|
|
3705
|
+
|
|
3706
|
+
def driver_remove(self):
|
|
3707
|
+
""" """
|
|
3708
|
+
...
|
|
3709
|
+
|
|
3710
|
+
def get(self):
|
|
3711
|
+
""" """
|
|
3712
|
+
...
|
|
3713
|
+
|
|
3714
|
+
def id_properties_clear(self):
|
|
3715
|
+
""" """
|
|
3716
|
+
...
|
|
3717
|
+
|
|
3718
|
+
def id_properties_ensure(self):
|
|
3719
|
+
""" """
|
|
3720
|
+
...
|
|
3721
|
+
|
|
3722
|
+
def id_properties_ui(self):
|
|
3723
|
+
""" """
|
|
3724
|
+
...
|
|
3725
|
+
|
|
3726
|
+
def is_property_hidden(self):
|
|
3727
|
+
""" """
|
|
3728
|
+
...
|
|
3729
|
+
|
|
3730
|
+
def is_property_overridable_library(self):
|
|
3731
|
+
""" """
|
|
3732
|
+
...
|
|
3733
|
+
|
|
3734
|
+
def is_property_readonly(self):
|
|
3735
|
+
""" """
|
|
3736
|
+
...
|
|
3737
|
+
|
|
3738
|
+
def is_property_set(self):
|
|
3739
|
+
""" """
|
|
3740
|
+
...
|
|
3741
|
+
|
|
3742
|
+
def items(self):
|
|
3743
|
+
""" """
|
|
3744
|
+
...
|
|
3745
|
+
|
|
3746
|
+
def keyframe_delete(self):
|
|
3747
|
+
""" """
|
|
3748
|
+
...
|
|
3749
|
+
|
|
3750
|
+
def keyframe_insert(self):
|
|
3751
|
+
""" """
|
|
3752
|
+
...
|
|
3753
|
+
|
|
3754
|
+
def keys(self):
|
|
3755
|
+
""" """
|
|
3756
|
+
...
|
|
3757
|
+
|
|
3758
|
+
def path_from_id(self):
|
|
3759
|
+
""" """
|
|
3760
|
+
...
|
|
3761
|
+
|
|
3762
|
+
def path_resolve(self):
|
|
3763
|
+
""" """
|
|
3764
|
+
...
|
|
3765
|
+
|
|
3766
|
+
def pop(self):
|
|
3767
|
+
""" """
|
|
3768
|
+
...
|
|
3769
|
+
|
|
3770
|
+
def property_overridable_library_set(self):
|
|
3771
|
+
""" """
|
|
3772
|
+
...
|
|
3773
|
+
|
|
3774
|
+
def property_unset(self):
|
|
3775
|
+
""" """
|
|
3776
|
+
...
|
|
3777
|
+
|
|
3778
|
+
def type_recast(self):
|
|
3779
|
+
""" """
|
|
3780
|
+
...
|
|
3781
|
+
|
|
3782
|
+
def values(self):
|
|
3783
|
+
""" """
|
|
3784
|
+
...
|
|
3785
|
+
|
|
3786
|
+
class _GenericBone:
|
|
3787
|
+
""" """
|
|
3788
|
+
|
|
3789
|
+
basename: typing.Any
|
|
3790
|
+
""" """
|
|
3791
|
+
|
|
3792
|
+
center: typing.Any
|
|
3793
|
+
""" """
|
|
3794
|
+
|
|
3795
|
+
children_recursive: typing.Any
|
|
3796
|
+
""" """
|
|
3797
|
+
|
|
3798
|
+
children_recursive_basename: typing.Any
|
|
3799
|
+
""" """
|
|
3800
|
+
|
|
3801
|
+
parent_recursive: typing.Any
|
|
3802
|
+
""" """
|
|
3803
|
+
|
|
3804
|
+
vector: typing.Any
|
|
3805
|
+
""" """
|
|
3806
|
+
|
|
3807
|
+
x_axis: typing.Any
|
|
3808
|
+
""" """
|
|
3809
|
+
|
|
3810
|
+
y_axis: typing.Any
|
|
3811
|
+
""" """
|
|
3812
|
+
|
|
3813
|
+
z_axis: typing.Any
|
|
3814
|
+
""" """
|
|
3815
|
+
|
|
3816
|
+
def parent_index(self, parent_test):
|
|
3817
|
+
"""
|
|
3818
|
+
|
|
3819
|
+
:param parent_test:
|
|
3820
|
+
"""
|
|
3821
|
+
...
|
|
3822
|
+
|
|
3823
|
+
def translate(self, vec):
|
|
3824
|
+
"""
|
|
3825
|
+
|
|
3826
|
+
:param vec:
|
|
3827
|
+
"""
|
|
3828
|
+
...
|
|
3829
|
+
|
|
3830
|
+
class RNAMeta:
|
|
3831
|
+
""" """
|
|
3832
|
+
|
|
3833
|
+
is_registered: typing.Any
|
|
3834
|
+
""" """
|
|
3835
|
+
|
|
3836
|
+
def mro(self):
|
|
3837
|
+
""" """
|
|
3838
|
+
...
|
|
3839
|
+
|
|
3840
|
+
class Node:
|
|
3841
|
+
""" """
|
|
1048
3842
|
|
|
1049
|
-
def as_pointer(self): ...
|
|
1050
|
-
def bl_rna_get_subclass(self): ...
|
|
1051
|
-
def bl_rna_get_subclass_py(self): ...
|
|
1052
|
-
def driver_add(self): ...
|
|
1053
|
-
def driver_remove(self): ...
|
|
1054
|
-
def get(self): ...
|
|
1055
|
-
def id_properties_clear(self): ...
|
|
1056
|
-
def id_properties_ensure(self): ...
|
|
1057
|
-
def id_properties_ui(self): ...
|
|
1058
|
-
def is_property_hidden(self): ...
|
|
1059
|
-
def is_property_overridable_library(self): ...
|
|
1060
|
-
def is_property_readonly(self): ...
|
|
1061
|
-
def is_property_set(self): ...
|
|
1062
|
-
def items(self): ...
|
|
1063
|
-
def keyframe_delete(self): ...
|
|
1064
|
-
def keyframe_insert(self): ...
|
|
1065
|
-
def keys(self): ...
|
|
1066
|
-
def path_from_id(self): ...
|
|
1067
|
-
def path_resolve(self): ...
|
|
1068
|
-
def poll(self, ntree): ...
|
|
1069
|
-
def pop(self): ...
|
|
1070
|
-
def property_overridable_library_set(self): ...
|
|
1071
|
-
def property_unset(self): ...
|
|
1072
|
-
def type_recast(self): ...
|
|
1073
|
-
def values(self): ...
|
|
1074
|
-
|
|
1075
|
-
class TextureNode(NodeInternal, Node):
|
|
1076
3843
|
id_data: typing.Any
|
|
3844
|
+
""" """
|
|
3845
|
+
|
|
3846
|
+
def as_pointer(self):
|
|
3847
|
+
""" """
|
|
3848
|
+
...
|
|
3849
|
+
|
|
3850
|
+
def bl_rna_get_subclass(self):
|
|
3851
|
+
""" """
|
|
3852
|
+
...
|
|
3853
|
+
|
|
3854
|
+
def bl_rna_get_subclass_py(self):
|
|
3855
|
+
""" """
|
|
3856
|
+
...
|
|
3857
|
+
|
|
3858
|
+
def driver_add(self):
|
|
3859
|
+
""" """
|
|
3860
|
+
...
|
|
3861
|
+
|
|
3862
|
+
def driver_remove(self):
|
|
3863
|
+
""" """
|
|
3864
|
+
...
|
|
3865
|
+
|
|
3866
|
+
def get(self):
|
|
3867
|
+
""" """
|
|
3868
|
+
...
|
|
3869
|
+
|
|
3870
|
+
def id_properties_clear(self):
|
|
3871
|
+
""" """
|
|
3872
|
+
...
|
|
3873
|
+
|
|
3874
|
+
def id_properties_ensure(self):
|
|
3875
|
+
""" """
|
|
3876
|
+
...
|
|
3877
|
+
|
|
3878
|
+
def id_properties_ui(self):
|
|
3879
|
+
""" """
|
|
3880
|
+
...
|
|
3881
|
+
|
|
3882
|
+
def is_property_hidden(self):
|
|
3883
|
+
""" """
|
|
3884
|
+
...
|
|
3885
|
+
|
|
3886
|
+
def is_property_overridable_library(self):
|
|
3887
|
+
""" """
|
|
3888
|
+
...
|
|
3889
|
+
|
|
3890
|
+
def is_property_readonly(self):
|
|
3891
|
+
""" """
|
|
3892
|
+
...
|
|
3893
|
+
|
|
3894
|
+
def is_property_set(self):
|
|
3895
|
+
""" """
|
|
3896
|
+
...
|
|
3897
|
+
|
|
3898
|
+
def items(self):
|
|
3899
|
+
""" """
|
|
3900
|
+
...
|
|
3901
|
+
|
|
3902
|
+
def keyframe_delete(self):
|
|
3903
|
+
""" """
|
|
3904
|
+
...
|
|
3905
|
+
|
|
3906
|
+
def keyframe_insert(self):
|
|
3907
|
+
""" """
|
|
3908
|
+
...
|
|
3909
|
+
|
|
3910
|
+
def keys(self):
|
|
3911
|
+
""" """
|
|
3912
|
+
...
|
|
3913
|
+
|
|
3914
|
+
def path_from_id(self):
|
|
3915
|
+
""" """
|
|
3916
|
+
...
|
|
3917
|
+
|
|
3918
|
+
def path_resolve(self):
|
|
3919
|
+
""" """
|
|
3920
|
+
...
|
|
3921
|
+
|
|
3922
|
+
def poll(self, _ntree):
|
|
3923
|
+
"""
|
|
3924
|
+
|
|
3925
|
+
:param _ntree:
|
|
3926
|
+
"""
|
|
3927
|
+
...
|
|
3928
|
+
|
|
3929
|
+
def pop(self):
|
|
3930
|
+
""" """
|
|
3931
|
+
...
|
|
3932
|
+
|
|
3933
|
+
def property_overridable_library_set(self):
|
|
3934
|
+
""" """
|
|
3935
|
+
...
|
|
3936
|
+
|
|
3937
|
+
def property_unset(self):
|
|
3938
|
+
""" """
|
|
3939
|
+
...
|
|
3940
|
+
|
|
3941
|
+
def type_recast(self):
|
|
3942
|
+
""" """
|
|
3943
|
+
...
|
|
3944
|
+
|
|
3945
|
+
def values(self):
|
|
3946
|
+
""" """
|
|
3947
|
+
...
|
|
3948
|
+
|
|
3949
|
+
class _GenericUI:
|
|
3950
|
+
""" """
|
|
3951
|
+
|
|
3952
|
+
def append(self, draw_func):
|
|
3953
|
+
"""
|
|
3954
|
+
|
|
3955
|
+
:param draw_func:
|
|
3956
|
+
"""
|
|
3957
|
+
...
|
|
3958
|
+
|
|
3959
|
+
def is_extended(self):
|
|
3960
|
+
""" """
|
|
3961
|
+
...
|
|
3962
|
+
|
|
3963
|
+
def prepend(self, draw_func):
|
|
3964
|
+
"""
|
|
3965
|
+
|
|
3966
|
+
:param draw_func:
|
|
3967
|
+
"""
|
|
3968
|
+
...
|
|
3969
|
+
|
|
3970
|
+
def remove(self, draw_func):
|
|
3971
|
+
"""
|
|
3972
|
+
|
|
3973
|
+
:param draw_func:
|
|
3974
|
+
"""
|
|
3975
|
+
...
|
|
3976
|
+
|
|
3977
|
+
def ord_ind(i1, i2):
|
|
3978
|
+
""" """
|
|
1077
3979
|
|
|
1078
|
-
|
|
1079
|
-
def bl_rna_get_subclass(self): ...
|
|
1080
|
-
def bl_rna_get_subclass_py(self): ...
|
|
1081
|
-
def driver_add(self): ...
|
|
1082
|
-
def driver_remove(self): ...
|
|
1083
|
-
def get(self): ...
|
|
1084
|
-
def id_properties_clear(self): ...
|
|
1085
|
-
def id_properties_ensure(self): ...
|
|
1086
|
-
def id_properties_ui(self): ...
|
|
1087
|
-
def is_property_hidden(self): ...
|
|
1088
|
-
def is_property_overridable_library(self): ...
|
|
1089
|
-
def is_property_readonly(self): ...
|
|
1090
|
-
def is_property_set(self): ...
|
|
1091
|
-
def items(self): ...
|
|
1092
|
-
def keyframe_delete(self): ...
|
|
1093
|
-
def keyframe_insert(self): ...
|
|
1094
|
-
def keys(self): ...
|
|
1095
|
-
def path_from_id(self): ...
|
|
1096
|
-
def path_resolve(self): ...
|
|
1097
|
-
def poll(self, ntree): ...
|
|
1098
|
-
def pop(self): ...
|
|
1099
|
-
def property_overridable_library_set(self): ...
|
|
1100
|
-
def property_unset(self): ...
|
|
1101
|
-
def type_recast(self): ...
|
|
1102
|
-
def values(self): ...
|
|
1103
|
-
|
|
1104
|
-
def ord_ind(i1, i2): ...
|
|
3980
|
+
...
|