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
|
@@ -3,568 +3,2138 @@ import bpy_types
|
|
|
3
3
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
|
-
class
|
|
7
|
-
|
|
8
|
-
bl_region_type: typing.Any
|
|
9
|
-
bl_space_type: typing.Any
|
|
6
|
+
class PHYSICS_PT_rigid_body_constraint(bpy_types._GenericUI):
|
|
7
|
+
""" """
|
|
10
8
|
|
|
11
|
-
class PHYSICS_PT_rigid_body_constraint(
|
|
12
|
-
PHYSICS_PT_rigidbody_constraint_panel, bpy_types.Panel, bpy_types._GenericUI
|
|
13
|
-
):
|
|
14
9
|
COMPAT_ENGINES: typing.Any
|
|
15
|
-
|
|
16
|
-
bl_label: typing.Any
|
|
17
|
-
bl_region_type: typing.Any
|
|
18
|
-
bl_rna: typing.Any
|
|
19
|
-
bl_space_type: typing.Any
|
|
20
|
-
id_data: typing.Any
|
|
10
|
+
""" """
|
|
21
11
|
|
|
22
|
-
def append(self, draw_func): ...
|
|
23
|
-
def as_pointer(self): ...
|
|
24
|
-
def bl_rna_get_subclass(self): ...
|
|
25
|
-
def bl_rna_get_subclass_py(self): ...
|
|
26
|
-
def draw(self, context): ...
|
|
27
|
-
def driver_add(self): ...
|
|
28
|
-
def driver_remove(self): ...
|
|
29
|
-
def get(self): ...
|
|
30
|
-
def id_properties_clear(self): ...
|
|
31
|
-
def id_properties_ensure(self): ...
|
|
32
|
-
def id_properties_ui(self): ...
|
|
33
|
-
def is_extended(self): ...
|
|
34
|
-
def is_property_hidden(self): ...
|
|
35
|
-
def is_property_overridable_library(self): ...
|
|
36
|
-
def is_property_readonly(self): ...
|
|
37
|
-
def is_property_set(self): ...
|
|
38
|
-
def items(self): ...
|
|
39
|
-
def keyframe_delete(self): ...
|
|
40
|
-
def keyframe_insert(self): ...
|
|
41
|
-
def keys(self): ...
|
|
42
|
-
def path_from_id(self): ...
|
|
43
|
-
def path_resolve(self): ...
|
|
44
|
-
def poll(self, context): ...
|
|
45
|
-
def pop(self): ...
|
|
46
|
-
def prepend(self, draw_func): ...
|
|
47
|
-
def property_overridable_library_set(self): ...
|
|
48
|
-
def property_unset(self): ...
|
|
49
|
-
def remove(self, draw_func): ...
|
|
50
|
-
def type_recast(self): ...
|
|
51
|
-
def values(self): ...
|
|
52
|
-
|
|
53
|
-
class PHYSICS_PT_rigid_body_constraint_limits(
|
|
54
|
-
PHYSICS_PT_rigidbody_constraint_panel, bpy_types.Panel, bpy_types._GenericUI
|
|
55
|
-
):
|
|
56
|
-
COMPAT_ENGINES: typing.Any
|
|
57
12
|
bl_context: typing.Any
|
|
58
|
-
|
|
59
|
-
bl_parent_id: typing.Any
|
|
60
|
-
bl_region_type: typing.Any
|
|
61
|
-
bl_rna: typing.Any
|
|
62
|
-
bl_space_type: typing.Any
|
|
63
|
-
id_data: typing.Any
|
|
13
|
+
""" """
|
|
64
14
|
|
|
65
|
-
def append(self, draw_func): ...
|
|
66
|
-
def as_pointer(self): ...
|
|
67
|
-
def bl_rna_get_subclass(self): ...
|
|
68
|
-
def bl_rna_get_subclass_py(self): ...
|
|
69
|
-
def draw(self, _context): ...
|
|
70
|
-
def driver_add(self): ...
|
|
71
|
-
def driver_remove(self): ...
|
|
72
|
-
def get(self): ...
|
|
73
|
-
def id_properties_clear(self): ...
|
|
74
|
-
def id_properties_ensure(self): ...
|
|
75
|
-
def id_properties_ui(self): ...
|
|
76
|
-
def is_extended(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 poll(self, context): ...
|
|
88
|
-
def pop(self): ...
|
|
89
|
-
def prepend(self, draw_func): ...
|
|
90
|
-
def property_overridable_library_set(self): ...
|
|
91
|
-
def property_unset(self): ...
|
|
92
|
-
def remove(self, draw_func): ...
|
|
93
|
-
def type_recast(self): ...
|
|
94
|
-
def values(self): ...
|
|
95
|
-
|
|
96
|
-
class PHYSICS_PT_rigid_body_constraint_limits_angular(
|
|
97
|
-
PHYSICS_PT_rigidbody_constraint_panel, bpy_types.Panel, bpy_types._GenericUI
|
|
98
|
-
):
|
|
99
|
-
COMPAT_ENGINES: typing.Any
|
|
100
|
-
bl_context: typing.Any
|
|
101
15
|
bl_label: typing.Any
|
|
102
|
-
|
|
103
|
-
bl_region_type: typing.Any
|
|
104
|
-
bl_rna: typing.Any
|
|
105
|
-
bl_space_type: typing.Any
|
|
106
|
-
id_data: typing.Any
|
|
16
|
+
""" """
|
|
107
17
|
|
|
108
|
-
def append(self, draw_func): ...
|
|
109
|
-
def as_pointer(self): ...
|
|
110
|
-
def bl_rna_get_subclass(self): ...
|
|
111
|
-
def bl_rna_get_subclass_py(self): ...
|
|
112
|
-
def draw(self, context): ...
|
|
113
|
-
def driver_add(self): ...
|
|
114
|
-
def driver_remove(self): ...
|
|
115
|
-
def get(self): ...
|
|
116
|
-
def id_properties_clear(self): ...
|
|
117
|
-
def id_properties_ensure(self): ...
|
|
118
|
-
def id_properties_ui(self): ...
|
|
119
|
-
def is_extended(self): ...
|
|
120
|
-
def is_property_hidden(self): ...
|
|
121
|
-
def is_property_overridable_library(self): ...
|
|
122
|
-
def is_property_readonly(self): ...
|
|
123
|
-
def is_property_set(self): ...
|
|
124
|
-
def items(self): ...
|
|
125
|
-
def keyframe_delete(self): ...
|
|
126
|
-
def keyframe_insert(self): ...
|
|
127
|
-
def keys(self): ...
|
|
128
|
-
def path_from_id(self): ...
|
|
129
|
-
def path_resolve(self): ...
|
|
130
|
-
def poll(self, context): ...
|
|
131
|
-
def pop(self): ...
|
|
132
|
-
def prepend(self, draw_func): ...
|
|
133
|
-
def property_overridable_library_set(self): ...
|
|
134
|
-
def property_unset(self): ...
|
|
135
|
-
def remove(self, draw_func): ...
|
|
136
|
-
def type_recast(self): ...
|
|
137
|
-
def values(self): ...
|
|
138
|
-
|
|
139
|
-
class PHYSICS_PT_rigid_body_constraint_limits_linear(
|
|
140
|
-
PHYSICS_PT_rigidbody_constraint_panel, bpy_types.Panel, bpy_types._GenericUI
|
|
141
|
-
):
|
|
142
|
-
COMPAT_ENGINES: typing.Any
|
|
143
|
-
bl_context: typing.Any
|
|
144
|
-
bl_label: typing.Any
|
|
145
|
-
bl_parent_id: typing.Any
|
|
146
18
|
bl_region_type: typing.Any
|
|
147
|
-
|
|
148
|
-
bl_space_type: typing.Any
|
|
149
|
-
id_data: typing.Any
|
|
19
|
+
""" """
|
|
150
20
|
|
|
151
|
-
def append(self, draw_func): ...
|
|
152
|
-
def as_pointer(self): ...
|
|
153
|
-
def bl_rna_get_subclass(self): ...
|
|
154
|
-
def bl_rna_get_subclass_py(self): ...
|
|
155
|
-
def draw(self, context): ...
|
|
156
|
-
def driver_add(self): ...
|
|
157
|
-
def driver_remove(self): ...
|
|
158
|
-
def get(self): ...
|
|
159
|
-
def id_properties_clear(self): ...
|
|
160
|
-
def id_properties_ensure(self): ...
|
|
161
|
-
def id_properties_ui(self): ...
|
|
162
|
-
def is_extended(self): ...
|
|
163
|
-
def is_property_hidden(self): ...
|
|
164
|
-
def is_property_overridable_library(self): ...
|
|
165
|
-
def is_property_readonly(self): ...
|
|
166
|
-
def is_property_set(self): ...
|
|
167
|
-
def items(self): ...
|
|
168
|
-
def keyframe_delete(self): ...
|
|
169
|
-
def keyframe_insert(self): ...
|
|
170
|
-
def keys(self): ...
|
|
171
|
-
def path_from_id(self): ...
|
|
172
|
-
def path_resolve(self): ...
|
|
173
|
-
def poll(self, context): ...
|
|
174
|
-
def pop(self): ...
|
|
175
|
-
def prepend(self, draw_func): ...
|
|
176
|
-
def property_overridable_library_set(self): ...
|
|
177
|
-
def property_unset(self): ...
|
|
178
|
-
def remove(self, draw_func): ...
|
|
179
|
-
def type_recast(self): ...
|
|
180
|
-
def values(self): ...
|
|
181
|
-
|
|
182
|
-
class PHYSICS_PT_rigid_body_constraint_motor(
|
|
183
|
-
PHYSICS_PT_rigidbody_constraint_panel, bpy_types.Panel, bpy_types._GenericUI
|
|
184
|
-
):
|
|
185
|
-
COMPAT_ENGINES: typing.Any
|
|
186
|
-
bl_context: typing.Any
|
|
187
|
-
bl_label: typing.Any
|
|
188
|
-
bl_parent_id: typing.Any
|
|
189
|
-
bl_region_type: typing.Any
|
|
190
21
|
bl_rna: typing.Any
|
|
22
|
+
""" """
|
|
23
|
+
|
|
191
24
|
bl_space_type: typing.Any
|
|
25
|
+
""" """
|
|
26
|
+
|
|
192
27
|
id_data: typing.Any
|
|
28
|
+
""" """
|
|
29
|
+
|
|
30
|
+
def append(self, draw_func):
|
|
31
|
+
"""
|
|
32
|
+
|
|
33
|
+
:param draw_func:
|
|
34
|
+
"""
|
|
35
|
+
...
|
|
36
|
+
|
|
37
|
+
def as_pointer(self):
|
|
38
|
+
""" """
|
|
39
|
+
...
|
|
40
|
+
|
|
41
|
+
def bl_rna_get_subclass(self):
|
|
42
|
+
""" """
|
|
43
|
+
...
|
|
44
|
+
|
|
45
|
+
def bl_rna_get_subclass_py(self):
|
|
46
|
+
""" """
|
|
47
|
+
...
|
|
48
|
+
|
|
49
|
+
def draw(self, context):
|
|
50
|
+
"""
|
|
51
|
+
|
|
52
|
+
:param context:
|
|
53
|
+
"""
|
|
54
|
+
...
|
|
55
|
+
|
|
56
|
+
def driver_add(self):
|
|
57
|
+
""" """
|
|
58
|
+
...
|
|
59
|
+
|
|
60
|
+
def driver_remove(self):
|
|
61
|
+
""" """
|
|
62
|
+
...
|
|
63
|
+
|
|
64
|
+
def get(self):
|
|
65
|
+
""" """
|
|
66
|
+
...
|
|
67
|
+
|
|
68
|
+
def id_properties_clear(self):
|
|
69
|
+
""" """
|
|
70
|
+
...
|
|
71
|
+
|
|
72
|
+
def id_properties_ensure(self):
|
|
73
|
+
""" """
|
|
74
|
+
...
|
|
75
|
+
|
|
76
|
+
def id_properties_ui(self):
|
|
77
|
+
""" """
|
|
78
|
+
...
|
|
79
|
+
|
|
80
|
+
def is_extended(self):
|
|
81
|
+
""" """
|
|
82
|
+
...
|
|
83
|
+
|
|
84
|
+
def is_property_hidden(self):
|
|
85
|
+
""" """
|
|
86
|
+
...
|
|
87
|
+
|
|
88
|
+
def is_property_overridable_library(self):
|
|
89
|
+
""" """
|
|
90
|
+
...
|
|
91
|
+
|
|
92
|
+
def is_property_readonly(self):
|
|
93
|
+
""" """
|
|
94
|
+
...
|
|
95
|
+
|
|
96
|
+
def is_property_set(self):
|
|
97
|
+
""" """
|
|
98
|
+
...
|
|
99
|
+
|
|
100
|
+
def items(self):
|
|
101
|
+
""" """
|
|
102
|
+
...
|
|
103
|
+
|
|
104
|
+
def keyframe_delete(self):
|
|
105
|
+
""" """
|
|
106
|
+
...
|
|
107
|
+
|
|
108
|
+
def keyframe_insert(self):
|
|
109
|
+
""" """
|
|
110
|
+
...
|
|
111
|
+
|
|
112
|
+
def keys(self):
|
|
113
|
+
""" """
|
|
114
|
+
...
|
|
115
|
+
|
|
116
|
+
def path_from_id(self):
|
|
117
|
+
""" """
|
|
118
|
+
...
|
|
119
|
+
|
|
120
|
+
def path_resolve(self):
|
|
121
|
+
""" """
|
|
122
|
+
...
|
|
123
|
+
|
|
124
|
+
def poll(self, context):
|
|
125
|
+
"""
|
|
126
|
+
|
|
127
|
+
:param context:
|
|
128
|
+
"""
|
|
129
|
+
...
|
|
130
|
+
|
|
131
|
+
def pop(self):
|
|
132
|
+
""" """
|
|
133
|
+
...
|
|
134
|
+
|
|
135
|
+
def prepend(self, draw_func):
|
|
136
|
+
"""
|
|
137
|
+
|
|
138
|
+
:param draw_func:
|
|
139
|
+
"""
|
|
140
|
+
...
|
|
141
|
+
|
|
142
|
+
def property_overridable_library_set(self):
|
|
143
|
+
""" """
|
|
144
|
+
...
|
|
145
|
+
|
|
146
|
+
def property_unset(self):
|
|
147
|
+
""" """
|
|
148
|
+
...
|
|
149
|
+
|
|
150
|
+
def remove(self, draw_func):
|
|
151
|
+
"""
|
|
152
|
+
|
|
153
|
+
:param draw_func:
|
|
154
|
+
"""
|
|
155
|
+
...
|
|
156
|
+
|
|
157
|
+
def type_recast(self):
|
|
158
|
+
""" """
|
|
159
|
+
...
|
|
160
|
+
|
|
161
|
+
def values(self):
|
|
162
|
+
""" """
|
|
163
|
+
...
|
|
164
|
+
|
|
165
|
+
class PHYSICS_PT_rigid_body_constraint_limits(bpy_types._GenericUI):
|
|
166
|
+
""" """
|
|
193
167
|
|
|
194
|
-
def append(self, draw_func): ...
|
|
195
|
-
def as_pointer(self): ...
|
|
196
|
-
def bl_rna_get_subclass(self): ...
|
|
197
|
-
def bl_rna_get_subclass_py(self): ...
|
|
198
|
-
def draw(self, _context): ...
|
|
199
|
-
def driver_add(self): ...
|
|
200
|
-
def driver_remove(self): ...
|
|
201
|
-
def get(self): ...
|
|
202
|
-
def id_properties_clear(self): ...
|
|
203
|
-
def id_properties_ensure(self): ...
|
|
204
|
-
def id_properties_ui(self): ...
|
|
205
|
-
def is_extended(self): ...
|
|
206
|
-
def is_property_hidden(self): ...
|
|
207
|
-
def is_property_overridable_library(self): ...
|
|
208
|
-
def is_property_readonly(self): ...
|
|
209
|
-
def is_property_set(self): ...
|
|
210
|
-
def items(self): ...
|
|
211
|
-
def keyframe_delete(self): ...
|
|
212
|
-
def keyframe_insert(self): ...
|
|
213
|
-
def keys(self): ...
|
|
214
|
-
def path_from_id(self): ...
|
|
215
|
-
def path_resolve(self): ...
|
|
216
|
-
def poll(self, context): ...
|
|
217
|
-
def pop(self): ...
|
|
218
|
-
def prepend(self, draw_func): ...
|
|
219
|
-
def property_overridable_library_set(self): ...
|
|
220
|
-
def property_unset(self): ...
|
|
221
|
-
def remove(self, draw_func): ...
|
|
222
|
-
def type_recast(self): ...
|
|
223
|
-
def values(self): ...
|
|
224
|
-
|
|
225
|
-
class PHYSICS_PT_rigid_body_constraint_motor_angular(
|
|
226
|
-
PHYSICS_PT_rigidbody_constraint_panel, bpy_types.Panel, bpy_types._GenericUI
|
|
227
|
-
):
|
|
228
168
|
COMPAT_ENGINES: typing.Any
|
|
169
|
+
""" """
|
|
170
|
+
|
|
229
171
|
bl_context: typing.Any
|
|
172
|
+
""" """
|
|
173
|
+
|
|
230
174
|
bl_label: typing.Any
|
|
175
|
+
""" """
|
|
176
|
+
|
|
231
177
|
bl_parent_id: typing.Any
|
|
178
|
+
""" """
|
|
179
|
+
|
|
232
180
|
bl_region_type: typing.Any
|
|
181
|
+
""" """
|
|
182
|
+
|
|
233
183
|
bl_rna: typing.Any
|
|
184
|
+
""" """
|
|
185
|
+
|
|
234
186
|
bl_space_type: typing.Any
|
|
187
|
+
""" """
|
|
188
|
+
|
|
235
189
|
id_data: typing.Any
|
|
190
|
+
""" """
|
|
191
|
+
|
|
192
|
+
def append(self, draw_func):
|
|
193
|
+
"""
|
|
194
|
+
|
|
195
|
+
:param draw_func:
|
|
196
|
+
"""
|
|
197
|
+
...
|
|
198
|
+
|
|
199
|
+
def as_pointer(self):
|
|
200
|
+
""" """
|
|
201
|
+
...
|
|
202
|
+
|
|
203
|
+
def bl_rna_get_subclass(self):
|
|
204
|
+
""" """
|
|
205
|
+
...
|
|
206
|
+
|
|
207
|
+
def bl_rna_get_subclass_py(self):
|
|
208
|
+
""" """
|
|
209
|
+
...
|
|
210
|
+
|
|
211
|
+
def draw(self, _context):
|
|
212
|
+
"""
|
|
213
|
+
|
|
214
|
+
:param _context:
|
|
215
|
+
"""
|
|
216
|
+
...
|
|
217
|
+
|
|
218
|
+
def driver_add(self):
|
|
219
|
+
""" """
|
|
220
|
+
...
|
|
221
|
+
|
|
222
|
+
def driver_remove(self):
|
|
223
|
+
""" """
|
|
224
|
+
...
|
|
225
|
+
|
|
226
|
+
def get(self):
|
|
227
|
+
""" """
|
|
228
|
+
...
|
|
229
|
+
|
|
230
|
+
def id_properties_clear(self):
|
|
231
|
+
""" """
|
|
232
|
+
...
|
|
233
|
+
|
|
234
|
+
def id_properties_ensure(self):
|
|
235
|
+
""" """
|
|
236
|
+
...
|
|
237
|
+
|
|
238
|
+
def id_properties_ui(self):
|
|
239
|
+
""" """
|
|
240
|
+
...
|
|
241
|
+
|
|
242
|
+
def is_extended(self):
|
|
243
|
+
""" """
|
|
244
|
+
...
|
|
245
|
+
|
|
246
|
+
def is_property_hidden(self):
|
|
247
|
+
""" """
|
|
248
|
+
...
|
|
249
|
+
|
|
250
|
+
def is_property_overridable_library(self):
|
|
251
|
+
""" """
|
|
252
|
+
...
|
|
253
|
+
|
|
254
|
+
def is_property_readonly(self):
|
|
255
|
+
""" """
|
|
256
|
+
...
|
|
257
|
+
|
|
258
|
+
def is_property_set(self):
|
|
259
|
+
""" """
|
|
260
|
+
...
|
|
261
|
+
|
|
262
|
+
def items(self):
|
|
263
|
+
""" """
|
|
264
|
+
...
|
|
265
|
+
|
|
266
|
+
def keyframe_delete(self):
|
|
267
|
+
""" """
|
|
268
|
+
...
|
|
269
|
+
|
|
270
|
+
def keyframe_insert(self):
|
|
271
|
+
""" """
|
|
272
|
+
...
|
|
273
|
+
|
|
274
|
+
def keys(self):
|
|
275
|
+
""" """
|
|
276
|
+
...
|
|
277
|
+
|
|
278
|
+
def path_from_id(self):
|
|
279
|
+
""" """
|
|
280
|
+
...
|
|
281
|
+
|
|
282
|
+
def path_resolve(self):
|
|
283
|
+
""" """
|
|
284
|
+
...
|
|
285
|
+
|
|
286
|
+
def poll(self, context):
|
|
287
|
+
"""
|
|
288
|
+
|
|
289
|
+
:param context:
|
|
290
|
+
"""
|
|
291
|
+
...
|
|
292
|
+
|
|
293
|
+
def pop(self):
|
|
294
|
+
""" """
|
|
295
|
+
...
|
|
296
|
+
|
|
297
|
+
def prepend(self, draw_func):
|
|
298
|
+
"""
|
|
299
|
+
|
|
300
|
+
:param draw_func:
|
|
301
|
+
"""
|
|
302
|
+
...
|
|
303
|
+
|
|
304
|
+
def property_overridable_library_set(self):
|
|
305
|
+
""" """
|
|
306
|
+
...
|
|
307
|
+
|
|
308
|
+
def property_unset(self):
|
|
309
|
+
""" """
|
|
310
|
+
...
|
|
311
|
+
|
|
312
|
+
def remove(self, draw_func):
|
|
313
|
+
"""
|
|
314
|
+
|
|
315
|
+
:param draw_func:
|
|
316
|
+
"""
|
|
317
|
+
...
|
|
318
|
+
|
|
319
|
+
def type_recast(self):
|
|
320
|
+
""" """
|
|
321
|
+
...
|
|
322
|
+
|
|
323
|
+
def values(self):
|
|
324
|
+
""" """
|
|
325
|
+
...
|
|
326
|
+
|
|
327
|
+
class PHYSICS_PT_rigid_body_constraint_limits_angular(bpy_types._GenericUI):
|
|
328
|
+
""" """
|
|
236
329
|
|
|
237
|
-
def append(self, draw_func): ...
|
|
238
|
-
def as_pointer(self): ...
|
|
239
|
-
def bl_rna_get_subclass(self): ...
|
|
240
|
-
def bl_rna_get_subclass_py(self): ...
|
|
241
|
-
def draw(self, context): ...
|
|
242
|
-
def draw_header(self, context): ...
|
|
243
|
-
def driver_add(self): ...
|
|
244
|
-
def driver_remove(self): ...
|
|
245
|
-
def get(self): ...
|
|
246
|
-
def id_properties_clear(self): ...
|
|
247
|
-
def id_properties_ensure(self): ...
|
|
248
|
-
def id_properties_ui(self): ...
|
|
249
|
-
def is_extended(self): ...
|
|
250
|
-
def is_property_hidden(self): ...
|
|
251
|
-
def is_property_overridable_library(self): ...
|
|
252
|
-
def is_property_readonly(self): ...
|
|
253
|
-
def is_property_set(self): ...
|
|
254
|
-
def items(self): ...
|
|
255
|
-
def keyframe_delete(self): ...
|
|
256
|
-
def keyframe_insert(self): ...
|
|
257
|
-
def keys(self): ...
|
|
258
|
-
def path_from_id(self): ...
|
|
259
|
-
def path_resolve(self): ...
|
|
260
|
-
def poll(self, context): ...
|
|
261
|
-
def pop(self): ...
|
|
262
|
-
def prepend(self, draw_func): ...
|
|
263
|
-
def property_overridable_library_set(self): ...
|
|
264
|
-
def property_unset(self): ...
|
|
265
|
-
def remove(self, draw_func): ...
|
|
266
|
-
def type_recast(self): ...
|
|
267
|
-
def values(self): ...
|
|
268
|
-
|
|
269
|
-
class PHYSICS_PT_rigid_body_constraint_motor_linear(
|
|
270
|
-
PHYSICS_PT_rigidbody_constraint_panel, bpy_types.Panel, bpy_types._GenericUI
|
|
271
|
-
):
|
|
272
330
|
COMPAT_ENGINES: typing.Any
|
|
331
|
+
""" """
|
|
332
|
+
|
|
273
333
|
bl_context: typing.Any
|
|
334
|
+
""" """
|
|
335
|
+
|
|
274
336
|
bl_label: typing.Any
|
|
337
|
+
""" """
|
|
338
|
+
|
|
275
339
|
bl_parent_id: typing.Any
|
|
340
|
+
""" """
|
|
341
|
+
|
|
276
342
|
bl_region_type: typing.Any
|
|
343
|
+
""" """
|
|
344
|
+
|
|
277
345
|
bl_rna: typing.Any
|
|
346
|
+
""" """
|
|
347
|
+
|
|
278
348
|
bl_space_type: typing.Any
|
|
349
|
+
""" """
|
|
350
|
+
|
|
279
351
|
id_data: typing.Any
|
|
352
|
+
""" """
|
|
353
|
+
|
|
354
|
+
def append(self, draw_func):
|
|
355
|
+
"""
|
|
356
|
+
|
|
357
|
+
:param draw_func:
|
|
358
|
+
"""
|
|
359
|
+
...
|
|
360
|
+
|
|
361
|
+
def as_pointer(self):
|
|
362
|
+
""" """
|
|
363
|
+
...
|
|
364
|
+
|
|
365
|
+
def bl_rna_get_subclass(self):
|
|
366
|
+
""" """
|
|
367
|
+
...
|
|
368
|
+
|
|
369
|
+
def bl_rna_get_subclass_py(self):
|
|
370
|
+
""" """
|
|
371
|
+
...
|
|
372
|
+
|
|
373
|
+
def draw(self, context):
|
|
374
|
+
"""
|
|
375
|
+
|
|
376
|
+
:param context:
|
|
377
|
+
"""
|
|
378
|
+
...
|
|
379
|
+
|
|
380
|
+
def driver_add(self):
|
|
381
|
+
""" """
|
|
382
|
+
...
|
|
383
|
+
|
|
384
|
+
def driver_remove(self):
|
|
385
|
+
""" """
|
|
386
|
+
...
|
|
387
|
+
|
|
388
|
+
def get(self):
|
|
389
|
+
""" """
|
|
390
|
+
...
|
|
391
|
+
|
|
392
|
+
def id_properties_clear(self):
|
|
393
|
+
""" """
|
|
394
|
+
...
|
|
395
|
+
|
|
396
|
+
def id_properties_ensure(self):
|
|
397
|
+
""" """
|
|
398
|
+
...
|
|
399
|
+
|
|
400
|
+
def id_properties_ui(self):
|
|
401
|
+
""" """
|
|
402
|
+
...
|
|
403
|
+
|
|
404
|
+
def is_extended(self):
|
|
405
|
+
""" """
|
|
406
|
+
...
|
|
407
|
+
|
|
408
|
+
def is_property_hidden(self):
|
|
409
|
+
""" """
|
|
410
|
+
...
|
|
411
|
+
|
|
412
|
+
def is_property_overridable_library(self):
|
|
413
|
+
""" """
|
|
414
|
+
...
|
|
415
|
+
|
|
416
|
+
def is_property_readonly(self):
|
|
417
|
+
""" """
|
|
418
|
+
...
|
|
419
|
+
|
|
420
|
+
def is_property_set(self):
|
|
421
|
+
""" """
|
|
422
|
+
...
|
|
423
|
+
|
|
424
|
+
def items(self):
|
|
425
|
+
""" """
|
|
426
|
+
...
|
|
427
|
+
|
|
428
|
+
def keyframe_delete(self):
|
|
429
|
+
""" """
|
|
430
|
+
...
|
|
431
|
+
|
|
432
|
+
def keyframe_insert(self):
|
|
433
|
+
""" """
|
|
434
|
+
...
|
|
435
|
+
|
|
436
|
+
def keys(self):
|
|
437
|
+
""" """
|
|
438
|
+
...
|
|
439
|
+
|
|
440
|
+
def path_from_id(self):
|
|
441
|
+
""" """
|
|
442
|
+
...
|
|
443
|
+
|
|
444
|
+
def path_resolve(self):
|
|
445
|
+
""" """
|
|
446
|
+
...
|
|
447
|
+
|
|
448
|
+
def poll(self, context):
|
|
449
|
+
"""
|
|
450
|
+
|
|
451
|
+
:param context:
|
|
452
|
+
"""
|
|
453
|
+
...
|
|
454
|
+
|
|
455
|
+
def pop(self):
|
|
456
|
+
""" """
|
|
457
|
+
...
|
|
458
|
+
|
|
459
|
+
def prepend(self, draw_func):
|
|
460
|
+
"""
|
|
461
|
+
|
|
462
|
+
:param draw_func:
|
|
463
|
+
"""
|
|
464
|
+
...
|
|
465
|
+
|
|
466
|
+
def property_overridable_library_set(self):
|
|
467
|
+
""" """
|
|
468
|
+
...
|
|
469
|
+
|
|
470
|
+
def property_unset(self):
|
|
471
|
+
""" """
|
|
472
|
+
...
|
|
473
|
+
|
|
474
|
+
def remove(self, draw_func):
|
|
475
|
+
"""
|
|
476
|
+
|
|
477
|
+
:param draw_func:
|
|
478
|
+
"""
|
|
479
|
+
...
|
|
480
|
+
|
|
481
|
+
def type_recast(self):
|
|
482
|
+
""" """
|
|
483
|
+
...
|
|
484
|
+
|
|
485
|
+
def values(self):
|
|
486
|
+
""" """
|
|
487
|
+
...
|
|
488
|
+
|
|
489
|
+
class PHYSICS_PT_rigid_body_constraint_limits_linear(bpy_types._GenericUI):
|
|
490
|
+
""" """
|
|
280
491
|
|
|
281
|
-
def append(self, draw_func): ...
|
|
282
|
-
def as_pointer(self): ...
|
|
283
|
-
def bl_rna_get_subclass(self): ...
|
|
284
|
-
def bl_rna_get_subclass_py(self): ...
|
|
285
|
-
def draw(self, context): ...
|
|
286
|
-
def draw_header(self, context): ...
|
|
287
|
-
def driver_add(self): ...
|
|
288
|
-
def driver_remove(self): ...
|
|
289
|
-
def get(self): ...
|
|
290
|
-
def id_properties_clear(self): ...
|
|
291
|
-
def id_properties_ensure(self): ...
|
|
292
|
-
def id_properties_ui(self): ...
|
|
293
|
-
def is_extended(self): ...
|
|
294
|
-
def is_property_hidden(self): ...
|
|
295
|
-
def is_property_overridable_library(self): ...
|
|
296
|
-
def is_property_readonly(self): ...
|
|
297
|
-
def is_property_set(self): ...
|
|
298
|
-
def items(self): ...
|
|
299
|
-
def keyframe_delete(self): ...
|
|
300
|
-
def keyframe_insert(self): ...
|
|
301
|
-
def keys(self): ...
|
|
302
|
-
def path_from_id(self): ...
|
|
303
|
-
def path_resolve(self): ...
|
|
304
|
-
def poll(self, context): ...
|
|
305
|
-
def pop(self): ...
|
|
306
|
-
def prepend(self, draw_func): ...
|
|
307
|
-
def property_overridable_library_set(self): ...
|
|
308
|
-
def property_unset(self): ...
|
|
309
|
-
def remove(self, draw_func): ...
|
|
310
|
-
def type_recast(self): ...
|
|
311
|
-
def values(self): ...
|
|
312
|
-
|
|
313
|
-
class PHYSICS_PT_rigid_body_constraint_objects(
|
|
314
|
-
PHYSICS_PT_rigidbody_constraint_panel, bpy_types.Panel, bpy_types._GenericUI
|
|
315
|
-
):
|
|
316
492
|
COMPAT_ENGINES: typing.Any
|
|
493
|
+
""" """
|
|
494
|
+
|
|
317
495
|
bl_context: typing.Any
|
|
496
|
+
""" """
|
|
497
|
+
|
|
318
498
|
bl_label: typing.Any
|
|
499
|
+
""" """
|
|
500
|
+
|
|
319
501
|
bl_parent_id: typing.Any
|
|
502
|
+
""" """
|
|
503
|
+
|
|
320
504
|
bl_region_type: typing.Any
|
|
505
|
+
""" """
|
|
506
|
+
|
|
321
507
|
bl_rna: typing.Any
|
|
508
|
+
""" """
|
|
509
|
+
|
|
322
510
|
bl_space_type: typing.Any
|
|
511
|
+
""" """
|
|
512
|
+
|
|
323
513
|
id_data: typing.Any
|
|
514
|
+
""" """
|
|
515
|
+
|
|
516
|
+
def append(self, draw_func):
|
|
517
|
+
"""
|
|
518
|
+
|
|
519
|
+
:param draw_func:
|
|
520
|
+
"""
|
|
521
|
+
...
|
|
522
|
+
|
|
523
|
+
def as_pointer(self):
|
|
524
|
+
""" """
|
|
525
|
+
...
|
|
526
|
+
|
|
527
|
+
def bl_rna_get_subclass(self):
|
|
528
|
+
""" """
|
|
529
|
+
...
|
|
530
|
+
|
|
531
|
+
def bl_rna_get_subclass_py(self):
|
|
532
|
+
""" """
|
|
533
|
+
...
|
|
534
|
+
|
|
535
|
+
def draw(self, context):
|
|
536
|
+
"""
|
|
537
|
+
|
|
538
|
+
:param context:
|
|
539
|
+
"""
|
|
540
|
+
...
|
|
541
|
+
|
|
542
|
+
def driver_add(self):
|
|
543
|
+
""" """
|
|
544
|
+
...
|
|
545
|
+
|
|
546
|
+
def driver_remove(self):
|
|
547
|
+
""" """
|
|
548
|
+
...
|
|
549
|
+
|
|
550
|
+
def get(self):
|
|
551
|
+
""" """
|
|
552
|
+
...
|
|
553
|
+
|
|
554
|
+
def id_properties_clear(self):
|
|
555
|
+
""" """
|
|
556
|
+
...
|
|
557
|
+
|
|
558
|
+
def id_properties_ensure(self):
|
|
559
|
+
""" """
|
|
560
|
+
...
|
|
561
|
+
|
|
562
|
+
def id_properties_ui(self):
|
|
563
|
+
""" """
|
|
564
|
+
...
|
|
565
|
+
|
|
566
|
+
def is_extended(self):
|
|
567
|
+
""" """
|
|
568
|
+
...
|
|
569
|
+
|
|
570
|
+
def is_property_hidden(self):
|
|
571
|
+
""" """
|
|
572
|
+
...
|
|
573
|
+
|
|
574
|
+
def is_property_overridable_library(self):
|
|
575
|
+
""" """
|
|
576
|
+
...
|
|
577
|
+
|
|
578
|
+
def is_property_readonly(self):
|
|
579
|
+
""" """
|
|
580
|
+
...
|
|
581
|
+
|
|
582
|
+
def is_property_set(self):
|
|
583
|
+
""" """
|
|
584
|
+
...
|
|
585
|
+
|
|
586
|
+
def items(self):
|
|
587
|
+
""" """
|
|
588
|
+
...
|
|
589
|
+
|
|
590
|
+
def keyframe_delete(self):
|
|
591
|
+
""" """
|
|
592
|
+
...
|
|
593
|
+
|
|
594
|
+
def keyframe_insert(self):
|
|
595
|
+
""" """
|
|
596
|
+
...
|
|
597
|
+
|
|
598
|
+
def keys(self):
|
|
599
|
+
""" """
|
|
600
|
+
...
|
|
601
|
+
|
|
602
|
+
def path_from_id(self):
|
|
603
|
+
""" """
|
|
604
|
+
...
|
|
605
|
+
|
|
606
|
+
def path_resolve(self):
|
|
607
|
+
""" """
|
|
608
|
+
...
|
|
609
|
+
|
|
610
|
+
def poll(self, context):
|
|
611
|
+
"""
|
|
612
|
+
|
|
613
|
+
:param context:
|
|
614
|
+
"""
|
|
615
|
+
...
|
|
616
|
+
|
|
617
|
+
def pop(self):
|
|
618
|
+
""" """
|
|
619
|
+
...
|
|
620
|
+
|
|
621
|
+
def prepend(self, draw_func):
|
|
622
|
+
"""
|
|
623
|
+
|
|
624
|
+
:param draw_func:
|
|
625
|
+
"""
|
|
626
|
+
...
|
|
627
|
+
|
|
628
|
+
def property_overridable_library_set(self):
|
|
629
|
+
""" """
|
|
630
|
+
...
|
|
631
|
+
|
|
632
|
+
def property_unset(self):
|
|
633
|
+
""" """
|
|
634
|
+
...
|
|
635
|
+
|
|
636
|
+
def remove(self, draw_func):
|
|
637
|
+
"""
|
|
638
|
+
|
|
639
|
+
:param draw_func:
|
|
640
|
+
"""
|
|
641
|
+
...
|
|
642
|
+
|
|
643
|
+
def type_recast(self):
|
|
644
|
+
""" """
|
|
645
|
+
...
|
|
646
|
+
|
|
647
|
+
def values(self):
|
|
648
|
+
""" """
|
|
649
|
+
...
|
|
650
|
+
|
|
651
|
+
class PHYSICS_PT_rigid_body_constraint_motor(bpy_types._GenericUI):
|
|
652
|
+
""" """
|
|
324
653
|
|
|
325
|
-
def append(self, draw_func): ...
|
|
326
|
-
def as_pointer(self): ...
|
|
327
|
-
def bl_rna_get_subclass(self): ...
|
|
328
|
-
def bl_rna_get_subclass_py(self): ...
|
|
329
|
-
def draw(self, context): ...
|
|
330
|
-
def driver_add(self): ...
|
|
331
|
-
def driver_remove(self): ...
|
|
332
|
-
def get(self): ...
|
|
333
|
-
def id_properties_clear(self): ...
|
|
334
|
-
def id_properties_ensure(self): ...
|
|
335
|
-
def id_properties_ui(self): ...
|
|
336
|
-
def is_extended(self): ...
|
|
337
|
-
def is_property_hidden(self): ...
|
|
338
|
-
def is_property_overridable_library(self): ...
|
|
339
|
-
def is_property_readonly(self): ...
|
|
340
|
-
def is_property_set(self): ...
|
|
341
|
-
def items(self): ...
|
|
342
|
-
def keyframe_delete(self): ...
|
|
343
|
-
def keyframe_insert(self): ...
|
|
344
|
-
def keys(self): ...
|
|
345
|
-
def path_from_id(self): ...
|
|
346
|
-
def path_resolve(self): ...
|
|
347
|
-
def poll(self, context): ...
|
|
348
|
-
def pop(self): ...
|
|
349
|
-
def prepend(self, draw_func): ...
|
|
350
|
-
def property_overridable_library_set(self): ...
|
|
351
|
-
def property_unset(self): ...
|
|
352
|
-
def remove(self, draw_func): ...
|
|
353
|
-
def type_recast(self): ...
|
|
354
|
-
def values(self): ...
|
|
355
|
-
|
|
356
|
-
class PHYSICS_PT_rigid_body_constraint_override_iterations(
|
|
357
|
-
PHYSICS_PT_rigidbody_constraint_panel, bpy_types.Panel, bpy_types._GenericUI
|
|
358
|
-
):
|
|
359
654
|
COMPAT_ENGINES: typing.Any
|
|
655
|
+
""" """
|
|
656
|
+
|
|
360
657
|
bl_context: typing.Any
|
|
658
|
+
""" """
|
|
659
|
+
|
|
361
660
|
bl_label: typing.Any
|
|
661
|
+
""" """
|
|
662
|
+
|
|
362
663
|
bl_parent_id: typing.Any
|
|
664
|
+
""" """
|
|
665
|
+
|
|
363
666
|
bl_region_type: typing.Any
|
|
667
|
+
""" """
|
|
668
|
+
|
|
364
669
|
bl_rna: typing.Any
|
|
670
|
+
""" """
|
|
671
|
+
|
|
365
672
|
bl_space_type: typing.Any
|
|
673
|
+
""" """
|
|
674
|
+
|
|
366
675
|
id_data: typing.Any
|
|
676
|
+
""" """
|
|
677
|
+
|
|
678
|
+
def append(self, draw_func):
|
|
679
|
+
"""
|
|
680
|
+
|
|
681
|
+
:param draw_func:
|
|
682
|
+
"""
|
|
683
|
+
...
|
|
684
|
+
|
|
685
|
+
def as_pointer(self):
|
|
686
|
+
""" """
|
|
687
|
+
...
|
|
688
|
+
|
|
689
|
+
def bl_rna_get_subclass(self):
|
|
690
|
+
""" """
|
|
691
|
+
...
|
|
692
|
+
|
|
693
|
+
def bl_rna_get_subclass_py(self):
|
|
694
|
+
""" """
|
|
695
|
+
...
|
|
696
|
+
|
|
697
|
+
def draw(self, _context):
|
|
698
|
+
"""
|
|
699
|
+
|
|
700
|
+
:param _context:
|
|
701
|
+
"""
|
|
702
|
+
...
|
|
703
|
+
|
|
704
|
+
def driver_add(self):
|
|
705
|
+
""" """
|
|
706
|
+
...
|
|
707
|
+
|
|
708
|
+
def driver_remove(self):
|
|
709
|
+
""" """
|
|
710
|
+
...
|
|
711
|
+
|
|
712
|
+
def get(self):
|
|
713
|
+
""" """
|
|
714
|
+
...
|
|
715
|
+
|
|
716
|
+
def id_properties_clear(self):
|
|
717
|
+
""" """
|
|
718
|
+
...
|
|
719
|
+
|
|
720
|
+
def id_properties_ensure(self):
|
|
721
|
+
""" """
|
|
722
|
+
...
|
|
723
|
+
|
|
724
|
+
def id_properties_ui(self):
|
|
725
|
+
""" """
|
|
726
|
+
...
|
|
727
|
+
|
|
728
|
+
def is_extended(self):
|
|
729
|
+
""" """
|
|
730
|
+
...
|
|
731
|
+
|
|
732
|
+
def is_property_hidden(self):
|
|
733
|
+
""" """
|
|
734
|
+
...
|
|
735
|
+
|
|
736
|
+
def is_property_overridable_library(self):
|
|
737
|
+
""" """
|
|
738
|
+
...
|
|
739
|
+
|
|
740
|
+
def is_property_readonly(self):
|
|
741
|
+
""" """
|
|
742
|
+
...
|
|
743
|
+
|
|
744
|
+
def is_property_set(self):
|
|
745
|
+
""" """
|
|
746
|
+
...
|
|
747
|
+
|
|
748
|
+
def items(self):
|
|
749
|
+
""" """
|
|
750
|
+
...
|
|
751
|
+
|
|
752
|
+
def keyframe_delete(self):
|
|
753
|
+
""" """
|
|
754
|
+
...
|
|
755
|
+
|
|
756
|
+
def keyframe_insert(self):
|
|
757
|
+
""" """
|
|
758
|
+
...
|
|
759
|
+
|
|
760
|
+
def keys(self):
|
|
761
|
+
""" """
|
|
762
|
+
...
|
|
763
|
+
|
|
764
|
+
def path_from_id(self):
|
|
765
|
+
""" """
|
|
766
|
+
...
|
|
767
|
+
|
|
768
|
+
def path_resolve(self):
|
|
769
|
+
""" """
|
|
770
|
+
...
|
|
771
|
+
|
|
772
|
+
def poll(self, context):
|
|
773
|
+
"""
|
|
774
|
+
|
|
775
|
+
:param context:
|
|
776
|
+
"""
|
|
777
|
+
...
|
|
778
|
+
|
|
779
|
+
def pop(self):
|
|
780
|
+
""" """
|
|
781
|
+
...
|
|
782
|
+
|
|
783
|
+
def prepend(self, draw_func):
|
|
784
|
+
"""
|
|
785
|
+
|
|
786
|
+
:param draw_func:
|
|
787
|
+
"""
|
|
788
|
+
...
|
|
789
|
+
|
|
790
|
+
def property_overridable_library_set(self):
|
|
791
|
+
""" """
|
|
792
|
+
...
|
|
793
|
+
|
|
794
|
+
def property_unset(self):
|
|
795
|
+
""" """
|
|
796
|
+
...
|
|
797
|
+
|
|
798
|
+
def remove(self, draw_func):
|
|
799
|
+
"""
|
|
800
|
+
|
|
801
|
+
:param draw_func:
|
|
802
|
+
"""
|
|
803
|
+
...
|
|
804
|
+
|
|
805
|
+
def type_recast(self):
|
|
806
|
+
""" """
|
|
807
|
+
...
|
|
808
|
+
|
|
809
|
+
def values(self):
|
|
810
|
+
""" """
|
|
811
|
+
...
|
|
812
|
+
|
|
813
|
+
class PHYSICS_PT_rigid_body_constraint_motor_angular(bpy_types._GenericUI):
|
|
814
|
+
""" """
|
|
367
815
|
|
|
368
|
-
def append(self, draw_func): ...
|
|
369
|
-
def as_pointer(self): ...
|
|
370
|
-
def bl_rna_get_subclass(self): ...
|
|
371
|
-
def bl_rna_get_subclass_py(self): ...
|
|
372
|
-
def draw(self, context): ...
|
|
373
|
-
def draw_header(self, context): ...
|
|
374
|
-
def driver_add(self): ...
|
|
375
|
-
def driver_remove(self): ...
|
|
376
|
-
def get(self): ...
|
|
377
|
-
def id_properties_clear(self): ...
|
|
378
|
-
def id_properties_ensure(self): ...
|
|
379
|
-
def id_properties_ui(self): ...
|
|
380
|
-
def is_extended(self): ...
|
|
381
|
-
def is_property_hidden(self): ...
|
|
382
|
-
def is_property_overridable_library(self): ...
|
|
383
|
-
def is_property_readonly(self): ...
|
|
384
|
-
def is_property_set(self): ...
|
|
385
|
-
def items(self): ...
|
|
386
|
-
def keyframe_delete(self): ...
|
|
387
|
-
def keyframe_insert(self): ...
|
|
388
|
-
def keys(self): ...
|
|
389
|
-
def path_from_id(self): ...
|
|
390
|
-
def path_resolve(self): ...
|
|
391
|
-
def poll(self, context): ...
|
|
392
|
-
def pop(self): ...
|
|
393
|
-
def prepend(self, draw_func): ...
|
|
394
|
-
def property_overridable_library_set(self): ...
|
|
395
|
-
def property_unset(self): ...
|
|
396
|
-
def remove(self, draw_func): ...
|
|
397
|
-
def type_recast(self): ...
|
|
398
|
-
def values(self): ...
|
|
399
|
-
|
|
400
|
-
class PHYSICS_PT_rigid_body_constraint_settings(
|
|
401
|
-
PHYSICS_PT_rigidbody_constraint_panel, bpy_types.Panel, bpy_types._GenericUI
|
|
402
|
-
):
|
|
403
816
|
COMPAT_ENGINES: typing.Any
|
|
817
|
+
""" """
|
|
818
|
+
|
|
404
819
|
bl_context: typing.Any
|
|
820
|
+
""" """
|
|
821
|
+
|
|
405
822
|
bl_label: typing.Any
|
|
823
|
+
""" """
|
|
824
|
+
|
|
406
825
|
bl_parent_id: typing.Any
|
|
826
|
+
""" """
|
|
827
|
+
|
|
407
828
|
bl_region_type: typing.Any
|
|
829
|
+
""" """
|
|
830
|
+
|
|
408
831
|
bl_rna: typing.Any
|
|
832
|
+
""" """
|
|
833
|
+
|
|
409
834
|
bl_space_type: typing.Any
|
|
835
|
+
""" """
|
|
836
|
+
|
|
410
837
|
id_data: typing.Any
|
|
838
|
+
""" """
|
|
839
|
+
|
|
840
|
+
def append(self, draw_func):
|
|
841
|
+
"""
|
|
842
|
+
|
|
843
|
+
:param draw_func:
|
|
844
|
+
"""
|
|
845
|
+
...
|
|
846
|
+
|
|
847
|
+
def as_pointer(self):
|
|
848
|
+
""" """
|
|
849
|
+
...
|
|
850
|
+
|
|
851
|
+
def bl_rna_get_subclass(self):
|
|
852
|
+
""" """
|
|
853
|
+
...
|
|
854
|
+
|
|
855
|
+
def bl_rna_get_subclass_py(self):
|
|
856
|
+
""" """
|
|
857
|
+
...
|
|
858
|
+
|
|
859
|
+
def draw(self, context):
|
|
860
|
+
"""
|
|
861
|
+
|
|
862
|
+
:param context:
|
|
863
|
+
"""
|
|
864
|
+
...
|
|
865
|
+
|
|
866
|
+
def draw_header(self, context):
|
|
867
|
+
"""
|
|
868
|
+
|
|
869
|
+
:param context:
|
|
870
|
+
"""
|
|
871
|
+
...
|
|
872
|
+
|
|
873
|
+
def driver_add(self):
|
|
874
|
+
""" """
|
|
875
|
+
...
|
|
876
|
+
|
|
877
|
+
def driver_remove(self):
|
|
878
|
+
""" """
|
|
879
|
+
...
|
|
880
|
+
|
|
881
|
+
def get(self):
|
|
882
|
+
""" """
|
|
883
|
+
...
|
|
884
|
+
|
|
885
|
+
def id_properties_clear(self):
|
|
886
|
+
""" """
|
|
887
|
+
...
|
|
888
|
+
|
|
889
|
+
def id_properties_ensure(self):
|
|
890
|
+
""" """
|
|
891
|
+
...
|
|
892
|
+
|
|
893
|
+
def id_properties_ui(self):
|
|
894
|
+
""" """
|
|
895
|
+
...
|
|
896
|
+
|
|
897
|
+
def is_extended(self):
|
|
898
|
+
""" """
|
|
899
|
+
...
|
|
900
|
+
|
|
901
|
+
def is_property_hidden(self):
|
|
902
|
+
""" """
|
|
903
|
+
...
|
|
904
|
+
|
|
905
|
+
def is_property_overridable_library(self):
|
|
906
|
+
""" """
|
|
907
|
+
...
|
|
908
|
+
|
|
909
|
+
def is_property_readonly(self):
|
|
910
|
+
""" """
|
|
911
|
+
...
|
|
912
|
+
|
|
913
|
+
def is_property_set(self):
|
|
914
|
+
""" """
|
|
915
|
+
...
|
|
916
|
+
|
|
917
|
+
def items(self):
|
|
918
|
+
""" """
|
|
919
|
+
...
|
|
920
|
+
|
|
921
|
+
def keyframe_delete(self):
|
|
922
|
+
""" """
|
|
923
|
+
...
|
|
924
|
+
|
|
925
|
+
def keyframe_insert(self):
|
|
926
|
+
""" """
|
|
927
|
+
...
|
|
928
|
+
|
|
929
|
+
def keys(self):
|
|
930
|
+
""" """
|
|
931
|
+
...
|
|
932
|
+
|
|
933
|
+
def path_from_id(self):
|
|
934
|
+
""" """
|
|
935
|
+
...
|
|
936
|
+
|
|
937
|
+
def path_resolve(self):
|
|
938
|
+
""" """
|
|
939
|
+
...
|
|
940
|
+
|
|
941
|
+
def poll(self, context):
|
|
942
|
+
"""
|
|
943
|
+
|
|
944
|
+
:param context:
|
|
945
|
+
"""
|
|
946
|
+
...
|
|
947
|
+
|
|
948
|
+
def pop(self):
|
|
949
|
+
""" """
|
|
950
|
+
...
|
|
951
|
+
|
|
952
|
+
def prepend(self, draw_func):
|
|
953
|
+
"""
|
|
954
|
+
|
|
955
|
+
:param draw_func:
|
|
956
|
+
"""
|
|
957
|
+
...
|
|
958
|
+
|
|
959
|
+
def property_overridable_library_set(self):
|
|
960
|
+
""" """
|
|
961
|
+
...
|
|
962
|
+
|
|
963
|
+
def property_unset(self):
|
|
964
|
+
""" """
|
|
965
|
+
...
|
|
966
|
+
|
|
967
|
+
def remove(self, draw_func):
|
|
968
|
+
"""
|
|
969
|
+
|
|
970
|
+
:param draw_func:
|
|
971
|
+
"""
|
|
972
|
+
...
|
|
973
|
+
|
|
974
|
+
def type_recast(self):
|
|
975
|
+
""" """
|
|
976
|
+
...
|
|
977
|
+
|
|
978
|
+
def values(self):
|
|
979
|
+
""" """
|
|
980
|
+
...
|
|
981
|
+
|
|
982
|
+
class PHYSICS_PT_rigid_body_constraint_motor_linear(bpy_types._GenericUI):
|
|
983
|
+
""" """
|
|
984
|
+
|
|
985
|
+
COMPAT_ENGINES: typing.Any
|
|
986
|
+
""" """
|
|
987
|
+
|
|
988
|
+
bl_context: typing.Any
|
|
989
|
+
""" """
|
|
990
|
+
|
|
991
|
+
bl_label: typing.Any
|
|
992
|
+
""" """
|
|
993
|
+
|
|
994
|
+
bl_parent_id: typing.Any
|
|
995
|
+
""" """
|
|
996
|
+
|
|
997
|
+
bl_region_type: typing.Any
|
|
998
|
+
""" """
|
|
999
|
+
|
|
1000
|
+
bl_rna: typing.Any
|
|
1001
|
+
""" """
|
|
1002
|
+
|
|
1003
|
+
bl_space_type: typing.Any
|
|
1004
|
+
""" """
|
|
1005
|
+
|
|
1006
|
+
id_data: typing.Any
|
|
1007
|
+
""" """
|
|
1008
|
+
|
|
1009
|
+
def append(self, draw_func):
|
|
1010
|
+
"""
|
|
1011
|
+
|
|
1012
|
+
:param draw_func:
|
|
1013
|
+
"""
|
|
1014
|
+
...
|
|
1015
|
+
|
|
1016
|
+
def as_pointer(self):
|
|
1017
|
+
""" """
|
|
1018
|
+
...
|
|
1019
|
+
|
|
1020
|
+
def bl_rna_get_subclass(self):
|
|
1021
|
+
""" """
|
|
1022
|
+
...
|
|
1023
|
+
|
|
1024
|
+
def bl_rna_get_subclass_py(self):
|
|
1025
|
+
""" """
|
|
1026
|
+
...
|
|
1027
|
+
|
|
1028
|
+
def draw(self, context):
|
|
1029
|
+
"""
|
|
1030
|
+
|
|
1031
|
+
:param context:
|
|
1032
|
+
"""
|
|
1033
|
+
...
|
|
1034
|
+
|
|
1035
|
+
def draw_header(self, context):
|
|
1036
|
+
"""
|
|
1037
|
+
|
|
1038
|
+
:param context:
|
|
1039
|
+
"""
|
|
1040
|
+
...
|
|
1041
|
+
|
|
1042
|
+
def driver_add(self):
|
|
1043
|
+
""" """
|
|
1044
|
+
...
|
|
1045
|
+
|
|
1046
|
+
def driver_remove(self):
|
|
1047
|
+
""" """
|
|
1048
|
+
...
|
|
1049
|
+
|
|
1050
|
+
def get(self):
|
|
1051
|
+
""" """
|
|
1052
|
+
...
|
|
1053
|
+
|
|
1054
|
+
def id_properties_clear(self):
|
|
1055
|
+
""" """
|
|
1056
|
+
...
|
|
1057
|
+
|
|
1058
|
+
def id_properties_ensure(self):
|
|
1059
|
+
""" """
|
|
1060
|
+
...
|
|
1061
|
+
|
|
1062
|
+
def id_properties_ui(self):
|
|
1063
|
+
""" """
|
|
1064
|
+
...
|
|
1065
|
+
|
|
1066
|
+
def is_extended(self):
|
|
1067
|
+
""" """
|
|
1068
|
+
...
|
|
1069
|
+
|
|
1070
|
+
def is_property_hidden(self):
|
|
1071
|
+
""" """
|
|
1072
|
+
...
|
|
1073
|
+
|
|
1074
|
+
def is_property_overridable_library(self):
|
|
1075
|
+
""" """
|
|
1076
|
+
...
|
|
1077
|
+
|
|
1078
|
+
def is_property_readonly(self):
|
|
1079
|
+
""" """
|
|
1080
|
+
...
|
|
1081
|
+
|
|
1082
|
+
def is_property_set(self):
|
|
1083
|
+
""" """
|
|
1084
|
+
...
|
|
1085
|
+
|
|
1086
|
+
def items(self):
|
|
1087
|
+
""" """
|
|
1088
|
+
...
|
|
1089
|
+
|
|
1090
|
+
def keyframe_delete(self):
|
|
1091
|
+
""" """
|
|
1092
|
+
...
|
|
1093
|
+
|
|
1094
|
+
def keyframe_insert(self):
|
|
1095
|
+
""" """
|
|
1096
|
+
...
|
|
1097
|
+
|
|
1098
|
+
def keys(self):
|
|
1099
|
+
""" """
|
|
1100
|
+
...
|
|
1101
|
+
|
|
1102
|
+
def path_from_id(self):
|
|
1103
|
+
""" """
|
|
1104
|
+
...
|
|
1105
|
+
|
|
1106
|
+
def path_resolve(self):
|
|
1107
|
+
""" """
|
|
1108
|
+
...
|
|
1109
|
+
|
|
1110
|
+
def poll(self, context):
|
|
1111
|
+
"""
|
|
1112
|
+
|
|
1113
|
+
:param context:
|
|
1114
|
+
"""
|
|
1115
|
+
...
|
|
1116
|
+
|
|
1117
|
+
def pop(self):
|
|
1118
|
+
""" """
|
|
1119
|
+
...
|
|
1120
|
+
|
|
1121
|
+
def prepend(self, draw_func):
|
|
1122
|
+
"""
|
|
1123
|
+
|
|
1124
|
+
:param draw_func:
|
|
1125
|
+
"""
|
|
1126
|
+
...
|
|
1127
|
+
|
|
1128
|
+
def property_overridable_library_set(self):
|
|
1129
|
+
""" """
|
|
1130
|
+
...
|
|
1131
|
+
|
|
1132
|
+
def property_unset(self):
|
|
1133
|
+
""" """
|
|
1134
|
+
...
|
|
1135
|
+
|
|
1136
|
+
def remove(self, draw_func):
|
|
1137
|
+
"""
|
|
1138
|
+
|
|
1139
|
+
:param draw_func:
|
|
1140
|
+
"""
|
|
1141
|
+
...
|
|
1142
|
+
|
|
1143
|
+
def type_recast(self):
|
|
1144
|
+
""" """
|
|
1145
|
+
...
|
|
1146
|
+
|
|
1147
|
+
def values(self):
|
|
1148
|
+
""" """
|
|
1149
|
+
...
|
|
1150
|
+
|
|
1151
|
+
class PHYSICS_PT_rigid_body_constraint_objects(bpy_types._GenericUI):
|
|
1152
|
+
""" """
|
|
1153
|
+
|
|
1154
|
+
COMPAT_ENGINES: typing.Any
|
|
1155
|
+
""" """
|
|
1156
|
+
|
|
1157
|
+
bl_context: typing.Any
|
|
1158
|
+
""" """
|
|
1159
|
+
|
|
1160
|
+
bl_label: typing.Any
|
|
1161
|
+
""" """
|
|
1162
|
+
|
|
1163
|
+
bl_parent_id: typing.Any
|
|
1164
|
+
""" """
|
|
1165
|
+
|
|
1166
|
+
bl_region_type: typing.Any
|
|
1167
|
+
""" """
|
|
1168
|
+
|
|
1169
|
+
bl_rna: typing.Any
|
|
1170
|
+
""" """
|
|
1171
|
+
|
|
1172
|
+
bl_space_type: typing.Any
|
|
1173
|
+
""" """
|
|
1174
|
+
|
|
1175
|
+
id_data: typing.Any
|
|
1176
|
+
""" """
|
|
1177
|
+
|
|
1178
|
+
def append(self, draw_func):
|
|
1179
|
+
"""
|
|
1180
|
+
|
|
1181
|
+
:param draw_func:
|
|
1182
|
+
"""
|
|
1183
|
+
...
|
|
1184
|
+
|
|
1185
|
+
def as_pointer(self):
|
|
1186
|
+
""" """
|
|
1187
|
+
...
|
|
1188
|
+
|
|
1189
|
+
def bl_rna_get_subclass(self):
|
|
1190
|
+
""" """
|
|
1191
|
+
...
|
|
1192
|
+
|
|
1193
|
+
def bl_rna_get_subclass_py(self):
|
|
1194
|
+
""" """
|
|
1195
|
+
...
|
|
1196
|
+
|
|
1197
|
+
def draw(self, context):
|
|
1198
|
+
"""
|
|
1199
|
+
|
|
1200
|
+
:param context:
|
|
1201
|
+
"""
|
|
1202
|
+
...
|
|
1203
|
+
|
|
1204
|
+
def driver_add(self):
|
|
1205
|
+
""" """
|
|
1206
|
+
...
|
|
1207
|
+
|
|
1208
|
+
def driver_remove(self):
|
|
1209
|
+
""" """
|
|
1210
|
+
...
|
|
1211
|
+
|
|
1212
|
+
def get(self):
|
|
1213
|
+
""" """
|
|
1214
|
+
...
|
|
1215
|
+
|
|
1216
|
+
def id_properties_clear(self):
|
|
1217
|
+
""" """
|
|
1218
|
+
...
|
|
1219
|
+
|
|
1220
|
+
def id_properties_ensure(self):
|
|
1221
|
+
""" """
|
|
1222
|
+
...
|
|
1223
|
+
|
|
1224
|
+
def id_properties_ui(self):
|
|
1225
|
+
""" """
|
|
1226
|
+
...
|
|
1227
|
+
|
|
1228
|
+
def is_extended(self):
|
|
1229
|
+
""" """
|
|
1230
|
+
...
|
|
1231
|
+
|
|
1232
|
+
def is_property_hidden(self):
|
|
1233
|
+
""" """
|
|
1234
|
+
...
|
|
1235
|
+
|
|
1236
|
+
def is_property_overridable_library(self):
|
|
1237
|
+
""" """
|
|
1238
|
+
...
|
|
1239
|
+
|
|
1240
|
+
def is_property_readonly(self):
|
|
1241
|
+
""" """
|
|
1242
|
+
...
|
|
1243
|
+
|
|
1244
|
+
def is_property_set(self):
|
|
1245
|
+
""" """
|
|
1246
|
+
...
|
|
1247
|
+
|
|
1248
|
+
def items(self):
|
|
1249
|
+
""" """
|
|
1250
|
+
...
|
|
1251
|
+
|
|
1252
|
+
def keyframe_delete(self):
|
|
1253
|
+
""" """
|
|
1254
|
+
...
|
|
1255
|
+
|
|
1256
|
+
def keyframe_insert(self):
|
|
1257
|
+
""" """
|
|
1258
|
+
...
|
|
1259
|
+
|
|
1260
|
+
def keys(self):
|
|
1261
|
+
""" """
|
|
1262
|
+
...
|
|
1263
|
+
|
|
1264
|
+
def path_from_id(self):
|
|
1265
|
+
""" """
|
|
1266
|
+
...
|
|
1267
|
+
|
|
1268
|
+
def path_resolve(self):
|
|
1269
|
+
""" """
|
|
1270
|
+
...
|
|
1271
|
+
|
|
1272
|
+
def poll(self, context):
|
|
1273
|
+
"""
|
|
1274
|
+
|
|
1275
|
+
:param context:
|
|
1276
|
+
"""
|
|
1277
|
+
...
|
|
1278
|
+
|
|
1279
|
+
def pop(self):
|
|
1280
|
+
""" """
|
|
1281
|
+
...
|
|
1282
|
+
|
|
1283
|
+
def prepend(self, draw_func):
|
|
1284
|
+
"""
|
|
1285
|
+
|
|
1286
|
+
:param draw_func:
|
|
1287
|
+
"""
|
|
1288
|
+
...
|
|
1289
|
+
|
|
1290
|
+
def property_overridable_library_set(self):
|
|
1291
|
+
""" """
|
|
1292
|
+
...
|
|
1293
|
+
|
|
1294
|
+
def property_unset(self):
|
|
1295
|
+
""" """
|
|
1296
|
+
...
|
|
1297
|
+
|
|
1298
|
+
def remove(self, draw_func):
|
|
1299
|
+
"""
|
|
1300
|
+
|
|
1301
|
+
:param draw_func:
|
|
1302
|
+
"""
|
|
1303
|
+
...
|
|
1304
|
+
|
|
1305
|
+
def type_recast(self):
|
|
1306
|
+
""" """
|
|
1307
|
+
...
|
|
1308
|
+
|
|
1309
|
+
def values(self):
|
|
1310
|
+
""" """
|
|
1311
|
+
...
|
|
1312
|
+
|
|
1313
|
+
class PHYSICS_PT_rigid_body_constraint_override_iterations(bpy_types._GenericUI):
|
|
1314
|
+
""" """
|
|
1315
|
+
|
|
1316
|
+
COMPAT_ENGINES: typing.Any
|
|
1317
|
+
""" """
|
|
1318
|
+
|
|
1319
|
+
bl_context: typing.Any
|
|
1320
|
+
""" """
|
|
1321
|
+
|
|
1322
|
+
bl_label: typing.Any
|
|
1323
|
+
""" """
|
|
1324
|
+
|
|
1325
|
+
bl_parent_id: typing.Any
|
|
1326
|
+
""" """
|
|
1327
|
+
|
|
1328
|
+
bl_region_type: typing.Any
|
|
1329
|
+
""" """
|
|
1330
|
+
|
|
1331
|
+
bl_rna: typing.Any
|
|
1332
|
+
""" """
|
|
1333
|
+
|
|
1334
|
+
bl_space_type: typing.Any
|
|
1335
|
+
""" """
|
|
1336
|
+
|
|
1337
|
+
id_data: typing.Any
|
|
1338
|
+
""" """
|
|
1339
|
+
|
|
1340
|
+
def append(self, draw_func):
|
|
1341
|
+
"""
|
|
1342
|
+
|
|
1343
|
+
:param draw_func:
|
|
1344
|
+
"""
|
|
1345
|
+
...
|
|
1346
|
+
|
|
1347
|
+
def as_pointer(self):
|
|
1348
|
+
""" """
|
|
1349
|
+
...
|
|
1350
|
+
|
|
1351
|
+
def bl_rna_get_subclass(self):
|
|
1352
|
+
""" """
|
|
1353
|
+
...
|
|
1354
|
+
|
|
1355
|
+
def bl_rna_get_subclass_py(self):
|
|
1356
|
+
""" """
|
|
1357
|
+
...
|
|
1358
|
+
|
|
1359
|
+
def draw(self, context):
|
|
1360
|
+
"""
|
|
1361
|
+
|
|
1362
|
+
:param context:
|
|
1363
|
+
"""
|
|
1364
|
+
...
|
|
1365
|
+
|
|
1366
|
+
def draw_header(self, context):
|
|
1367
|
+
"""
|
|
1368
|
+
|
|
1369
|
+
:param context:
|
|
1370
|
+
"""
|
|
1371
|
+
...
|
|
1372
|
+
|
|
1373
|
+
def driver_add(self):
|
|
1374
|
+
""" """
|
|
1375
|
+
...
|
|
1376
|
+
|
|
1377
|
+
def driver_remove(self):
|
|
1378
|
+
""" """
|
|
1379
|
+
...
|
|
1380
|
+
|
|
1381
|
+
def get(self):
|
|
1382
|
+
""" """
|
|
1383
|
+
...
|
|
1384
|
+
|
|
1385
|
+
def id_properties_clear(self):
|
|
1386
|
+
""" """
|
|
1387
|
+
...
|
|
1388
|
+
|
|
1389
|
+
def id_properties_ensure(self):
|
|
1390
|
+
""" """
|
|
1391
|
+
...
|
|
1392
|
+
|
|
1393
|
+
def id_properties_ui(self):
|
|
1394
|
+
""" """
|
|
1395
|
+
...
|
|
1396
|
+
|
|
1397
|
+
def is_extended(self):
|
|
1398
|
+
""" """
|
|
1399
|
+
...
|
|
1400
|
+
|
|
1401
|
+
def is_property_hidden(self):
|
|
1402
|
+
""" """
|
|
1403
|
+
...
|
|
1404
|
+
|
|
1405
|
+
def is_property_overridable_library(self):
|
|
1406
|
+
""" """
|
|
1407
|
+
...
|
|
1408
|
+
|
|
1409
|
+
def is_property_readonly(self):
|
|
1410
|
+
""" """
|
|
1411
|
+
...
|
|
1412
|
+
|
|
1413
|
+
def is_property_set(self):
|
|
1414
|
+
""" """
|
|
1415
|
+
...
|
|
1416
|
+
|
|
1417
|
+
def items(self):
|
|
1418
|
+
""" """
|
|
1419
|
+
...
|
|
1420
|
+
|
|
1421
|
+
def keyframe_delete(self):
|
|
1422
|
+
""" """
|
|
1423
|
+
...
|
|
1424
|
+
|
|
1425
|
+
def keyframe_insert(self):
|
|
1426
|
+
""" """
|
|
1427
|
+
...
|
|
1428
|
+
|
|
1429
|
+
def keys(self):
|
|
1430
|
+
""" """
|
|
1431
|
+
...
|
|
1432
|
+
|
|
1433
|
+
def path_from_id(self):
|
|
1434
|
+
""" """
|
|
1435
|
+
...
|
|
1436
|
+
|
|
1437
|
+
def path_resolve(self):
|
|
1438
|
+
""" """
|
|
1439
|
+
...
|
|
1440
|
+
|
|
1441
|
+
def poll(self, context):
|
|
1442
|
+
"""
|
|
1443
|
+
|
|
1444
|
+
:param context:
|
|
1445
|
+
"""
|
|
1446
|
+
...
|
|
1447
|
+
|
|
1448
|
+
def pop(self):
|
|
1449
|
+
""" """
|
|
1450
|
+
...
|
|
1451
|
+
|
|
1452
|
+
def prepend(self, draw_func):
|
|
1453
|
+
"""
|
|
1454
|
+
|
|
1455
|
+
:param draw_func:
|
|
1456
|
+
"""
|
|
1457
|
+
...
|
|
1458
|
+
|
|
1459
|
+
def property_overridable_library_set(self):
|
|
1460
|
+
""" """
|
|
1461
|
+
...
|
|
1462
|
+
|
|
1463
|
+
def property_unset(self):
|
|
1464
|
+
""" """
|
|
1465
|
+
...
|
|
1466
|
+
|
|
1467
|
+
def remove(self, draw_func):
|
|
1468
|
+
"""
|
|
1469
|
+
|
|
1470
|
+
:param draw_func:
|
|
1471
|
+
"""
|
|
1472
|
+
...
|
|
1473
|
+
|
|
1474
|
+
def type_recast(self):
|
|
1475
|
+
""" """
|
|
1476
|
+
...
|
|
1477
|
+
|
|
1478
|
+
def values(self):
|
|
1479
|
+
""" """
|
|
1480
|
+
...
|
|
1481
|
+
|
|
1482
|
+
class PHYSICS_PT_rigid_body_constraint_settings(bpy_types._GenericUI):
|
|
1483
|
+
""" """
|
|
1484
|
+
|
|
1485
|
+
COMPAT_ENGINES: typing.Any
|
|
1486
|
+
""" """
|
|
1487
|
+
|
|
1488
|
+
bl_context: typing.Any
|
|
1489
|
+
""" """
|
|
1490
|
+
|
|
1491
|
+
bl_label: typing.Any
|
|
1492
|
+
""" """
|
|
411
1493
|
|
|
412
|
-
def append(self, draw_func): ...
|
|
413
|
-
def as_pointer(self): ...
|
|
414
|
-
def bl_rna_get_subclass(self): ...
|
|
415
|
-
def bl_rna_get_subclass_py(self): ...
|
|
416
|
-
def draw(self, context): ...
|
|
417
|
-
def driver_add(self): ...
|
|
418
|
-
def driver_remove(self): ...
|
|
419
|
-
def get(self): ...
|
|
420
|
-
def id_properties_clear(self): ...
|
|
421
|
-
def id_properties_ensure(self): ...
|
|
422
|
-
def id_properties_ui(self): ...
|
|
423
|
-
def is_extended(self): ...
|
|
424
|
-
def is_property_hidden(self): ...
|
|
425
|
-
def is_property_overridable_library(self): ...
|
|
426
|
-
def is_property_readonly(self): ...
|
|
427
|
-
def is_property_set(self): ...
|
|
428
|
-
def items(self): ...
|
|
429
|
-
def keyframe_delete(self): ...
|
|
430
|
-
def keyframe_insert(self): ...
|
|
431
|
-
def keys(self): ...
|
|
432
|
-
def path_from_id(self): ...
|
|
433
|
-
def path_resolve(self): ...
|
|
434
|
-
def poll(self, context): ...
|
|
435
|
-
def pop(self): ...
|
|
436
|
-
def prepend(self, draw_func): ...
|
|
437
|
-
def property_overridable_library_set(self): ...
|
|
438
|
-
def property_unset(self): ...
|
|
439
|
-
def remove(self, draw_func): ...
|
|
440
|
-
def type_recast(self): ...
|
|
441
|
-
def values(self): ...
|
|
442
|
-
|
|
443
|
-
class PHYSICS_PT_rigid_body_constraint_springs(
|
|
444
|
-
PHYSICS_PT_rigidbody_constraint_panel, bpy_types.Panel, bpy_types._GenericUI
|
|
445
|
-
):
|
|
446
|
-
COMPAT_ENGINES: typing.Any
|
|
447
|
-
bl_context: typing.Any
|
|
448
|
-
bl_label: typing.Any
|
|
449
1494
|
bl_parent_id: typing.Any
|
|
1495
|
+
""" """
|
|
1496
|
+
|
|
450
1497
|
bl_region_type: typing.Any
|
|
1498
|
+
""" """
|
|
1499
|
+
|
|
451
1500
|
bl_rna: typing.Any
|
|
1501
|
+
""" """
|
|
1502
|
+
|
|
452
1503
|
bl_space_type: typing.Any
|
|
1504
|
+
""" """
|
|
1505
|
+
|
|
453
1506
|
id_data: typing.Any
|
|
1507
|
+
""" """
|
|
1508
|
+
|
|
1509
|
+
def append(self, draw_func):
|
|
1510
|
+
"""
|
|
1511
|
+
|
|
1512
|
+
:param draw_func:
|
|
1513
|
+
"""
|
|
1514
|
+
...
|
|
1515
|
+
|
|
1516
|
+
def as_pointer(self):
|
|
1517
|
+
""" """
|
|
1518
|
+
...
|
|
1519
|
+
|
|
1520
|
+
def bl_rna_get_subclass(self):
|
|
1521
|
+
""" """
|
|
1522
|
+
...
|
|
1523
|
+
|
|
1524
|
+
def bl_rna_get_subclass_py(self):
|
|
1525
|
+
""" """
|
|
1526
|
+
...
|
|
1527
|
+
|
|
1528
|
+
def draw(self, context):
|
|
1529
|
+
"""
|
|
1530
|
+
|
|
1531
|
+
:param context:
|
|
1532
|
+
"""
|
|
1533
|
+
...
|
|
1534
|
+
|
|
1535
|
+
def driver_add(self):
|
|
1536
|
+
""" """
|
|
1537
|
+
...
|
|
1538
|
+
|
|
1539
|
+
def driver_remove(self):
|
|
1540
|
+
""" """
|
|
1541
|
+
...
|
|
1542
|
+
|
|
1543
|
+
def get(self):
|
|
1544
|
+
""" """
|
|
1545
|
+
...
|
|
1546
|
+
|
|
1547
|
+
def id_properties_clear(self):
|
|
1548
|
+
""" """
|
|
1549
|
+
...
|
|
1550
|
+
|
|
1551
|
+
def id_properties_ensure(self):
|
|
1552
|
+
""" """
|
|
1553
|
+
...
|
|
1554
|
+
|
|
1555
|
+
def id_properties_ui(self):
|
|
1556
|
+
""" """
|
|
1557
|
+
...
|
|
1558
|
+
|
|
1559
|
+
def is_extended(self):
|
|
1560
|
+
""" """
|
|
1561
|
+
...
|
|
1562
|
+
|
|
1563
|
+
def is_property_hidden(self):
|
|
1564
|
+
""" """
|
|
1565
|
+
...
|
|
1566
|
+
|
|
1567
|
+
def is_property_overridable_library(self):
|
|
1568
|
+
""" """
|
|
1569
|
+
...
|
|
1570
|
+
|
|
1571
|
+
def is_property_readonly(self):
|
|
1572
|
+
""" """
|
|
1573
|
+
...
|
|
1574
|
+
|
|
1575
|
+
def is_property_set(self):
|
|
1576
|
+
""" """
|
|
1577
|
+
...
|
|
1578
|
+
|
|
1579
|
+
def items(self):
|
|
1580
|
+
""" """
|
|
1581
|
+
...
|
|
1582
|
+
|
|
1583
|
+
def keyframe_delete(self):
|
|
1584
|
+
""" """
|
|
1585
|
+
...
|
|
1586
|
+
|
|
1587
|
+
def keyframe_insert(self):
|
|
1588
|
+
""" """
|
|
1589
|
+
...
|
|
1590
|
+
|
|
1591
|
+
def keys(self):
|
|
1592
|
+
""" """
|
|
1593
|
+
...
|
|
1594
|
+
|
|
1595
|
+
def path_from_id(self):
|
|
1596
|
+
""" """
|
|
1597
|
+
...
|
|
1598
|
+
|
|
1599
|
+
def path_resolve(self):
|
|
1600
|
+
""" """
|
|
1601
|
+
...
|
|
1602
|
+
|
|
1603
|
+
def poll(self, context):
|
|
1604
|
+
"""
|
|
1605
|
+
|
|
1606
|
+
:param context:
|
|
1607
|
+
"""
|
|
1608
|
+
...
|
|
1609
|
+
|
|
1610
|
+
def pop(self):
|
|
1611
|
+
""" """
|
|
1612
|
+
...
|
|
1613
|
+
|
|
1614
|
+
def prepend(self, draw_func):
|
|
1615
|
+
"""
|
|
1616
|
+
|
|
1617
|
+
:param draw_func:
|
|
1618
|
+
"""
|
|
1619
|
+
...
|
|
1620
|
+
|
|
1621
|
+
def property_overridable_library_set(self):
|
|
1622
|
+
""" """
|
|
1623
|
+
...
|
|
1624
|
+
|
|
1625
|
+
def property_unset(self):
|
|
1626
|
+
""" """
|
|
1627
|
+
...
|
|
1628
|
+
|
|
1629
|
+
def remove(self, draw_func):
|
|
1630
|
+
"""
|
|
1631
|
+
|
|
1632
|
+
:param draw_func:
|
|
1633
|
+
"""
|
|
1634
|
+
...
|
|
1635
|
+
|
|
1636
|
+
def type_recast(self):
|
|
1637
|
+
""" """
|
|
1638
|
+
...
|
|
1639
|
+
|
|
1640
|
+
def values(self):
|
|
1641
|
+
""" """
|
|
1642
|
+
...
|
|
1643
|
+
|
|
1644
|
+
class PHYSICS_PT_rigid_body_constraint_springs(bpy_types._GenericUI):
|
|
1645
|
+
""" """
|
|
1646
|
+
|
|
1647
|
+
COMPAT_ENGINES: typing.Any
|
|
1648
|
+
""" """
|
|
1649
|
+
|
|
1650
|
+
bl_context: typing.Any
|
|
1651
|
+
""" """
|
|
1652
|
+
|
|
1653
|
+
bl_label: typing.Any
|
|
1654
|
+
""" """
|
|
1655
|
+
|
|
1656
|
+
bl_parent_id: typing.Any
|
|
1657
|
+
""" """
|
|
1658
|
+
|
|
1659
|
+
bl_region_type: typing.Any
|
|
1660
|
+
""" """
|
|
1661
|
+
|
|
1662
|
+
bl_rna: typing.Any
|
|
1663
|
+
""" """
|
|
1664
|
+
|
|
1665
|
+
bl_space_type: typing.Any
|
|
1666
|
+
""" """
|
|
1667
|
+
|
|
1668
|
+
id_data: typing.Any
|
|
1669
|
+
""" """
|
|
1670
|
+
|
|
1671
|
+
def append(self, draw_func):
|
|
1672
|
+
"""
|
|
1673
|
+
|
|
1674
|
+
:param draw_func:
|
|
1675
|
+
"""
|
|
1676
|
+
...
|
|
1677
|
+
|
|
1678
|
+
def as_pointer(self):
|
|
1679
|
+
""" """
|
|
1680
|
+
...
|
|
1681
|
+
|
|
1682
|
+
def bl_rna_get_subclass(self):
|
|
1683
|
+
""" """
|
|
1684
|
+
...
|
|
1685
|
+
|
|
1686
|
+
def bl_rna_get_subclass_py(self):
|
|
1687
|
+
""" """
|
|
1688
|
+
...
|
|
1689
|
+
|
|
1690
|
+
def draw(self, context):
|
|
1691
|
+
"""
|
|
1692
|
+
|
|
1693
|
+
:param context:
|
|
1694
|
+
"""
|
|
1695
|
+
...
|
|
1696
|
+
|
|
1697
|
+
def driver_add(self):
|
|
1698
|
+
""" """
|
|
1699
|
+
...
|
|
1700
|
+
|
|
1701
|
+
def driver_remove(self):
|
|
1702
|
+
""" """
|
|
1703
|
+
...
|
|
1704
|
+
|
|
1705
|
+
def get(self):
|
|
1706
|
+
""" """
|
|
1707
|
+
...
|
|
1708
|
+
|
|
1709
|
+
def id_properties_clear(self):
|
|
1710
|
+
""" """
|
|
1711
|
+
...
|
|
1712
|
+
|
|
1713
|
+
def id_properties_ensure(self):
|
|
1714
|
+
""" """
|
|
1715
|
+
...
|
|
1716
|
+
|
|
1717
|
+
def id_properties_ui(self):
|
|
1718
|
+
""" """
|
|
1719
|
+
...
|
|
1720
|
+
|
|
1721
|
+
def is_extended(self):
|
|
1722
|
+
""" """
|
|
1723
|
+
...
|
|
1724
|
+
|
|
1725
|
+
def is_property_hidden(self):
|
|
1726
|
+
""" """
|
|
1727
|
+
...
|
|
1728
|
+
|
|
1729
|
+
def is_property_overridable_library(self):
|
|
1730
|
+
""" """
|
|
1731
|
+
...
|
|
1732
|
+
|
|
1733
|
+
def is_property_readonly(self):
|
|
1734
|
+
""" """
|
|
1735
|
+
...
|
|
1736
|
+
|
|
1737
|
+
def is_property_set(self):
|
|
1738
|
+
""" """
|
|
1739
|
+
...
|
|
1740
|
+
|
|
1741
|
+
def items(self):
|
|
1742
|
+
""" """
|
|
1743
|
+
...
|
|
1744
|
+
|
|
1745
|
+
def keyframe_delete(self):
|
|
1746
|
+
""" """
|
|
1747
|
+
...
|
|
1748
|
+
|
|
1749
|
+
def keyframe_insert(self):
|
|
1750
|
+
""" """
|
|
1751
|
+
...
|
|
1752
|
+
|
|
1753
|
+
def keys(self):
|
|
1754
|
+
""" """
|
|
1755
|
+
...
|
|
1756
|
+
|
|
1757
|
+
def path_from_id(self):
|
|
1758
|
+
""" """
|
|
1759
|
+
...
|
|
1760
|
+
|
|
1761
|
+
def path_resolve(self):
|
|
1762
|
+
""" """
|
|
1763
|
+
...
|
|
1764
|
+
|
|
1765
|
+
def poll(self, context):
|
|
1766
|
+
"""
|
|
1767
|
+
|
|
1768
|
+
:param context:
|
|
1769
|
+
"""
|
|
1770
|
+
...
|
|
1771
|
+
|
|
1772
|
+
def pop(self):
|
|
1773
|
+
""" """
|
|
1774
|
+
...
|
|
1775
|
+
|
|
1776
|
+
def prepend(self, draw_func):
|
|
1777
|
+
"""
|
|
1778
|
+
|
|
1779
|
+
:param draw_func:
|
|
1780
|
+
"""
|
|
1781
|
+
...
|
|
1782
|
+
|
|
1783
|
+
def property_overridable_library_set(self):
|
|
1784
|
+
""" """
|
|
1785
|
+
...
|
|
1786
|
+
|
|
1787
|
+
def property_unset(self):
|
|
1788
|
+
""" """
|
|
1789
|
+
...
|
|
1790
|
+
|
|
1791
|
+
def remove(self, draw_func):
|
|
1792
|
+
"""
|
|
1793
|
+
|
|
1794
|
+
:param draw_func:
|
|
1795
|
+
"""
|
|
1796
|
+
...
|
|
1797
|
+
|
|
1798
|
+
def type_recast(self):
|
|
1799
|
+
""" """
|
|
1800
|
+
...
|
|
1801
|
+
|
|
1802
|
+
def values(self):
|
|
1803
|
+
""" """
|
|
1804
|
+
...
|
|
1805
|
+
|
|
1806
|
+
class PHYSICS_PT_rigid_body_constraint_springs_angular(bpy_types._GenericUI):
|
|
1807
|
+
""" """
|
|
454
1808
|
|
|
455
|
-
def append(self, draw_func): ...
|
|
456
|
-
def as_pointer(self): ...
|
|
457
|
-
def bl_rna_get_subclass(self): ...
|
|
458
|
-
def bl_rna_get_subclass_py(self): ...
|
|
459
|
-
def draw(self, context): ...
|
|
460
|
-
def driver_add(self): ...
|
|
461
|
-
def driver_remove(self): ...
|
|
462
|
-
def get(self): ...
|
|
463
|
-
def id_properties_clear(self): ...
|
|
464
|
-
def id_properties_ensure(self): ...
|
|
465
|
-
def id_properties_ui(self): ...
|
|
466
|
-
def is_extended(self): ...
|
|
467
|
-
def is_property_hidden(self): ...
|
|
468
|
-
def is_property_overridable_library(self): ...
|
|
469
|
-
def is_property_readonly(self): ...
|
|
470
|
-
def is_property_set(self): ...
|
|
471
|
-
def items(self): ...
|
|
472
|
-
def keyframe_delete(self): ...
|
|
473
|
-
def keyframe_insert(self): ...
|
|
474
|
-
def keys(self): ...
|
|
475
|
-
def path_from_id(self): ...
|
|
476
|
-
def path_resolve(self): ...
|
|
477
|
-
def poll(self, context): ...
|
|
478
|
-
def pop(self): ...
|
|
479
|
-
def prepend(self, draw_func): ...
|
|
480
|
-
def property_overridable_library_set(self): ...
|
|
481
|
-
def property_unset(self): ...
|
|
482
|
-
def remove(self, draw_func): ...
|
|
483
|
-
def type_recast(self): ...
|
|
484
|
-
def values(self): ...
|
|
485
|
-
|
|
486
|
-
class PHYSICS_PT_rigid_body_constraint_springs_angular(
|
|
487
|
-
PHYSICS_PT_rigidbody_constraint_panel, bpy_types.Panel, bpy_types._GenericUI
|
|
488
|
-
):
|
|
489
1809
|
COMPAT_ENGINES: typing.Any
|
|
1810
|
+
""" """
|
|
1811
|
+
|
|
490
1812
|
bl_context: typing.Any
|
|
1813
|
+
""" """
|
|
1814
|
+
|
|
491
1815
|
bl_label: typing.Any
|
|
1816
|
+
""" """
|
|
1817
|
+
|
|
492
1818
|
bl_parent_id: typing.Any
|
|
1819
|
+
""" """
|
|
1820
|
+
|
|
493
1821
|
bl_region_type: typing.Any
|
|
1822
|
+
""" """
|
|
1823
|
+
|
|
494
1824
|
bl_rna: typing.Any
|
|
1825
|
+
""" """
|
|
1826
|
+
|
|
495
1827
|
bl_space_type: typing.Any
|
|
1828
|
+
""" """
|
|
1829
|
+
|
|
496
1830
|
id_data: typing.Any
|
|
1831
|
+
""" """
|
|
1832
|
+
|
|
1833
|
+
def append(self, draw_func):
|
|
1834
|
+
"""
|
|
1835
|
+
|
|
1836
|
+
:param draw_func:
|
|
1837
|
+
"""
|
|
1838
|
+
...
|
|
1839
|
+
|
|
1840
|
+
def as_pointer(self):
|
|
1841
|
+
""" """
|
|
1842
|
+
...
|
|
1843
|
+
|
|
1844
|
+
def bl_rna_get_subclass(self):
|
|
1845
|
+
""" """
|
|
1846
|
+
...
|
|
1847
|
+
|
|
1848
|
+
def bl_rna_get_subclass_py(self):
|
|
1849
|
+
""" """
|
|
1850
|
+
...
|
|
1851
|
+
|
|
1852
|
+
def draw(self, context):
|
|
1853
|
+
"""
|
|
1854
|
+
|
|
1855
|
+
:param context:
|
|
1856
|
+
"""
|
|
1857
|
+
...
|
|
1858
|
+
|
|
1859
|
+
def driver_add(self):
|
|
1860
|
+
""" """
|
|
1861
|
+
...
|
|
1862
|
+
|
|
1863
|
+
def driver_remove(self):
|
|
1864
|
+
""" """
|
|
1865
|
+
...
|
|
1866
|
+
|
|
1867
|
+
def get(self):
|
|
1868
|
+
""" """
|
|
1869
|
+
...
|
|
1870
|
+
|
|
1871
|
+
def id_properties_clear(self):
|
|
1872
|
+
""" """
|
|
1873
|
+
...
|
|
1874
|
+
|
|
1875
|
+
def id_properties_ensure(self):
|
|
1876
|
+
""" """
|
|
1877
|
+
...
|
|
1878
|
+
|
|
1879
|
+
def id_properties_ui(self):
|
|
1880
|
+
""" """
|
|
1881
|
+
...
|
|
1882
|
+
|
|
1883
|
+
def is_extended(self):
|
|
1884
|
+
""" """
|
|
1885
|
+
...
|
|
1886
|
+
|
|
1887
|
+
def is_property_hidden(self):
|
|
1888
|
+
""" """
|
|
1889
|
+
...
|
|
1890
|
+
|
|
1891
|
+
def is_property_overridable_library(self):
|
|
1892
|
+
""" """
|
|
1893
|
+
...
|
|
1894
|
+
|
|
1895
|
+
def is_property_readonly(self):
|
|
1896
|
+
""" """
|
|
1897
|
+
...
|
|
1898
|
+
|
|
1899
|
+
def is_property_set(self):
|
|
1900
|
+
""" """
|
|
1901
|
+
...
|
|
1902
|
+
|
|
1903
|
+
def items(self):
|
|
1904
|
+
""" """
|
|
1905
|
+
...
|
|
1906
|
+
|
|
1907
|
+
def keyframe_delete(self):
|
|
1908
|
+
""" """
|
|
1909
|
+
...
|
|
1910
|
+
|
|
1911
|
+
def keyframe_insert(self):
|
|
1912
|
+
""" """
|
|
1913
|
+
...
|
|
1914
|
+
|
|
1915
|
+
def keys(self):
|
|
1916
|
+
""" """
|
|
1917
|
+
...
|
|
1918
|
+
|
|
1919
|
+
def path_from_id(self):
|
|
1920
|
+
""" """
|
|
1921
|
+
...
|
|
1922
|
+
|
|
1923
|
+
def path_resolve(self):
|
|
1924
|
+
""" """
|
|
1925
|
+
...
|
|
1926
|
+
|
|
1927
|
+
def poll(self, context):
|
|
1928
|
+
"""
|
|
1929
|
+
|
|
1930
|
+
:param context:
|
|
1931
|
+
"""
|
|
1932
|
+
...
|
|
1933
|
+
|
|
1934
|
+
def pop(self):
|
|
1935
|
+
""" """
|
|
1936
|
+
...
|
|
1937
|
+
|
|
1938
|
+
def prepend(self, draw_func):
|
|
1939
|
+
"""
|
|
1940
|
+
|
|
1941
|
+
:param draw_func:
|
|
1942
|
+
"""
|
|
1943
|
+
...
|
|
1944
|
+
|
|
1945
|
+
def property_overridable_library_set(self):
|
|
1946
|
+
""" """
|
|
1947
|
+
...
|
|
1948
|
+
|
|
1949
|
+
def property_unset(self):
|
|
1950
|
+
""" """
|
|
1951
|
+
...
|
|
1952
|
+
|
|
1953
|
+
def remove(self, draw_func):
|
|
1954
|
+
"""
|
|
1955
|
+
|
|
1956
|
+
:param draw_func:
|
|
1957
|
+
"""
|
|
1958
|
+
...
|
|
1959
|
+
|
|
1960
|
+
def type_recast(self):
|
|
1961
|
+
""" """
|
|
1962
|
+
...
|
|
1963
|
+
|
|
1964
|
+
def values(self):
|
|
1965
|
+
""" """
|
|
1966
|
+
...
|
|
1967
|
+
|
|
1968
|
+
class PHYSICS_PT_rigid_body_constraint_springs_linear(bpy_types._GenericUI):
|
|
1969
|
+
""" """
|
|
497
1970
|
|
|
498
|
-
def append(self, draw_func): ...
|
|
499
|
-
def as_pointer(self): ...
|
|
500
|
-
def bl_rna_get_subclass(self): ...
|
|
501
|
-
def bl_rna_get_subclass_py(self): ...
|
|
502
|
-
def draw(self, context): ...
|
|
503
|
-
def driver_add(self): ...
|
|
504
|
-
def driver_remove(self): ...
|
|
505
|
-
def get(self): ...
|
|
506
|
-
def id_properties_clear(self): ...
|
|
507
|
-
def id_properties_ensure(self): ...
|
|
508
|
-
def id_properties_ui(self): ...
|
|
509
|
-
def is_extended(self): ...
|
|
510
|
-
def is_property_hidden(self): ...
|
|
511
|
-
def is_property_overridable_library(self): ...
|
|
512
|
-
def is_property_readonly(self): ...
|
|
513
|
-
def is_property_set(self): ...
|
|
514
|
-
def items(self): ...
|
|
515
|
-
def keyframe_delete(self): ...
|
|
516
|
-
def keyframe_insert(self): ...
|
|
517
|
-
def keys(self): ...
|
|
518
|
-
def path_from_id(self): ...
|
|
519
|
-
def path_resolve(self): ...
|
|
520
|
-
def poll(self, context): ...
|
|
521
|
-
def pop(self): ...
|
|
522
|
-
def prepend(self, draw_func): ...
|
|
523
|
-
def property_overridable_library_set(self): ...
|
|
524
|
-
def property_unset(self): ...
|
|
525
|
-
def remove(self, draw_func): ...
|
|
526
|
-
def type_recast(self): ...
|
|
527
|
-
def values(self): ...
|
|
528
|
-
|
|
529
|
-
class PHYSICS_PT_rigid_body_constraint_springs_linear(
|
|
530
|
-
PHYSICS_PT_rigidbody_constraint_panel, bpy_types.Panel, bpy_types._GenericUI
|
|
531
|
-
):
|
|
532
1971
|
COMPAT_ENGINES: typing.Any
|
|
1972
|
+
""" """
|
|
1973
|
+
|
|
533
1974
|
bl_context: typing.Any
|
|
1975
|
+
""" """
|
|
1976
|
+
|
|
534
1977
|
bl_label: typing.Any
|
|
1978
|
+
""" """
|
|
1979
|
+
|
|
535
1980
|
bl_parent_id: typing.Any
|
|
1981
|
+
""" """
|
|
1982
|
+
|
|
536
1983
|
bl_region_type: typing.Any
|
|
1984
|
+
""" """
|
|
1985
|
+
|
|
537
1986
|
bl_rna: typing.Any
|
|
1987
|
+
""" """
|
|
1988
|
+
|
|
538
1989
|
bl_space_type: typing.Any
|
|
1990
|
+
""" """
|
|
1991
|
+
|
|
539
1992
|
id_data: typing.Any
|
|
1993
|
+
""" """
|
|
1994
|
+
|
|
1995
|
+
def append(self, draw_func):
|
|
1996
|
+
"""
|
|
1997
|
+
|
|
1998
|
+
:param draw_func:
|
|
1999
|
+
"""
|
|
2000
|
+
...
|
|
2001
|
+
|
|
2002
|
+
def as_pointer(self):
|
|
2003
|
+
""" """
|
|
2004
|
+
...
|
|
2005
|
+
|
|
2006
|
+
def bl_rna_get_subclass(self):
|
|
2007
|
+
""" """
|
|
2008
|
+
...
|
|
2009
|
+
|
|
2010
|
+
def bl_rna_get_subclass_py(self):
|
|
2011
|
+
""" """
|
|
2012
|
+
...
|
|
2013
|
+
|
|
2014
|
+
def draw(self, context):
|
|
2015
|
+
"""
|
|
2016
|
+
|
|
2017
|
+
:param context:
|
|
2018
|
+
"""
|
|
2019
|
+
...
|
|
2020
|
+
|
|
2021
|
+
def driver_add(self):
|
|
2022
|
+
""" """
|
|
2023
|
+
...
|
|
2024
|
+
|
|
2025
|
+
def driver_remove(self):
|
|
2026
|
+
""" """
|
|
2027
|
+
...
|
|
2028
|
+
|
|
2029
|
+
def get(self):
|
|
2030
|
+
""" """
|
|
2031
|
+
...
|
|
2032
|
+
|
|
2033
|
+
def id_properties_clear(self):
|
|
2034
|
+
""" """
|
|
2035
|
+
...
|
|
2036
|
+
|
|
2037
|
+
def id_properties_ensure(self):
|
|
2038
|
+
""" """
|
|
2039
|
+
...
|
|
2040
|
+
|
|
2041
|
+
def id_properties_ui(self):
|
|
2042
|
+
""" """
|
|
2043
|
+
...
|
|
2044
|
+
|
|
2045
|
+
def is_extended(self):
|
|
2046
|
+
""" """
|
|
2047
|
+
...
|
|
2048
|
+
|
|
2049
|
+
def is_property_hidden(self):
|
|
2050
|
+
""" """
|
|
2051
|
+
...
|
|
2052
|
+
|
|
2053
|
+
def is_property_overridable_library(self):
|
|
2054
|
+
""" """
|
|
2055
|
+
...
|
|
2056
|
+
|
|
2057
|
+
def is_property_readonly(self):
|
|
2058
|
+
""" """
|
|
2059
|
+
...
|
|
2060
|
+
|
|
2061
|
+
def is_property_set(self):
|
|
2062
|
+
""" """
|
|
2063
|
+
...
|
|
540
2064
|
|
|
541
|
-
def
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
def
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
def
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
def
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
def
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
def
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
def
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
2065
|
+
def items(self):
|
|
2066
|
+
""" """
|
|
2067
|
+
...
|
|
2068
|
+
|
|
2069
|
+
def keyframe_delete(self):
|
|
2070
|
+
""" """
|
|
2071
|
+
...
|
|
2072
|
+
|
|
2073
|
+
def keyframe_insert(self):
|
|
2074
|
+
""" """
|
|
2075
|
+
...
|
|
2076
|
+
|
|
2077
|
+
def keys(self):
|
|
2078
|
+
""" """
|
|
2079
|
+
...
|
|
2080
|
+
|
|
2081
|
+
def path_from_id(self):
|
|
2082
|
+
""" """
|
|
2083
|
+
...
|
|
2084
|
+
|
|
2085
|
+
def path_resolve(self):
|
|
2086
|
+
""" """
|
|
2087
|
+
...
|
|
2088
|
+
|
|
2089
|
+
def poll(self, context):
|
|
2090
|
+
"""
|
|
2091
|
+
|
|
2092
|
+
:param context:
|
|
2093
|
+
"""
|
|
2094
|
+
...
|
|
2095
|
+
|
|
2096
|
+
def pop(self):
|
|
2097
|
+
""" """
|
|
2098
|
+
...
|
|
2099
|
+
|
|
2100
|
+
def prepend(self, draw_func):
|
|
2101
|
+
"""
|
|
2102
|
+
|
|
2103
|
+
:param draw_func:
|
|
2104
|
+
"""
|
|
2105
|
+
...
|
|
2106
|
+
|
|
2107
|
+
def property_overridable_library_set(self):
|
|
2108
|
+
""" """
|
|
2109
|
+
...
|
|
2110
|
+
|
|
2111
|
+
def property_unset(self):
|
|
2112
|
+
""" """
|
|
2113
|
+
...
|
|
2114
|
+
|
|
2115
|
+
def remove(self, draw_func):
|
|
2116
|
+
"""
|
|
2117
|
+
|
|
2118
|
+
:param draw_func:
|
|
2119
|
+
"""
|
|
2120
|
+
...
|
|
2121
|
+
|
|
2122
|
+
def type_recast(self):
|
|
2123
|
+
""" """
|
|
2124
|
+
...
|
|
2125
|
+
|
|
2126
|
+
def values(self):
|
|
2127
|
+
""" """
|
|
2128
|
+
...
|
|
2129
|
+
|
|
2130
|
+
class PHYSICS_PT_rigidbody_constraint_panel:
|
|
2131
|
+
""" """
|
|
2132
|
+
|
|
2133
|
+
bl_context: typing.Any
|
|
2134
|
+
""" """
|
|
2135
|
+
|
|
2136
|
+
bl_region_type: typing.Any
|
|
2137
|
+
""" """
|
|
2138
|
+
|
|
2139
|
+
bl_space_type: typing.Any
|
|
2140
|
+
""" """
|