fake-bpy-module 20250612__py3-none-any.whl → 20260118__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.
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_calltip/__init__.pyi +0 -13
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_import/__init__.pyi +0 -5
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_namespace/__init__.pyi +0 -11
- {bl_console_utils → _bl_console_utils}/autocomplete/intellisense/__init__.pyi +0 -10
- {bl_i18n_utils → _bl_i18n_utils}/__init__.pyi +1 -0
- {bl_i18n_utils → _bl_i18n_utils}/bl_extract_messages/__init__.pyi +1 -0
- {bl_i18n_utils → _bl_i18n_utils}/settings/__init__.pyi +3 -1
- {bl_i18n_utils → _bl_i18n_utils}/utils/__init__.pyi +4 -4
- _bl_i18n_utils/utils_spell_check/__init__.pyi +22 -0
- {bl_ui_utils → _bl_ui_utils}/__init__.pyi +1 -0
- _blendfile_header/__init__.pyi +48 -0
- _bpy_internal/__init__.pyi +4 -1
- _bpy_internal/assets/__init__.pyi +5 -0
- _bpy_internal/assets/remote_library_listing/__init__.pyi +5 -0
- _bpy_internal/assets/remote_library_listing/blender_asset_library_openapi/__init__.pyi +13 -0
- _bpy_internal/disk_file_hash_service/__init__.pyi +19 -0
- _bpy_internal/disk_file_hash_service/backend_sqlite/__init__.pyi +48 -0
- _bpy_internal/disk_file_hash_service/hash_service/__init__.pyi +64 -0
- _bpy_internal/disk_file_hash_service/types/__init__.pyi +53 -0
- _bpy_internal/extensions/wheel_manager/__init__.pyi +1 -1
- _bpy_internal/filesystem/__init__.pyi +5 -0
- _bpy_internal/filesystem/locking/__init__.pyi +28 -0
- _bpy_internal/grease_pencil/stroke/__init__.pyi +2 -2
- _bpy_internal/platform/__init__.pyi +5 -0
- _bpy_types/__init__.pyi +1592 -0
- {keyingsets_utils → _keyingsets_utils}/__init__.pyi +2 -0
- {rna_info → _rna_info}/__init__.pyi +4 -2
- addon_utils/__init__.pyi +0 -13
- aud/__init__.pyi +122 -145
- bl_app_templates_system/Storyboarding/__init__.pyi +11 -0
- bl_app_templates_system/__init__.pyi +5 -0
- bl_app_templates_system/py.typed +0 -0
- bl_math/__init__.pyi +3 -13
- bl_operators/__init__.pyi +1 -0
- bl_operators/add_mesh_torus/__init__.pyi +2 -3
- bl_operators/anim/__init__.pyi +62 -38
- bl_operators/assets/__init__.pyi +4 -9
- bl_operators/bone_selection_sets/__init__.pyi +15 -42
- bl_operators/clip/__init__.pyi +12 -31
- bl_operators/connect_to_output/__init__.pyi +2 -3
- bl_operators/console/__init__.pyi +6 -15
- bl_operators/constraint/__init__.pyi +6 -13
- bl_operators/copy_global_transform/__init__.pyi +261 -0
- bl_operators/file/__init__.pyi +6 -11
- bl_operators/freestyle/__init__.pyi +5 -12
- bl_operators/geometry_nodes/__init__.pyi +5 -12
- bl_operators/grease_pencil/__init__.pyi +2 -3
- bl_operators/image/__init__.pyi +6 -15
- bl_operators/image_as_planes/__init__.pyi +3 -10
- bl_operators/mesh/__init__.pyi +3 -49
- bl_operators/node/__init__.pyi +294 -73
- bl_operators/object/__init__.pyi +17 -53
- bl_operators/object_align/__init__.pyi +2 -3
- bl_operators/object_quick_effects/__init__.pyi +5 -12
- bl_operators/object_randomize_transform/__init__.pyi +2 -3
- bl_operators/presets/__init__.pyi +27 -76
- bl_operators/rigidbody/__init__.pyi +4 -9
- bl_operators/screen_play_rendered_anim/__init__.pyi +2 -3
- bl_operators/sequencer/__init__.pyi +12 -27
- bl_operators/spreadsheet/__init__.pyi +2 -3
- bl_operators/userpref/__init__.pyi +26 -75
- bl_operators/uvcalc_follow_active/__init__.pyi +3 -4
- bl_operators/uvcalc_lightmap/__init__.pyi +3 -4
- bl_operators/uvcalc_transform/__init__.pyi +26 -16
- bl_operators/vertexpaint_dirt/__init__.pyi +2 -3
- bl_operators/view3d/__init__.pyi +9 -24
- bl_operators/wm/__init__.pyi +48 -139
- bl_operators/world/__init__.pyi +3 -4
- bl_ui/__init__.pyi +7 -7
- bl_ui/anim/__init__.pyi +2 -3
- bl_ui/asset_shelf/__init__.pyi +2 -3
- bl_ui/generic_ui_list/__init__.pyi +4 -19
- bl_ui/node_add_menu/__init__.pyi +263 -7
- bl_ui/node_add_menu_compositor/__init__.pyi +96 -79
- bl_ui/node_add_menu_geometry/__init__.pyi +309 -270
- bl_ui/node_add_menu_shader/__init__.pyi +49 -49
- bl_ui/node_add_menu_texture/__init__.pyi +17 -62
- bl_ui/properties_collection/__init__.pyi +9 -22
- bl_ui/properties_constraint/__init__.pyi +129 -282
- bl_ui/properties_data_armature/__init__.pyi +22 -57
- bl_ui/properties_data_bone/__init__.pyi +12 -31
- bl_ui/properties_data_camera/__init__.pyi +18 -47
- bl_ui/properties_data_curve/__init__.pyi +18 -47
- bl_ui/properties_data_curves/__init__.pyi +11 -26
- bl_ui/properties_data_empty/__init__.pyi +3 -6
- bl_ui/properties_data_grease_pencil/__init__.pyi +23 -62
- bl_ui/properties_data_lattice/__init__.pyi +7 -14
- bl_ui/properties_data_light/__init__.pyi +13 -32
- bl_ui/properties_data_lightprobe/__init__.pyi +16 -43
- bl_ui/properties_data_mesh/__init__.pyi +47 -62
- bl_ui/properties_data_metaball/__init__.pyi +9 -20
- bl_ui/properties_data_modifier/__init__.pyi +22 -28
- bl_ui/properties_data_pointcloud/__init__.pyi +8 -19
- bl_ui/properties_data_shaderfx/__init__.pyi +2 -3
- bl_ui/properties_data_speaker/__init__.pyi +9 -20
- bl_ui/properties_data_volume/__init__.pyi +12 -29
- bl_ui/properties_freestyle/__init__.pyi +27 -76
- bl_ui/properties_grease_pencil_common/__init__.pyi +10 -168
- bl_ui/properties_mask_common/__init__.pyi +8 -21
- bl_ui/properties_material/__init__.pyi +26 -86
- bl_ui/properties_material_gpencil/__init__.pyi +36 -57
- bl_ui/properties_object/__init__.pyi +59 -65
- bl_ui/properties_output/__init__.pyi +21 -60
- bl_ui/properties_paint_common/__init__.pyi +30 -22
- bl_ui/properties_particle/__init__.pyi +58 -161
- bl_ui/properties_physics_cloth/__init__.pyi +15 -42
- bl_ui/properties_physics_common/__init__.pyi +2 -3
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +23 -66
- bl_ui/properties_physics_field/__init__.pyi +11 -30
- bl_ui/properties_physics_fluid/__init__.pyi +29 -84
- bl_ui/properties_physics_geometry_nodes/__init__.pyi +2 -3
- bl_ui/properties_physics_rigidbody/__init__.pyi +9 -24
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +14 -39
- bl_ui/properties_physics_softbody/__init__.pyi +16 -45
- bl_ui/properties_render/__init__.pyi +139 -197
- bl_ui/properties_scene/__init__.pyi +46 -50
- bl_ui/properties_strip/__init__.pyi +744 -0
- bl_ui/properties_strip_modifier/__init__.pyi +45 -0
- bl_ui/properties_texture/__init__.pyi +30 -83
- bl_ui/properties_view_layer/__init__.pyi +84 -39
- bl_ui/properties_workspace/__init__.pyi +6 -13
- bl_ui/properties_world/__init__.pyi +14 -35
- bl_ui/space_clip/__init__.pyi +150 -231
- bl_ui/space_console/__init__.pyi +7 -18
- bl_ui/space_dopesheet/__init__.pyi +143 -100
- bl_ui/space_filebrowser/__init__.pyi +33 -90
- bl_ui/space_graph/__init__.pyi +48 -85
- bl_ui/space_image/__init__.pyi +111 -229
- bl_ui/space_info/__init__.pyi +7 -18
- bl_ui/space_nla/__init__.pyi +44 -73
- bl_ui/space_node/__init__.pyi +161 -123
- bl_ui/space_outliner/__init__.pyi +16 -45
- bl_ui/space_properties/__init__.pyi +34 -10
- bl_ui/space_sequencer/__init__.pyi +164 -901
- bl_ui/space_spreadsheet/__init__.pyi +4 -9
- bl_ui/space_statusbar/__init__.pyi +2 -3
- bl_ui/space_text/__init__.pyi +17 -48
- bl_ui/space_time/__init__.pyi +25 -71
- bl_ui/space_toolsystem_common/__init__.pyi +2 -2
- bl_ui/space_toolsystem_toolbar/__init__.pyi +30 -7
- bl_ui/space_topbar/__init__.pyi +35 -79
- bl_ui/space_userpref/__init__.pyi +185 -321
- bl_ui/space_view3d/__init__.pyi +337 -817
- bl_ui/space_view3d_sidebar/__init__.pyi +127 -0
- bl_ui/space_view3d_toolbar/__init__.pyi +110 -880
- bl_ui/utils/__init__.pyi +0 -17
- blend_render_info/__init__.pyi +1 -0
- blf/__init__.pyi +8 -54
- bmesh/__init__.pyi +2 -9
- bmesh/geometry/__init__.pyi +1 -4
- bmesh/ops/__init__.pyi +125 -508
- bmesh/types/__init__.pyi +318 -664
- bmesh/utils/__init__.pyi +17 -43
- bpy/__init__.pyi +1 -1
- bpy/app/__init__.pyi +93 -88
- bpy/app/handlers/__init__.pyi +19 -19
- bpy/app/icons/__init__.pyi +0 -6
- bpy/app/timers/__init__.pyi +2 -7
- bpy/app/translations/__init__.pyi +8 -23
- bpy/msgbus/__init__.pyi +4 -6
- bpy/ops/action/__init__.pyi +68 -199
- bpy/ops/anim/__init__.pyi +142 -299
- bpy/ops/armature/__init__.pyi +78 -209
- bpy/ops/asset/__init__.pyi +46 -108
- bpy/ops/boid/__init__.pyi +28 -45
- bpy/ops/brush/__init__.pyi +13 -108
- bpy/ops/buttons/__init__.pyi +16 -75
- bpy/ops/cachefile/__init__.pyi +8 -65
- bpy/ops/camera/__init__.pyi +0 -11
- bpy/ops/clip/__init__.pyi +173 -471
- bpy/ops/cloth/__init__.pyi +0 -5
- bpy/ops/collection/__init__.pyi +23 -36
- bpy/ops/console/__init__.pyi +40 -98
- bpy/ops/constraint/__init__.pyi +14 -85
- bpy/ops/curve/__init__.pyi +94 -277
- bpy/ops/curves/__init__.pyi +119 -166
- bpy/ops/cycles/__init__.pyi +4 -15
- bpy/ops/dpaint/__init__.pyi +14 -24
- bpy/ops/ed/__init__.pyi +44 -92
- bpy/ops/export_anim/__init__.pyi +2 -10
- bpy/ops/export_scene/__init__.pyi +16 -170
- bpy/ops/extensions/__init__.pyi +60 -165
- bpy/ops/file/__init__.pyi +110 -246
- bpy/ops/fluid/__init__.pyi +52 -83
- bpy/ops/font/__init__.pyi +40 -144
- bpy/ops/geometry/__init__.pyi +12 -127
- bpy/ops/gizmogroup/__init__.pyi +4 -13
- bpy/ops/gpencil/__init__.pyi +22 -54
- bpy/ops/graph/__init__.pyi +92 -343
- bpy/ops/grease_pencil/__init__.pyi +218 -550
- bpy/ops/image/__init__.pyi +85 -435
- bpy/ops/import_anim/__init__.pyi +3 -17
- bpy/ops/import_curve/__init__.pyi +2 -5
- bpy/ops/import_scene/__init__.pyi +15 -49
- bpy/ops/info/__init__.pyi +16 -39
- bpy/ops/lattice/__init__.pyi +12 -36
- bpy/ops/marker/__init__.pyi +12 -51
- bpy/ops/mask/__init__.pyi +68 -193
- bpy/ops/material/__init__.pyi +18 -18
- bpy/ops/mball/__init__.pyi +4 -31
- bpy/ops/mesh/__init__.pyi +140 -967
- bpy/ops/nla/__init__.pyi +87 -206
- bpy/ops/node/__init__.pyi +714 -744
- bpy/ops/object/__init__.pyi +461 -1341
- bpy/ops/outliner/__init__.pyi +192 -376
- bpy/ops/paint/__init__.pyi +94 -319
- bpy/ops/paintcurve/__init__.pyi +20 -40
- bpy/ops/palette/__init__.pyi +14 -30
- bpy/ops/particle/__init__.pyi +86 -184
- bpy/ops/pointcloud/__init__.pyi +12 -38
- bpy/ops/pose/__init__.pyi +108 -261
- bpy/ops/poselib/__init__.pyi +32 -67
- bpy/ops/preferences/__init__.pyi +37 -187
- bpy/ops/ptcache/__init__.pyi +22 -36
- bpy/ops/render/__init__.pyi +20 -72
- bpy/ops/rigidbody/__init__.pyi +25 -63
- bpy/ops/scene/__init__.pyi +122 -181
- bpy/ops/screen/__init__.pyi +93 -221
- bpy/ops/script/__init__.pyi +4 -13
- bpy/ops/sculpt/__init__.pyi +69 -324
- bpy/ops/sculpt_curves/__init__.pyi +10 -23
- bpy/ops/sequencer/__init__.pyi +410 -730
- bpy/ops/sound/__init__.pyi +16 -114
- bpy/ops/spreadsheet/__init__.pyi +20 -37
- bpy/ops/surface/__init__.pyi +0 -48
- bpy/ops/text/__init__.pyi +112 -250
- bpy/ops/text_editor/__init__.pyi +0 -5
- bpy/ops/texture/__init__.pyi +14 -21
- bpy/ops/transform/__init__.pyi +18 -386
- bpy/ops/ui/__init__.pyi +117 -188
- bpy/ops/uilist/__init__.pyi +0 -13
- bpy/ops/uv/__init__.pyi +238 -305
- bpy/ops/view2d/__init__.pyi +16 -76
- bpy/ops/view3d/__init__.pyi +153 -377
- bpy/ops/wm/__init__.pyi +277 -1397
- bpy/ops/workspace/__init__.pyi +32 -39
- bpy/ops/world/__init__.pyi +10 -12
- bpy/path/__init__.pyi +1 -35
- bpy/props/__init__.pyi +347 -218
- bpy/stub_internal/rna_enums/__init__.pyi +142 -108
- bpy/types/__init__.pyi +77367 -101305
- bpy/utils/__init__.pyi +11 -82
- bpy/utils/previews/__init__.pyi +2 -11
- bpy/utils/units/__init__.pyi +5 -15
- bpy_extras/anim_utils/__init__.pyi +24 -16
- bpy_extras/bmesh_utils/__init__.pyi +0 -1
- bpy_extras/id_map_utils/__init__.pyi +14 -6
- bpy_extras/image_utils/__init__.pyi +2 -11
- bpy_extras/io_utils/__init__.pyi +8 -27
- bpy_extras/keyconfig_utils/__init__.pyi +1 -1
- bpy_extras/mesh_utils/__init__.pyi +0 -12
- bpy_extras/node_shader_utils/__init__.pyi +1 -9
- bpy_extras/object_utils/__init__.pyi +1 -15
- bpy_extras/view3d_utils/__init__.pyi +0 -18
- bpy_extras/wm_utils/progress_report/__init__.pyi +1 -1
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/METADATA +4 -1
- fake_bpy_module-20260118.dist-info/RECORD +385 -0
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/top_level.txt +17 -16
- freestyle/chainingiterators/__init__.pyi +5 -27
- freestyle/functions/__init__.pyi +0 -139
- freestyle/predicates/__init__.pyi +2 -53
- freestyle/shaders/__init__.pyi +15 -81
- freestyle/types/__init__.pyi +159 -799
- freestyle/utils/ContextFunctions/__init__.pyi +0 -23
- freestyle/utils/__init__.pyi +5 -11
- gpu/capabilities/__init__.pyi +0 -21
- gpu/matrix/__init__.pyi +1 -10
- gpu/platform/__init__.pyi +2 -7
- gpu/shader/__init__.pyi +26 -9
- gpu/state/__init__.pyi +60 -39
- gpu/texture/__init__.pyi +3 -5
- gpu/types/__init__.pyi +116 -184
- gpu_extras/batch/__init__.pyi +1 -5
- gpu_extras/presets/__init__.pyi +6 -8
- idprop/types/__init__.pyi +6 -6
- imbuf/__init__.pyi +3 -10
- imbuf/types/__init__.pyi +7 -21
- keyingsets_builtins/__init__.pyi +24 -67
- mathutils/__init__.pyi +241 -2207
- mathutils/bvhtree/__init__.pyi +18 -26
- mathutils/geometry/__init__.pyi +82 -132
- mathutils/interpolate/__init__.pyi +6 -5
- mathutils/kdtree/__init__.pyi +1 -11
- mathutils/noise/__init__.pyi +61 -106
- rna_prop_ui/__init__.pyi +1 -1
- bgl/__init__.pyi +0 -4256
- bpy_types/__init__.pyi +0 -30
- fake_bpy_module-20250612.dist-info/RECORD +0 -367
- {animsys_refactor → _animsys_refactor}/__init__.pyi +0 -0
- {animsys_refactor → _animsys_refactor}/py.typed +0 -0
- {bl_console_utils → _bl_console_utils}/__init__.pyi +0 -0
- {bl_console_utils → _bl_console_utils}/autocomplete/__init__.pyi +0 -0
- {bgl → _bl_console_utils}/py.typed +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/merge_po/__init__.pyi +0 -0
- {bl_console_utils → _bl_i18n_utils}/py.typed +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_cli/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_languages_menu/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_rtl/__init__.pyi +0 -0
- {bl_previews_utils → _bl_previews_utils}/__init__.pyi +0 -0
- {bl_previews_utils → _bl_previews_utils}/bl_previews_render/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_previews_utils}/py.typed +0 -0
- {bl_rna_utils → _bl_rna_utils}/__init__.pyi +0 -0
- {bl_rna_utils → _bl_rna_utils}/data_path/__init__.pyi +0 -0
- {bl_previews_utils → _bl_rna_utils}/py.typed +0 -0
- {bl_text_utils → _bl_text_utils}/__init__.pyi +0 -0
- {bl_text_utils → _bl_text_utils}/external_editor/__init__.pyi +0 -0
- {bl_rna_utils → _bl_text_utils}/py.typed +0 -0
- {bl_ui_utils → _bl_ui_utils}/layout/__init__.pyi +0 -0
- {bl_text_utils → _bl_ui_utils}/py.typed +0 -0
- {bl_ui_utils → _blendfile_header}/py.typed +0 -0
- /_bpy_internal/{freedesktop → platform/freedesktop}/__init__.pyi +0 -0
- {bpy_restrict_state → _bpy_restrict_state}/__init__.pyi +0 -0
- {bpy_restrict_state → _bpy_restrict_state}/py.typed +0 -0
- {bpy_types → _bpy_types}/py.typed +0 -0
- {console_python → _console_python}/__init__.pyi +0 -0
- {console_python → _console_python}/py.typed +0 -0
- {console_shell → _console_shell}/__init__.pyi +0 -0
- {console_shell → _console_shell}/py.typed +0 -0
- {graphviz_export → _graphviz_export}/__init__.pyi +0 -0
- {graphviz_export → _graphviz_export}/py.typed +0 -0
- {keyingsets_utils → _keyingsets_utils}/py.typed +0 -0
- {rna_info → _rna_info}/py.typed +0 -0
- {rna_xml → _rna_xml}/__init__.pyi +0 -0
- {rna_xml → _rna_xml}/py.typed +0 -0
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/WHEEL +0 -0
|
@@ -2,10 +2,11 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
|
+
import _bpy_types
|
|
5
6
|
import bpy.types
|
|
6
7
|
|
|
7
8
|
class BONE_PT_bActionConstraint(
|
|
8
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
9
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
9
10
|
):
|
|
10
11
|
bl_context: typing.Any
|
|
11
12
|
bl_label: typing.Any
|
|
@@ -19,14 +20,12 @@ class BONE_PT_bActionConstraint(
|
|
|
19
20
|
"""
|
|
20
21
|
|
|
21
22
|
:return: The RNA type or default when not found.
|
|
22
|
-
:rtype: bpy.types.Struct
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
25
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
26
26
|
"""
|
|
27
27
|
|
|
28
28
|
:return: The class or default when not found.
|
|
29
|
-
:rtype: typing.Any
|
|
30
29
|
"""
|
|
31
30
|
|
|
32
31
|
def draw(self, context) -> None:
|
|
@@ -36,7 +35,7 @@ class BONE_PT_bActionConstraint(
|
|
|
36
35
|
"""
|
|
37
36
|
|
|
38
37
|
class BONE_PT_bActionConstraint_action(
|
|
39
|
-
ConstraintButtonsSubPanel, BoneConstraintPanel,
|
|
38
|
+
ConstraintButtonsSubPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
40
39
|
):
|
|
41
40
|
bl_context: typing.Any
|
|
42
41
|
bl_label: typing.Any
|
|
@@ -50,14 +49,12 @@ class BONE_PT_bActionConstraint_action(
|
|
|
50
49
|
"""
|
|
51
50
|
|
|
52
51
|
:return: The RNA type or default when not found.
|
|
53
|
-
:rtype: bpy.types.Struct
|
|
54
52
|
"""
|
|
55
53
|
|
|
56
54
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
57
55
|
"""
|
|
58
56
|
|
|
59
57
|
:return: The class or default when not found.
|
|
60
|
-
:rtype: typing.Any
|
|
61
58
|
"""
|
|
62
59
|
|
|
63
60
|
def draw(self, context) -> None:
|
|
@@ -67,7 +64,7 @@ class BONE_PT_bActionConstraint_action(
|
|
|
67
64
|
"""
|
|
68
65
|
|
|
69
66
|
class BONE_PT_bActionConstraint_target(
|
|
70
|
-
ConstraintButtonsSubPanel, BoneConstraintPanel,
|
|
67
|
+
ConstraintButtonsSubPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
71
68
|
):
|
|
72
69
|
bl_context: typing.Any
|
|
73
70
|
bl_label: typing.Any
|
|
@@ -81,14 +78,12 @@ class BONE_PT_bActionConstraint_target(
|
|
|
81
78
|
"""
|
|
82
79
|
|
|
83
80
|
:return: The RNA type or default when not found.
|
|
84
|
-
:rtype: bpy.types.Struct
|
|
85
81
|
"""
|
|
86
82
|
|
|
87
83
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
88
84
|
"""
|
|
89
85
|
|
|
90
86
|
:return: The class or default when not found.
|
|
91
|
-
:rtype: typing.Any
|
|
92
87
|
"""
|
|
93
88
|
|
|
94
89
|
def draw(self, context) -> None:
|
|
@@ -98,7 +93,7 @@ class BONE_PT_bActionConstraint_target(
|
|
|
98
93
|
"""
|
|
99
94
|
|
|
100
95
|
class BONE_PT_bArmatureConstraint(
|
|
101
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
96
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
102
97
|
):
|
|
103
98
|
bl_context: typing.Any
|
|
104
99
|
bl_label: typing.Any
|
|
@@ -112,14 +107,12 @@ class BONE_PT_bArmatureConstraint(
|
|
|
112
107
|
"""
|
|
113
108
|
|
|
114
109
|
:return: The RNA type or default when not found.
|
|
115
|
-
:rtype: bpy.types.Struct
|
|
116
110
|
"""
|
|
117
111
|
|
|
118
112
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
119
113
|
"""
|
|
120
114
|
|
|
121
115
|
:return: The class or default when not found.
|
|
122
|
-
:rtype: typing.Any
|
|
123
116
|
"""
|
|
124
117
|
|
|
125
118
|
def draw(self, context) -> None:
|
|
@@ -129,7 +122,7 @@ class BONE_PT_bArmatureConstraint(
|
|
|
129
122
|
"""
|
|
130
123
|
|
|
131
124
|
class BONE_PT_bArmatureConstraint_bones(
|
|
132
|
-
ConstraintButtonsSubPanel, BoneConstraintPanel,
|
|
125
|
+
ConstraintButtonsSubPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
133
126
|
):
|
|
134
127
|
bl_context: typing.Any
|
|
135
128
|
bl_label: typing.Any
|
|
@@ -143,14 +136,12 @@ class BONE_PT_bArmatureConstraint_bones(
|
|
|
143
136
|
"""
|
|
144
137
|
|
|
145
138
|
:return: The RNA type or default when not found.
|
|
146
|
-
:rtype: bpy.types.Struct
|
|
147
139
|
"""
|
|
148
140
|
|
|
149
141
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
150
142
|
"""
|
|
151
143
|
|
|
152
144
|
:return: The class or default when not found.
|
|
153
|
-
:rtype: typing.Any
|
|
154
145
|
"""
|
|
155
146
|
|
|
156
147
|
def draw(self, context) -> None:
|
|
@@ -160,7 +151,7 @@ class BONE_PT_bArmatureConstraint_bones(
|
|
|
160
151
|
"""
|
|
161
152
|
|
|
162
153
|
class BONE_PT_bCameraSolverConstraint(
|
|
163
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
154
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
164
155
|
):
|
|
165
156
|
bl_context: typing.Any
|
|
166
157
|
bl_label: typing.Any
|
|
@@ -174,14 +165,12 @@ class BONE_PT_bCameraSolverConstraint(
|
|
|
174
165
|
"""
|
|
175
166
|
|
|
176
167
|
:return: The RNA type or default when not found.
|
|
177
|
-
:rtype: bpy.types.Struct
|
|
178
168
|
"""
|
|
179
169
|
|
|
180
170
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
181
171
|
"""
|
|
182
172
|
|
|
183
173
|
:return: The class or default when not found.
|
|
184
|
-
:rtype: typing.Any
|
|
185
174
|
"""
|
|
186
175
|
|
|
187
176
|
def draw(self, context) -> None:
|
|
@@ -191,7 +180,7 @@ class BONE_PT_bCameraSolverConstraint(
|
|
|
191
180
|
"""
|
|
192
181
|
|
|
193
182
|
class BONE_PT_bChildOfConstraint(
|
|
194
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
183
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
195
184
|
):
|
|
196
185
|
bl_context: typing.Any
|
|
197
186
|
bl_label: typing.Any
|
|
@@ -205,14 +194,12 @@ class BONE_PT_bChildOfConstraint(
|
|
|
205
194
|
"""
|
|
206
195
|
|
|
207
196
|
:return: The RNA type or default when not found.
|
|
208
|
-
:rtype: bpy.types.Struct
|
|
209
197
|
"""
|
|
210
198
|
|
|
211
199
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
212
200
|
"""
|
|
213
201
|
|
|
214
202
|
:return: The class or default when not found.
|
|
215
|
-
:rtype: typing.Any
|
|
216
203
|
"""
|
|
217
204
|
|
|
218
205
|
def draw(self, context) -> None:
|
|
@@ -222,7 +209,7 @@ class BONE_PT_bChildOfConstraint(
|
|
|
222
209
|
"""
|
|
223
210
|
|
|
224
211
|
class BONE_PT_bClampToConstraint(
|
|
225
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
212
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
226
213
|
):
|
|
227
214
|
bl_context: typing.Any
|
|
228
215
|
bl_label: typing.Any
|
|
@@ -236,14 +223,12 @@ class BONE_PT_bClampToConstraint(
|
|
|
236
223
|
"""
|
|
237
224
|
|
|
238
225
|
:return: The RNA type or default when not found.
|
|
239
|
-
:rtype: bpy.types.Struct
|
|
240
226
|
"""
|
|
241
227
|
|
|
242
228
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
243
229
|
"""
|
|
244
230
|
|
|
245
231
|
:return: The class or default when not found.
|
|
246
|
-
:rtype: typing.Any
|
|
247
232
|
"""
|
|
248
233
|
|
|
249
234
|
def draw(self, context) -> None:
|
|
@@ -253,7 +238,7 @@ class BONE_PT_bClampToConstraint(
|
|
|
253
238
|
"""
|
|
254
239
|
|
|
255
240
|
class BONE_PT_bDampTrackConstraint(
|
|
256
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
241
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
257
242
|
):
|
|
258
243
|
bl_context: typing.Any
|
|
259
244
|
bl_label: typing.Any
|
|
@@ -267,14 +252,12 @@ class BONE_PT_bDampTrackConstraint(
|
|
|
267
252
|
"""
|
|
268
253
|
|
|
269
254
|
:return: The RNA type or default when not found.
|
|
270
|
-
:rtype: bpy.types.Struct
|
|
271
255
|
"""
|
|
272
256
|
|
|
273
257
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
274
258
|
"""
|
|
275
259
|
|
|
276
260
|
:return: The class or default when not found.
|
|
277
|
-
:rtype: typing.Any
|
|
278
261
|
"""
|
|
279
262
|
|
|
280
263
|
def draw(self, context) -> None:
|
|
@@ -284,7 +267,7 @@ class BONE_PT_bDampTrackConstraint(
|
|
|
284
267
|
"""
|
|
285
268
|
|
|
286
269
|
class BONE_PT_bDistLimitConstraint(
|
|
287
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
270
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
288
271
|
):
|
|
289
272
|
bl_context: typing.Any
|
|
290
273
|
bl_label: typing.Any
|
|
@@ -298,14 +281,12 @@ class BONE_PT_bDistLimitConstraint(
|
|
|
298
281
|
"""
|
|
299
282
|
|
|
300
283
|
:return: The RNA type or default when not found.
|
|
301
|
-
:rtype: bpy.types.Struct
|
|
302
284
|
"""
|
|
303
285
|
|
|
304
286
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
305
287
|
"""
|
|
306
288
|
|
|
307
289
|
:return: The class or default when not found.
|
|
308
|
-
:rtype: typing.Any
|
|
309
290
|
"""
|
|
310
291
|
|
|
311
292
|
def draw(self, context) -> None:
|
|
@@ -315,7 +296,7 @@ class BONE_PT_bDistLimitConstraint(
|
|
|
315
296
|
"""
|
|
316
297
|
|
|
317
298
|
class BONE_PT_bFollowPathConstraint(
|
|
318
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
299
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
319
300
|
):
|
|
320
301
|
bl_context: typing.Any
|
|
321
302
|
bl_label: typing.Any
|
|
@@ -329,14 +310,12 @@ class BONE_PT_bFollowPathConstraint(
|
|
|
329
310
|
"""
|
|
330
311
|
|
|
331
312
|
:return: The RNA type or default when not found.
|
|
332
|
-
:rtype: bpy.types.Struct
|
|
333
313
|
"""
|
|
334
314
|
|
|
335
315
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
336
316
|
"""
|
|
337
317
|
|
|
338
318
|
:return: The class or default when not found.
|
|
339
|
-
:rtype: typing.Any
|
|
340
319
|
"""
|
|
341
320
|
|
|
342
321
|
def draw(self, context) -> None:
|
|
@@ -346,7 +325,7 @@ class BONE_PT_bFollowPathConstraint(
|
|
|
346
325
|
"""
|
|
347
326
|
|
|
348
327
|
class BONE_PT_bFollowTrackConstraint(
|
|
349
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
328
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
350
329
|
):
|
|
351
330
|
bl_context: typing.Any
|
|
352
331
|
bl_label: typing.Any
|
|
@@ -360,14 +339,12 @@ class BONE_PT_bFollowTrackConstraint(
|
|
|
360
339
|
"""
|
|
361
340
|
|
|
362
341
|
:return: The RNA type or default when not found.
|
|
363
|
-
:rtype: bpy.types.Struct
|
|
364
342
|
"""
|
|
365
343
|
|
|
366
344
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
367
345
|
"""
|
|
368
346
|
|
|
369
347
|
:return: The class or default when not found.
|
|
370
|
-
:rtype: typing.Any
|
|
371
348
|
"""
|
|
372
349
|
|
|
373
350
|
def draw(self, context) -> None:
|
|
@@ -376,8 +353,8 @@ class BONE_PT_bFollowTrackConstraint(
|
|
|
376
353
|
:param context:
|
|
377
354
|
"""
|
|
378
355
|
|
|
379
|
-
class
|
|
380
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
356
|
+
class BONE_PT_bGeometryAttributeConstraint(
|
|
357
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
381
358
|
):
|
|
382
359
|
bl_context: typing.Any
|
|
383
360
|
bl_label: typing.Any
|
|
@@ -391,14 +368,12 @@ class BONE_PT_bKinematicConstraint(
|
|
|
391
368
|
"""
|
|
392
369
|
|
|
393
370
|
:return: The RNA type or default when not found.
|
|
394
|
-
:rtype: bpy.types.Struct
|
|
395
371
|
"""
|
|
396
372
|
|
|
397
373
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
398
374
|
"""
|
|
399
375
|
|
|
400
376
|
:return: The class or default when not found.
|
|
401
|
-
:rtype: typing.Any
|
|
402
377
|
"""
|
|
403
378
|
|
|
404
379
|
def draw(self, context) -> None:
|
|
@@ -407,8 +382,8 @@ class BONE_PT_bKinematicConstraint(
|
|
|
407
382
|
:param context:
|
|
408
383
|
"""
|
|
409
384
|
|
|
410
|
-
class
|
|
411
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
385
|
+
class BONE_PT_bKinematicConstraint(
|
|
386
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
412
387
|
):
|
|
413
388
|
bl_context: typing.Any
|
|
414
389
|
bl_label: typing.Any
|
|
@@ -422,14 +397,12 @@ class BONE_PT_bLocLimitConstraint(
|
|
|
422
397
|
"""
|
|
423
398
|
|
|
424
399
|
:return: The RNA type or default when not found.
|
|
425
|
-
:rtype: bpy.types.Struct
|
|
426
400
|
"""
|
|
427
401
|
|
|
428
402
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
429
403
|
"""
|
|
430
404
|
|
|
431
405
|
:return: The class or default when not found.
|
|
432
|
-
:rtype: typing.Any
|
|
433
406
|
"""
|
|
434
407
|
|
|
435
408
|
def draw(self, context) -> None:
|
|
@@ -438,8 +411,8 @@ class BONE_PT_bLocLimitConstraint(
|
|
|
438
411
|
:param context:
|
|
439
412
|
"""
|
|
440
413
|
|
|
441
|
-
class
|
|
442
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
414
|
+
class BONE_PT_bLocLimitConstraint(
|
|
415
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
443
416
|
):
|
|
444
417
|
bl_context: typing.Any
|
|
445
418
|
bl_label: typing.Any
|
|
@@ -453,14 +426,12 @@ class BONE_PT_bLocateLikeConstraint(
|
|
|
453
426
|
"""
|
|
454
427
|
|
|
455
428
|
:return: The RNA type or default when not found.
|
|
456
|
-
:rtype: bpy.types.Struct
|
|
457
429
|
"""
|
|
458
430
|
|
|
459
431
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
460
432
|
"""
|
|
461
433
|
|
|
462
434
|
:return: The class or default when not found.
|
|
463
|
-
:rtype: typing.Any
|
|
464
435
|
"""
|
|
465
436
|
|
|
466
437
|
def draw(self, context) -> None:
|
|
@@ -469,8 +440,8 @@ class BONE_PT_bLocateLikeConstraint(
|
|
|
469
440
|
:param context:
|
|
470
441
|
"""
|
|
471
442
|
|
|
472
|
-
class
|
|
473
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
443
|
+
class BONE_PT_bLocateLikeConstraint(
|
|
444
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
474
445
|
):
|
|
475
446
|
bl_context: typing.Any
|
|
476
447
|
bl_label: typing.Any
|
|
@@ -484,14 +455,12 @@ class BONE_PT_bLockTrackConstraint(
|
|
|
484
455
|
"""
|
|
485
456
|
|
|
486
457
|
:return: The RNA type or default when not found.
|
|
487
|
-
:rtype: bpy.types.Struct
|
|
488
458
|
"""
|
|
489
459
|
|
|
490
460
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
491
461
|
"""
|
|
492
462
|
|
|
493
463
|
:return: The class or default when not found.
|
|
494
|
-
:rtype: typing.Any
|
|
495
464
|
"""
|
|
496
465
|
|
|
497
466
|
def draw(self, context) -> None:
|
|
@@ -500,8 +469,8 @@ class BONE_PT_bLockTrackConstraint(
|
|
|
500
469
|
:param context:
|
|
501
470
|
"""
|
|
502
471
|
|
|
503
|
-
class
|
|
504
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
472
|
+
class BONE_PT_bLockTrackConstraint(
|
|
473
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
505
474
|
):
|
|
506
475
|
bl_context: typing.Any
|
|
507
476
|
bl_label: typing.Any
|
|
@@ -515,14 +484,12 @@ class BONE_PT_bMinMaxConstraint(
|
|
|
515
484
|
"""
|
|
516
485
|
|
|
517
486
|
:return: The RNA type or default when not found.
|
|
518
|
-
:rtype: bpy.types.Struct
|
|
519
487
|
"""
|
|
520
488
|
|
|
521
489
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
522
490
|
"""
|
|
523
491
|
|
|
524
492
|
:return: The class or default when not found.
|
|
525
|
-
:rtype: typing.Any
|
|
526
493
|
"""
|
|
527
494
|
|
|
528
495
|
def draw(self, context) -> None:
|
|
@@ -531,8 +498,8 @@ class BONE_PT_bMinMaxConstraint(
|
|
|
531
498
|
:param context:
|
|
532
499
|
"""
|
|
533
500
|
|
|
534
|
-
class
|
|
535
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
501
|
+
class BONE_PT_bMinMaxConstraint(
|
|
502
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
536
503
|
):
|
|
537
504
|
bl_context: typing.Any
|
|
538
505
|
bl_label: typing.Any
|
|
@@ -546,14 +513,12 @@ class BONE_PT_bObjectSolverConstraint(
|
|
|
546
513
|
"""
|
|
547
514
|
|
|
548
515
|
:return: The RNA type or default when not found.
|
|
549
|
-
:rtype: bpy.types.Struct
|
|
550
516
|
"""
|
|
551
517
|
|
|
552
518
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
553
519
|
"""
|
|
554
520
|
|
|
555
521
|
:return: The class or default when not found.
|
|
556
|
-
:rtype: typing.Any
|
|
557
522
|
"""
|
|
558
523
|
|
|
559
524
|
def draw(self, context) -> None:
|
|
@@ -562,8 +527,8 @@ class BONE_PT_bObjectSolverConstraint(
|
|
|
562
527
|
:param context:
|
|
563
528
|
"""
|
|
564
529
|
|
|
565
|
-
class
|
|
566
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
530
|
+
class BONE_PT_bObjectSolverConstraint(
|
|
531
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
567
532
|
):
|
|
568
533
|
bl_context: typing.Any
|
|
569
534
|
bl_label: typing.Any
|
|
@@ -577,14 +542,12 @@ class BONE_PT_bPivotConstraint(
|
|
|
577
542
|
"""
|
|
578
543
|
|
|
579
544
|
:return: The RNA type or default when not found.
|
|
580
|
-
:rtype: bpy.types.Struct
|
|
581
545
|
"""
|
|
582
546
|
|
|
583
547
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
584
548
|
"""
|
|
585
549
|
|
|
586
550
|
:return: The class or default when not found.
|
|
587
|
-
:rtype: typing.Any
|
|
588
551
|
"""
|
|
589
552
|
|
|
590
553
|
def draw(self, context) -> None:
|
|
@@ -593,8 +556,8 @@ class BONE_PT_bPivotConstraint(
|
|
|
593
556
|
:param context:
|
|
594
557
|
"""
|
|
595
558
|
|
|
596
|
-
class
|
|
597
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
559
|
+
class BONE_PT_bPivotConstraint(
|
|
560
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
598
561
|
):
|
|
599
562
|
bl_context: typing.Any
|
|
600
563
|
bl_label: typing.Any
|
|
@@ -608,14 +571,12 @@ class BONE_PT_bRotLimitConstraint(
|
|
|
608
571
|
"""
|
|
609
572
|
|
|
610
573
|
:return: The RNA type or default when not found.
|
|
611
|
-
:rtype: bpy.types.Struct
|
|
612
574
|
"""
|
|
613
575
|
|
|
614
576
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
615
577
|
"""
|
|
616
578
|
|
|
617
579
|
:return: The class or default when not found.
|
|
618
|
-
:rtype: typing.Any
|
|
619
580
|
"""
|
|
620
581
|
|
|
621
582
|
def draw(self, context) -> None:
|
|
@@ -624,8 +585,8 @@ class BONE_PT_bRotLimitConstraint(
|
|
|
624
585
|
:param context:
|
|
625
586
|
"""
|
|
626
587
|
|
|
627
|
-
class
|
|
628
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
588
|
+
class BONE_PT_bRotLimitConstraint(
|
|
589
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
629
590
|
):
|
|
630
591
|
bl_context: typing.Any
|
|
631
592
|
bl_label: typing.Any
|
|
@@ -639,14 +600,12 @@ class BONE_PT_bRotateLikeConstraint(
|
|
|
639
600
|
"""
|
|
640
601
|
|
|
641
602
|
:return: The RNA type or default when not found.
|
|
642
|
-
:rtype: bpy.types.Struct
|
|
643
603
|
"""
|
|
644
604
|
|
|
645
605
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
646
606
|
"""
|
|
647
607
|
|
|
648
608
|
:return: The class or default when not found.
|
|
649
|
-
:rtype: typing.Any
|
|
650
609
|
"""
|
|
651
610
|
|
|
652
611
|
def draw(self, context) -> None:
|
|
@@ -655,8 +614,8 @@ class BONE_PT_bRotateLikeConstraint(
|
|
|
655
614
|
:param context:
|
|
656
615
|
"""
|
|
657
616
|
|
|
658
|
-
class
|
|
659
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
617
|
+
class BONE_PT_bRotateLikeConstraint(
|
|
618
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
660
619
|
):
|
|
661
620
|
bl_context: typing.Any
|
|
662
621
|
bl_label: typing.Any
|
|
@@ -670,14 +629,12 @@ class BONE_PT_bSameVolumeConstraint(
|
|
|
670
629
|
"""
|
|
671
630
|
|
|
672
631
|
:return: The RNA type or default when not found.
|
|
673
|
-
:rtype: bpy.types.Struct
|
|
674
632
|
"""
|
|
675
633
|
|
|
676
634
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
677
635
|
"""
|
|
678
636
|
|
|
679
637
|
:return: The class or default when not found.
|
|
680
|
-
:rtype: typing.Any
|
|
681
638
|
"""
|
|
682
639
|
|
|
683
640
|
def draw(self, context) -> None:
|
|
@@ -686,8 +643,8 @@ class BONE_PT_bSameVolumeConstraint(
|
|
|
686
643
|
:param context:
|
|
687
644
|
"""
|
|
688
645
|
|
|
689
|
-
class
|
|
690
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
646
|
+
class BONE_PT_bSameVolumeConstraint(
|
|
647
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
691
648
|
):
|
|
692
649
|
bl_context: typing.Any
|
|
693
650
|
bl_label: typing.Any
|
|
@@ -701,14 +658,12 @@ class BONE_PT_bShrinkwrapConstraint(
|
|
|
701
658
|
"""
|
|
702
659
|
|
|
703
660
|
:return: The RNA type or default when not found.
|
|
704
|
-
:rtype: bpy.types.Struct
|
|
705
661
|
"""
|
|
706
662
|
|
|
707
663
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
708
664
|
"""
|
|
709
665
|
|
|
710
666
|
:return: The class or default when not found.
|
|
711
|
-
:rtype: typing.Any
|
|
712
667
|
"""
|
|
713
668
|
|
|
714
669
|
def draw(self, context) -> None:
|
|
@@ -717,8 +672,8 @@ class BONE_PT_bShrinkwrapConstraint(
|
|
|
717
672
|
:param context:
|
|
718
673
|
"""
|
|
719
674
|
|
|
720
|
-
class
|
|
721
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
675
|
+
class BONE_PT_bShrinkwrapConstraint(
|
|
676
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
722
677
|
):
|
|
723
678
|
bl_context: typing.Any
|
|
724
679
|
bl_label: typing.Any
|
|
@@ -732,14 +687,12 @@ class BONE_PT_bSizeLikeConstraint(
|
|
|
732
687
|
"""
|
|
733
688
|
|
|
734
689
|
:return: The RNA type or default when not found.
|
|
735
|
-
:rtype: bpy.types.Struct
|
|
736
690
|
"""
|
|
737
691
|
|
|
738
692
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
739
693
|
"""
|
|
740
694
|
|
|
741
695
|
:return: The class or default when not found.
|
|
742
|
-
:rtype: typing.Any
|
|
743
696
|
"""
|
|
744
697
|
|
|
745
698
|
def draw(self, context) -> None:
|
|
@@ -748,8 +701,8 @@ class BONE_PT_bSizeLikeConstraint(
|
|
|
748
701
|
:param context:
|
|
749
702
|
"""
|
|
750
703
|
|
|
751
|
-
class
|
|
752
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
704
|
+
class BONE_PT_bSizeLikeConstraint(
|
|
705
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
753
706
|
):
|
|
754
707
|
bl_context: typing.Any
|
|
755
708
|
bl_label: typing.Any
|
|
@@ -763,14 +716,12 @@ class BONE_PT_bSizeLimitConstraint(
|
|
|
763
716
|
"""
|
|
764
717
|
|
|
765
718
|
:return: The RNA type or default when not found.
|
|
766
|
-
:rtype: bpy.types.Struct
|
|
767
719
|
"""
|
|
768
720
|
|
|
769
721
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
770
722
|
"""
|
|
771
723
|
|
|
772
724
|
:return: The class or default when not found.
|
|
773
|
-
:rtype: typing.Any
|
|
774
725
|
"""
|
|
775
726
|
|
|
776
727
|
def draw(self, context) -> None:
|
|
@@ -779,8 +730,8 @@ class BONE_PT_bSizeLimitConstraint(
|
|
|
779
730
|
:param context:
|
|
780
731
|
"""
|
|
781
732
|
|
|
782
|
-
class
|
|
783
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
733
|
+
class BONE_PT_bSizeLimitConstraint(
|
|
734
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
784
735
|
):
|
|
785
736
|
bl_context: typing.Any
|
|
786
737
|
bl_label: typing.Any
|
|
@@ -794,14 +745,12 @@ class BONE_PT_bSplineIKConstraint(
|
|
|
794
745
|
"""
|
|
795
746
|
|
|
796
747
|
:return: The RNA type or default when not found.
|
|
797
|
-
:rtype: bpy.types.Struct
|
|
798
748
|
"""
|
|
799
749
|
|
|
800
750
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
801
751
|
"""
|
|
802
752
|
|
|
803
753
|
:return: The class or default when not found.
|
|
804
|
-
:rtype: typing.Any
|
|
805
754
|
"""
|
|
806
755
|
|
|
807
756
|
def draw(self, context) -> None:
|
|
@@ -810,12 +759,12 @@ class BONE_PT_bSplineIKConstraint(
|
|
|
810
759
|
:param context:
|
|
811
760
|
"""
|
|
812
761
|
|
|
813
|
-
class
|
|
814
|
-
|
|
762
|
+
class BONE_PT_bSplineIKConstraint(
|
|
763
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
815
764
|
):
|
|
816
765
|
bl_context: typing.Any
|
|
817
766
|
bl_label: typing.Any
|
|
818
|
-
|
|
767
|
+
bl_options: typing.Any
|
|
819
768
|
bl_region_type: typing.Any
|
|
820
769
|
bl_rna: typing.Any
|
|
821
770
|
bl_space_type: typing.Any
|
|
@@ -825,14 +774,12 @@ class BONE_PT_bSplineIKConstraint_chain_scaling(
|
|
|
825
774
|
"""
|
|
826
775
|
|
|
827
776
|
:return: The RNA type or default when not found.
|
|
828
|
-
:rtype: bpy.types.Struct
|
|
829
777
|
"""
|
|
830
778
|
|
|
831
779
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
832
780
|
"""
|
|
833
781
|
|
|
834
782
|
:return: The class or default when not found.
|
|
835
|
-
:rtype: typing.Any
|
|
836
783
|
"""
|
|
837
784
|
|
|
838
785
|
def draw(self, context) -> None:
|
|
@@ -841,8 +788,8 @@ class BONE_PT_bSplineIKConstraint_chain_scaling(
|
|
|
841
788
|
:param context:
|
|
842
789
|
"""
|
|
843
790
|
|
|
844
|
-
class
|
|
845
|
-
ConstraintButtonsSubPanel, BoneConstraintPanel,
|
|
791
|
+
class BONE_PT_bSplineIKConstraint_chain_scaling(
|
|
792
|
+
ConstraintButtonsSubPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
846
793
|
):
|
|
847
794
|
bl_context: typing.Any
|
|
848
795
|
bl_label: typing.Any
|
|
@@ -856,14 +803,12 @@ class BONE_PT_bSplineIKConstraint_fitting(
|
|
|
856
803
|
"""
|
|
857
804
|
|
|
858
805
|
:return: The RNA type or default when not found.
|
|
859
|
-
:rtype: bpy.types.Struct
|
|
860
806
|
"""
|
|
861
807
|
|
|
862
808
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
863
809
|
"""
|
|
864
810
|
|
|
865
811
|
:return: The class or default when not found.
|
|
866
|
-
:rtype: typing.Any
|
|
867
812
|
"""
|
|
868
813
|
|
|
869
814
|
def draw(self, context) -> None:
|
|
@@ -872,12 +817,12 @@ class BONE_PT_bSplineIKConstraint_fitting(
|
|
|
872
817
|
:param context:
|
|
873
818
|
"""
|
|
874
819
|
|
|
875
|
-
class
|
|
876
|
-
|
|
820
|
+
class BONE_PT_bSplineIKConstraint_fitting(
|
|
821
|
+
ConstraintButtonsSubPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
877
822
|
):
|
|
878
823
|
bl_context: typing.Any
|
|
879
824
|
bl_label: typing.Any
|
|
880
|
-
|
|
825
|
+
bl_parent_id: typing.Any
|
|
881
826
|
bl_region_type: typing.Any
|
|
882
827
|
bl_rna: typing.Any
|
|
883
828
|
bl_space_type: typing.Any
|
|
@@ -887,14 +832,12 @@ class BONE_PT_bStretchToConstraint(
|
|
|
887
832
|
"""
|
|
888
833
|
|
|
889
834
|
:return: The RNA type or default when not found.
|
|
890
|
-
:rtype: bpy.types.Struct
|
|
891
835
|
"""
|
|
892
836
|
|
|
893
837
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
894
838
|
"""
|
|
895
839
|
|
|
896
840
|
:return: The class or default when not found.
|
|
897
|
-
:rtype: typing.Any
|
|
898
841
|
"""
|
|
899
842
|
|
|
900
843
|
def draw(self, context) -> None:
|
|
@@ -903,8 +846,8 @@ class BONE_PT_bStretchToConstraint(
|
|
|
903
846
|
:param context:
|
|
904
847
|
"""
|
|
905
848
|
|
|
906
|
-
class
|
|
907
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
849
|
+
class BONE_PT_bStretchToConstraint(
|
|
850
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
908
851
|
):
|
|
909
852
|
bl_context: typing.Any
|
|
910
853
|
bl_label: typing.Any
|
|
@@ -918,14 +861,12 @@ class BONE_PT_bTrackToConstraint(
|
|
|
918
861
|
"""
|
|
919
862
|
|
|
920
863
|
:return: The RNA type or default when not found.
|
|
921
|
-
:rtype: bpy.types.Struct
|
|
922
864
|
"""
|
|
923
865
|
|
|
924
866
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
925
867
|
"""
|
|
926
868
|
|
|
927
869
|
:return: The class or default when not found.
|
|
928
|
-
:rtype: typing.Any
|
|
929
870
|
"""
|
|
930
871
|
|
|
931
872
|
def draw(self, context) -> None:
|
|
@@ -934,8 +875,8 @@ class BONE_PT_bTrackToConstraint(
|
|
|
934
875
|
:param context:
|
|
935
876
|
"""
|
|
936
877
|
|
|
937
|
-
class
|
|
938
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
878
|
+
class BONE_PT_bTrackToConstraint(
|
|
879
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
939
880
|
):
|
|
940
881
|
bl_context: typing.Any
|
|
941
882
|
bl_label: typing.Any
|
|
@@ -949,14 +890,12 @@ class BONE_PT_bTransLikeConstraint(
|
|
|
949
890
|
"""
|
|
950
891
|
|
|
951
892
|
:return: The RNA type or default when not found.
|
|
952
|
-
:rtype: bpy.types.Struct
|
|
953
893
|
"""
|
|
954
894
|
|
|
955
895
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
956
896
|
"""
|
|
957
897
|
|
|
958
898
|
:return: The class or default when not found.
|
|
959
|
-
:rtype: typing.Any
|
|
960
899
|
"""
|
|
961
900
|
|
|
962
901
|
def draw(self, context) -> None:
|
|
@@ -965,8 +904,8 @@ class BONE_PT_bTransLikeConstraint(
|
|
|
965
904
|
:param context:
|
|
966
905
|
"""
|
|
967
906
|
|
|
968
|
-
class
|
|
969
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
907
|
+
class BONE_PT_bTransLikeConstraint(
|
|
908
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
970
909
|
):
|
|
971
910
|
bl_context: typing.Any
|
|
972
911
|
bl_label: typing.Any
|
|
@@ -980,14 +919,12 @@ class BONE_PT_bTransformCacheConstraint(
|
|
|
980
919
|
"""
|
|
981
920
|
|
|
982
921
|
:return: The RNA type or default when not found.
|
|
983
|
-
:rtype: bpy.types.Struct
|
|
984
922
|
"""
|
|
985
923
|
|
|
986
924
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
987
925
|
"""
|
|
988
926
|
|
|
989
927
|
:return: The class or default when not found.
|
|
990
|
-
:rtype: typing.Any
|
|
991
928
|
"""
|
|
992
929
|
|
|
993
930
|
def draw(self, context) -> None:
|
|
@@ -996,12 +933,12 @@ class BONE_PT_bTransformCacheConstraint(
|
|
|
996
933
|
:param context:
|
|
997
934
|
"""
|
|
998
935
|
|
|
999
|
-
class
|
|
1000
|
-
|
|
936
|
+
class BONE_PT_bTransformCacheConstraint(
|
|
937
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
1001
938
|
):
|
|
1002
939
|
bl_context: typing.Any
|
|
1003
940
|
bl_label: typing.Any
|
|
1004
|
-
|
|
941
|
+
bl_options: typing.Any
|
|
1005
942
|
bl_region_type: typing.Any
|
|
1006
943
|
bl_rna: typing.Any
|
|
1007
944
|
bl_space_type: typing.Any
|
|
@@ -1011,14 +948,12 @@ class BONE_PT_bTransformCacheConstraint_layers(
|
|
|
1011
948
|
"""
|
|
1012
949
|
|
|
1013
950
|
:return: The RNA type or default when not found.
|
|
1014
|
-
:rtype: bpy.types.Struct
|
|
1015
951
|
"""
|
|
1016
952
|
|
|
1017
953
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1018
954
|
"""
|
|
1019
955
|
|
|
1020
956
|
:return: The class or default when not found.
|
|
1021
|
-
:rtype: typing.Any
|
|
1022
957
|
"""
|
|
1023
958
|
|
|
1024
959
|
def draw(self, context) -> None:
|
|
@@ -1027,8 +962,8 @@ class BONE_PT_bTransformCacheConstraint_layers(
|
|
|
1027
962
|
:param context:
|
|
1028
963
|
"""
|
|
1029
964
|
|
|
1030
|
-
class
|
|
1031
|
-
ConstraintButtonsSubPanel, BoneConstraintPanel,
|
|
965
|
+
class BONE_PT_bTransformCacheConstraint_layers(
|
|
966
|
+
ConstraintButtonsSubPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
1032
967
|
):
|
|
1033
968
|
bl_context: typing.Any
|
|
1034
969
|
bl_label: typing.Any
|
|
@@ -1042,14 +977,12 @@ class BONE_PT_bTransformCacheConstraint_procedural(
|
|
|
1042
977
|
"""
|
|
1043
978
|
|
|
1044
979
|
:return: The RNA type or default when not found.
|
|
1045
|
-
:rtype: bpy.types.Struct
|
|
1046
980
|
"""
|
|
1047
981
|
|
|
1048
982
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1049
983
|
"""
|
|
1050
984
|
|
|
1051
985
|
:return: The class or default when not found.
|
|
1052
|
-
:rtype: typing.Any
|
|
1053
986
|
"""
|
|
1054
987
|
|
|
1055
988
|
def draw(self, context) -> None:
|
|
@@ -1059,7 +992,7 @@ class BONE_PT_bTransformCacheConstraint_procedural(
|
|
|
1059
992
|
"""
|
|
1060
993
|
|
|
1061
994
|
class BONE_PT_bTransformCacheConstraint_time(
|
|
1062
|
-
ConstraintButtonsSubPanel, BoneConstraintPanel,
|
|
995
|
+
ConstraintButtonsSubPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
1063
996
|
):
|
|
1064
997
|
bl_context: typing.Any
|
|
1065
998
|
bl_label: typing.Any
|
|
@@ -1073,14 +1006,12 @@ class BONE_PT_bTransformCacheConstraint_time(
|
|
|
1073
1006
|
"""
|
|
1074
1007
|
|
|
1075
1008
|
:return: The RNA type or default when not found.
|
|
1076
|
-
:rtype: bpy.types.Struct
|
|
1077
1009
|
"""
|
|
1078
1010
|
|
|
1079
1011
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1080
1012
|
"""
|
|
1081
1013
|
|
|
1082
1014
|
:return: The class or default when not found.
|
|
1083
|
-
:rtype: typing.Any
|
|
1084
1015
|
"""
|
|
1085
1016
|
|
|
1086
1017
|
def draw(self, context) -> None:
|
|
@@ -1090,7 +1021,7 @@ class BONE_PT_bTransformCacheConstraint_time(
|
|
|
1090
1021
|
"""
|
|
1091
1022
|
|
|
1092
1023
|
class BONE_PT_bTransformCacheConstraint_velocity(
|
|
1093
|
-
ConstraintButtonsSubPanel, BoneConstraintPanel,
|
|
1024
|
+
ConstraintButtonsSubPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
1094
1025
|
):
|
|
1095
1026
|
bl_context: typing.Any
|
|
1096
1027
|
bl_label: typing.Any
|
|
@@ -1104,14 +1035,12 @@ class BONE_PT_bTransformCacheConstraint_velocity(
|
|
|
1104
1035
|
"""
|
|
1105
1036
|
|
|
1106
1037
|
:return: The RNA type or default when not found.
|
|
1107
|
-
:rtype: bpy.types.Struct
|
|
1108
1038
|
"""
|
|
1109
1039
|
|
|
1110
1040
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1111
1041
|
"""
|
|
1112
1042
|
|
|
1113
1043
|
:return: The class or default when not found.
|
|
1114
|
-
:rtype: typing.Any
|
|
1115
1044
|
"""
|
|
1116
1045
|
|
|
1117
1046
|
def draw(self, context) -> None:
|
|
@@ -1121,7 +1050,7 @@ class BONE_PT_bTransformCacheConstraint_velocity(
|
|
|
1121
1050
|
"""
|
|
1122
1051
|
|
|
1123
1052
|
class BONE_PT_bTransformConstraint(
|
|
1124
|
-
ConstraintButtonsPanel, BoneConstraintPanel,
|
|
1053
|
+
ConstraintButtonsPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
1125
1054
|
):
|
|
1126
1055
|
bl_context: typing.Any
|
|
1127
1056
|
bl_label: typing.Any
|
|
@@ -1135,14 +1064,12 @@ class BONE_PT_bTransformConstraint(
|
|
|
1135
1064
|
"""
|
|
1136
1065
|
|
|
1137
1066
|
:return: The RNA type or default when not found.
|
|
1138
|
-
:rtype: bpy.types.Struct
|
|
1139
1067
|
"""
|
|
1140
1068
|
|
|
1141
1069
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1142
1070
|
"""
|
|
1143
1071
|
|
|
1144
1072
|
:return: The class or default when not found.
|
|
1145
|
-
:rtype: typing.Any
|
|
1146
1073
|
"""
|
|
1147
1074
|
|
|
1148
1075
|
def draw(self, context) -> None:
|
|
@@ -1152,7 +1079,7 @@ class BONE_PT_bTransformConstraint(
|
|
|
1152
1079
|
"""
|
|
1153
1080
|
|
|
1154
1081
|
class BONE_PT_bTransformConstraint_from(
|
|
1155
|
-
ConstraintButtonsSubPanel, BoneConstraintPanel,
|
|
1082
|
+
ConstraintButtonsSubPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
1156
1083
|
):
|
|
1157
1084
|
bl_context: typing.Any
|
|
1158
1085
|
bl_label: typing.Any
|
|
@@ -1166,14 +1093,12 @@ class BONE_PT_bTransformConstraint_from(
|
|
|
1166
1093
|
"""
|
|
1167
1094
|
|
|
1168
1095
|
:return: The RNA type or default when not found.
|
|
1169
|
-
:rtype: bpy.types.Struct
|
|
1170
1096
|
"""
|
|
1171
1097
|
|
|
1172
1098
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1173
1099
|
"""
|
|
1174
1100
|
|
|
1175
1101
|
:return: The class or default when not found.
|
|
1176
|
-
:rtype: typing.Any
|
|
1177
1102
|
"""
|
|
1178
1103
|
|
|
1179
1104
|
def draw(self, context) -> None:
|
|
@@ -1183,7 +1108,7 @@ class BONE_PT_bTransformConstraint_from(
|
|
|
1183
1108
|
"""
|
|
1184
1109
|
|
|
1185
1110
|
class BONE_PT_bTransformConstraint_to(
|
|
1186
|
-
ConstraintButtonsSubPanel, BoneConstraintPanel,
|
|
1111
|
+
ConstraintButtonsSubPanel, BoneConstraintPanel, _bpy_types.Panel
|
|
1187
1112
|
):
|
|
1188
1113
|
bl_context: typing.Any
|
|
1189
1114
|
bl_label: typing.Any
|
|
@@ -1197,14 +1122,12 @@ class BONE_PT_bTransformConstraint_to(
|
|
|
1197
1122
|
"""
|
|
1198
1123
|
|
|
1199
1124
|
:return: The RNA type or default when not found.
|
|
1200
|
-
:rtype: bpy.types.Struct
|
|
1201
1125
|
"""
|
|
1202
1126
|
|
|
1203
1127
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1204
1128
|
"""
|
|
1205
1129
|
|
|
1206
1130
|
:return: The class or default when not found.
|
|
1207
|
-
:rtype: typing.Any
|
|
1208
1131
|
"""
|
|
1209
1132
|
|
|
1210
1133
|
def draw(self, context) -> None:
|
|
@@ -1213,7 +1136,7 @@ class BONE_PT_bTransformConstraint_to(
|
|
|
1213
1136
|
:param context:
|
|
1214
1137
|
"""
|
|
1215
1138
|
|
|
1216
|
-
class BONE_PT_constraints(BoneConstraintPanel,
|
|
1139
|
+
class BONE_PT_constraints(BoneConstraintPanel, _bpy_types.Panel):
|
|
1217
1140
|
bl_context: typing.Any
|
|
1218
1141
|
bl_label: typing.Any
|
|
1219
1142
|
bl_options: typing.Any
|
|
@@ -1226,14 +1149,12 @@ class BONE_PT_constraints(BoneConstraintPanel, bpy.types.Panel):
|
|
|
1226
1149
|
"""
|
|
1227
1150
|
|
|
1228
1151
|
:return: The RNA type or default when not found.
|
|
1229
|
-
:rtype: bpy.types.Struct
|
|
1230
1152
|
"""
|
|
1231
1153
|
|
|
1232
1154
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1233
1155
|
"""
|
|
1234
1156
|
|
|
1235
1157
|
:return: The class or default when not found.
|
|
1236
|
-
:rtype: typing.Any
|
|
1237
1158
|
"""
|
|
1238
1159
|
|
|
1239
1160
|
def draw(self, _context) -> None:
|
|
@@ -1312,6 +1233,12 @@ class ConstraintButtonsPanel:
|
|
|
1312
1233
|
:param context:
|
|
1313
1234
|
"""
|
|
1314
1235
|
|
|
1236
|
+
def draw_geometry_attribute(self, context) -> None:
|
|
1237
|
+
"""
|
|
1238
|
+
|
|
1239
|
+
:param context:
|
|
1240
|
+
"""
|
|
1241
|
+
|
|
1315
1242
|
def draw_header(self, context) -> None:
|
|
1316
1243
|
"""
|
|
1317
1244
|
|
|
@@ -1507,12 +1434,6 @@ class ConstraintButtonsSubPanel:
|
|
|
1507
1434
|
:param context:
|
|
1508
1435
|
"""
|
|
1509
1436
|
|
|
1510
|
-
def draw_transform_cache_procedural(self, context) -> None:
|
|
1511
|
-
"""
|
|
1512
|
-
|
|
1513
|
-
:param context:
|
|
1514
|
-
"""
|
|
1515
|
-
|
|
1516
1437
|
def draw_transform_cache_subpanel(self, context, template_func) -> None:
|
|
1517
1438
|
"""
|
|
1518
1439
|
|
|
@@ -1551,7 +1472,7 @@ class ConstraintButtonsSubPanel:
|
|
|
1551
1472
|
"""
|
|
1552
1473
|
|
|
1553
1474
|
class OBJECT_PT_bActionConstraint(
|
|
1554
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
1475
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
1555
1476
|
):
|
|
1556
1477
|
bl_context: typing.Any
|
|
1557
1478
|
bl_label: typing.Any
|
|
@@ -1565,14 +1486,12 @@ class OBJECT_PT_bActionConstraint(
|
|
|
1565
1486
|
"""
|
|
1566
1487
|
|
|
1567
1488
|
:return: The RNA type or default when not found.
|
|
1568
|
-
:rtype: bpy.types.Struct
|
|
1569
1489
|
"""
|
|
1570
1490
|
|
|
1571
1491
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1572
1492
|
"""
|
|
1573
1493
|
|
|
1574
1494
|
:return: The class or default when not found.
|
|
1575
|
-
:rtype: typing.Any
|
|
1576
1495
|
"""
|
|
1577
1496
|
|
|
1578
1497
|
def draw(self, context) -> None:
|
|
@@ -1582,7 +1501,7 @@ class OBJECT_PT_bActionConstraint(
|
|
|
1582
1501
|
"""
|
|
1583
1502
|
|
|
1584
1503
|
class OBJECT_PT_bActionConstraint_action(
|
|
1585
|
-
ConstraintButtonsSubPanel, ObjectConstraintPanel,
|
|
1504
|
+
ConstraintButtonsSubPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
1586
1505
|
):
|
|
1587
1506
|
bl_context: typing.Any
|
|
1588
1507
|
bl_label: typing.Any
|
|
@@ -1596,14 +1515,12 @@ class OBJECT_PT_bActionConstraint_action(
|
|
|
1596
1515
|
"""
|
|
1597
1516
|
|
|
1598
1517
|
:return: The RNA type or default when not found.
|
|
1599
|
-
:rtype: bpy.types.Struct
|
|
1600
1518
|
"""
|
|
1601
1519
|
|
|
1602
1520
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1603
1521
|
"""
|
|
1604
1522
|
|
|
1605
1523
|
:return: The class or default when not found.
|
|
1606
|
-
:rtype: typing.Any
|
|
1607
1524
|
"""
|
|
1608
1525
|
|
|
1609
1526
|
def draw(self, context) -> None:
|
|
@@ -1613,7 +1530,7 @@ class OBJECT_PT_bActionConstraint_action(
|
|
|
1613
1530
|
"""
|
|
1614
1531
|
|
|
1615
1532
|
class OBJECT_PT_bActionConstraint_target(
|
|
1616
|
-
ConstraintButtonsSubPanel, ObjectConstraintPanel,
|
|
1533
|
+
ConstraintButtonsSubPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
1617
1534
|
):
|
|
1618
1535
|
bl_context: typing.Any
|
|
1619
1536
|
bl_label: typing.Any
|
|
@@ -1627,14 +1544,12 @@ class OBJECT_PT_bActionConstraint_target(
|
|
|
1627
1544
|
"""
|
|
1628
1545
|
|
|
1629
1546
|
:return: The RNA type or default when not found.
|
|
1630
|
-
:rtype: bpy.types.Struct
|
|
1631
1547
|
"""
|
|
1632
1548
|
|
|
1633
1549
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1634
1550
|
"""
|
|
1635
1551
|
|
|
1636
1552
|
:return: The class or default when not found.
|
|
1637
|
-
:rtype: typing.Any
|
|
1638
1553
|
"""
|
|
1639
1554
|
|
|
1640
1555
|
def draw(self, context) -> None:
|
|
@@ -1644,7 +1559,7 @@ class OBJECT_PT_bActionConstraint_target(
|
|
|
1644
1559
|
"""
|
|
1645
1560
|
|
|
1646
1561
|
class OBJECT_PT_bArmatureConstraint(
|
|
1647
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
1562
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
1648
1563
|
):
|
|
1649
1564
|
bl_context: typing.Any
|
|
1650
1565
|
bl_label: typing.Any
|
|
@@ -1658,14 +1573,12 @@ class OBJECT_PT_bArmatureConstraint(
|
|
|
1658
1573
|
"""
|
|
1659
1574
|
|
|
1660
1575
|
:return: The RNA type or default when not found.
|
|
1661
|
-
:rtype: bpy.types.Struct
|
|
1662
1576
|
"""
|
|
1663
1577
|
|
|
1664
1578
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1665
1579
|
"""
|
|
1666
1580
|
|
|
1667
1581
|
:return: The class or default when not found.
|
|
1668
|
-
:rtype: typing.Any
|
|
1669
1582
|
"""
|
|
1670
1583
|
|
|
1671
1584
|
def draw(self, context) -> None:
|
|
@@ -1675,7 +1588,7 @@ class OBJECT_PT_bArmatureConstraint(
|
|
|
1675
1588
|
"""
|
|
1676
1589
|
|
|
1677
1590
|
class OBJECT_PT_bArmatureConstraint_bones(
|
|
1678
|
-
ConstraintButtonsSubPanel, ObjectConstraintPanel,
|
|
1591
|
+
ConstraintButtonsSubPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
1679
1592
|
):
|
|
1680
1593
|
bl_context: typing.Any
|
|
1681
1594
|
bl_label: typing.Any
|
|
@@ -1689,14 +1602,12 @@ class OBJECT_PT_bArmatureConstraint_bones(
|
|
|
1689
1602
|
"""
|
|
1690
1603
|
|
|
1691
1604
|
:return: The RNA type or default when not found.
|
|
1692
|
-
:rtype: bpy.types.Struct
|
|
1693
1605
|
"""
|
|
1694
1606
|
|
|
1695
1607
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1696
1608
|
"""
|
|
1697
1609
|
|
|
1698
1610
|
:return: The class or default when not found.
|
|
1699
|
-
:rtype: typing.Any
|
|
1700
1611
|
"""
|
|
1701
1612
|
|
|
1702
1613
|
def draw(self, context) -> None:
|
|
@@ -1706,7 +1617,7 @@ class OBJECT_PT_bArmatureConstraint_bones(
|
|
|
1706
1617
|
"""
|
|
1707
1618
|
|
|
1708
1619
|
class OBJECT_PT_bCameraSolverConstraint(
|
|
1709
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
1620
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
1710
1621
|
):
|
|
1711
1622
|
bl_context: typing.Any
|
|
1712
1623
|
bl_label: typing.Any
|
|
@@ -1720,14 +1631,12 @@ class OBJECT_PT_bCameraSolverConstraint(
|
|
|
1720
1631
|
"""
|
|
1721
1632
|
|
|
1722
1633
|
:return: The RNA type or default when not found.
|
|
1723
|
-
:rtype: bpy.types.Struct
|
|
1724
1634
|
"""
|
|
1725
1635
|
|
|
1726
1636
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1727
1637
|
"""
|
|
1728
1638
|
|
|
1729
1639
|
:return: The class or default when not found.
|
|
1730
|
-
:rtype: typing.Any
|
|
1731
1640
|
"""
|
|
1732
1641
|
|
|
1733
1642
|
def draw(self, context) -> None:
|
|
@@ -1737,7 +1646,7 @@ class OBJECT_PT_bCameraSolverConstraint(
|
|
|
1737
1646
|
"""
|
|
1738
1647
|
|
|
1739
1648
|
class OBJECT_PT_bChildOfConstraint(
|
|
1740
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
1649
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
1741
1650
|
):
|
|
1742
1651
|
bl_context: typing.Any
|
|
1743
1652
|
bl_label: typing.Any
|
|
@@ -1751,14 +1660,12 @@ class OBJECT_PT_bChildOfConstraint(
|
|
|
1751
1660
|
"""
|
|
1752
1661
|
|
|
1753
1662
|
:return: The RNA type or default when not found.
|
|
1754
|
-
:rtype: bpy.types.Struct
|
|
1755
1663
|
"""
|
|
1756
1664
|
|
|
1757
1665
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1758
1666
|
"""
|
|
1759
1667
|
|
|
1760
1668
|
:return: The class or default when not found.
|
|
1761
|
-
:rtype: typing.Any
|
|
1762
1669
|
"""
|
|
1763
1670
|
|
|
1764
1671
|
def draw(self, context) -> None:
|
|
@@ -1768,7 +1675,7 @@ class OBJECT_PT_bChildOfConstraint(
|
|
|
1768
1675
|
"""
|
|
1769
1676
|
|
|
1770
1677
|
class OBJECT_PT_bClampToConstraint(
|
|
1771
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
1678
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
1772
1679
|
):
|
|
1773
1680
|
bl_context: typing.Any
|
|
1774
1681
|
bl_label: typing.Any
|
|
@@ -1782,14 +1689,12 @@ class OBJECT_PT_bClampToConstraint(
|
|
|
1782
1689
|
"""
|
|
1783
1690
|
|
|
1784
1691
|
:return: The RNA type or default when not found.
|
|
1785
|
-
:rtype: bpy.types.Struct
|
|
1786
1692
|
"""
|
|
1787
1693
|
|
|
1788
1694
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1789
1695
|
"""
|
|
1790
1696
|
|
|
1791
1697
|
:return: The class or default when not found.
|
|
1792
|
-
:rtype: typing.Any
|
|
1793
1698
|
"""
|
|
1794
1699
|
|
|
1795
1700
|
def draw(self, context) -> None:
|
|
@@ -1799,7 +1704,7 @@ class OBJECT_PT_bClampToConstraint(
|
|
|
1799
1704
|
"""
|
|
1800
1705
|
|
|
1801
1706
|
class OBJECT_PT_bDampTrackConstraint(
|
|
1802
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
1707
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
1803
1708
|
):
|
|
1804
1709
|
bl_context: typing.Any
|
|
1805
1710
|
bl_label: typing.Any
|
|
@@ -1813,14 +1718,12 @@ class OBJECT_PT_bDampTrackConstraint(
|
|
|
1813
1718
|
"""
|
|
1814
1719
|
|
|
1815
1720
|
:return: The RNA type or default when not found.
|
|
1816
|
-
:rtype: bpy.types.Struct
|
|
1817
1721
|
"""
|
|
1818
1722
|
|
|
1819
1723
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1820
1724
|
"""
|
|
1821
1725
|
|
|
1822
1726
|
:return: The class or default when not found.
|
|
1823
|
-
:rtype: typing.Any
|
|
1824
1727
|
"""
|
|
1825
1728
|
|
|
1826
1729
|
def draw(self, context) -> None:
|
|
@@ -1830,7 +1733,7 @@ class OBJECT_PT_bDampTrackConstraint(
|
|
|
1830
1733
|
"""
|
|
1831
1734
|
|
|
1832
1735
|
class OBJECT_PT_bDistLimitConstraint(
|
|
1833
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
1736
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
1834
1737
|
):
|
|
1835
1738
|
bl_context: typing.Any
|
|
1836
1739
|
bl_label: typing.Any
|
|
@@ -1844,14 +1747,12 @@ class OBJECT_PT_bDistLimitConstraint(
|
|
|
1844
1747
|
"""
|
|
1845
1748
|
|
|
1846
1749
|
:return: The RNA type or default when not found.
|
|
1847
|
-
:rtype: bpy.types.Struct
|
|
1848
1750
|
"""
|
|
1849
1751
|
|
|
1850
1752
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1851
1753
|
"""
|
|
1852
1754
|
|
|
1853
1755
|
:return: The class or default when not found.
|
|
1854
|
-
:rtype: typing.Any
|
|
1855
1756
|
"""
|
|
1856
1757
|
|
|
1857
1758
|
def draw(self, context) -> None:
|
|
@@ -1861,7 +1762,7 @@ class OBJECT_PT_bDistLimitConstraint(
|
|
|
1861
1762
|
"""
|
|
1862
1763
|
|
|
1863
1764
|
class OBJECT_PT_bFollowPathConstraint(
|
|
1864
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
1765
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
1865
1766
|
):
|
|
1866
1767
|
bl_context: typing.Any
|
|
1867
1768
|
bl_label: typing.Any
|
|
@@ -1875,14 +1776,12 @@ class OBJECT_PT_bFollowPathConstraint(
|
|
|
1875
1776
|
"""
|
|
1876
1777
|
|
|
1877
1778
|
:return: The RNA type or default when not found.
|
|
1878
|
-
:rtype: bpy.types.Struct
|
|
1879
1779
|
"""
|
|
1880
1780
|
|
|
1881
1781
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1882
1782
|
"""
|
|
1883
1783
|
|
|
1884
1784
|
:return: The class or default when not found.
|
|
1885
|
-
:rtype: typing.Any
|
|
1886
1785
|
"""
|
|
1887
1786
|
|
|
1888
1787
|
def draw(self, context) -> None:
|
|
@@ -1892,7 +1791,7 @@ class OBJECT_PT_bFollowPathConstraint(
|
|
|
1892
1791
|
"""
|
|
1893
1792
|
|
|
1894
1793
|
class OBJECT_PT_bFollowTrackConstraint(
|
|
1895
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
1794
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
1896
1795
|
):
|
|
1897
1796
|
bl_context: typing.Any
|
|
1898
1797
|
bl_label: typing.Any
|
|
@@ -1906,14 +1805,12 @@ class OBJECT_PT_bFollowTrackConstraint(
|
|
|
1906
1805
|
"""
|
|
1907
1806
|
|
|
1908
1807
|
:return: The RNA type or default when not found.
|
|
1909
|
-
:rtype: bpy.types.Struct
|
|
1910
1808
|
"""
|
|
1911
1809
|
|
|
1912
1810
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1913
1811
|
"""
|
|
1914
1812
|
|
|
1915
1813
|
:return: The class or default when not found.
|
|
1916
|
-
:rtype: typing.Any
|
|
1917
1814
|
"""
|
|
1918
1815
|
|
|
1919
1816
|
def draw(self, context) -> None:
|
|
@@ -1922,8 +1819,8 @@ class OBJECT_PT_bFollowTrackConstraint(
|
|
|
1922
1819
|
:param context:
|
|
1923
1820
|
"""
|
|
1924
1821
|
|
|
1925
|
-
class
|
|
1926
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
1822
|
+
class OBJECT_PT_bGeometryAttributeConstraint(
|
|
1823
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
1927
1824
|
):
|
|
1928
1825
|
bl_context: typing.Any
|
|
1929
1826
|
bl_label: typing.Any
|
|
@@ -1937,14 +1834,12 @@ class OBJECT_PT_bKinematicConstraint(
|
|
|
1937
1834
|
"""
|
|
1938
1835
|
|
|
1939
1836
|
:return: The RNA type or default when not found.
|
|
1940
|
-
:rtype: bpy.types.Struct
|
|
1941
1837
|
"""
|
|
1942
1838
|
|
|
1943
1839
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1944
1840
|
"""
|
|
1945
1841
|
|
|
1946
1842
|
:return: The class or default when not found.
|
|
1947
|
-
:rtype: typing.Any
|
|
1948
1843
|
"""
|
|
1949
1844
|
|
|
1950
1845
|
def draw(self, context) -> None:
|
|
@@ -1953,8 +1848,8 @@ class OBJECT_PT_bKinematicConstraint(
|
|
|
1953
1848
|
:param context:
|
|
1954
1849
|
"""
|
|
1955
1850
|
|
|
1956
|
-
class
|
|
1957
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
1851
|
+
class OBJECT_PT_bKinematicConstraint(
|
|
1852
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
1958
1853
|
):
|
|
1959
1854
|
bl_context: typing.Any
|
|
1960
1855
|
bl_label: typing.Any
|
|
@@ -1968,14 +1863,12 @@ class OBJECT_PT_bLocLimitConstraint(
|
|
|
1968
1863
|
"""
|
|
1969
1864
|
|
|
1970
1865
|
:return: The RNA type or default when not found.
|
|
1971
|
-
:rtype: bpy.types.Struct
|
|
1972
1866
|
"""
|
|
1973
1867
|
|
|
1974
1868
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1975
1869
|
"""
|
|
1976
1870
|
|
|
1977
1871
|
:return: The class or default when not found.
|
|
1978
|
-
:rtype: typing.Any
|
|
1979
1872
|
"""
|
|
1980
1873
|
|
|
1981
1874
|
def draw(self, context) -> None:
|
|
@@ -1984,8 +1877,8 @@ class OBJECT_PT_bLocLimitConstraint(
|
|
|
1984
1877
|
:param context:
|
|
1985
1878
|
"""
|
|
1986
1879
|
|
|
1987
|
-
class
|
|
1988
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
1880
|
+
class OBJECT_PT_bLocLimitConstraint(
|
|
1881
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
1989
1882
|
):
|
|
1990
1883
|
bl_context: typing.Any
|
|
1991
1884
|
bl_label: typing.Any
|
|
@@ -1999,14 +1892,12 @@ class OBJECT_PT_bLocateLikeConstraint(
|
|
|
1999
1892
|
"""
|
|
2000
1893
|
|
|
2001
1894
|
:return: The RNA type or default when not found.
|
|
2002
|
-
:rtype: bpy.types.Struct
|
|
2003
1895
|
"""
|
|
2004
1896
|
|
|
2005
1897
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2006
1898
|
"""
|
|
2007
1899
|
|
|
2008
1900
|
:return: The class or default when not found.
|
|
2009
|
-
:rtype: typing.Any
|
|
2010
1901
|
"""
|
|
2011
1902
|
|
|
2012
1903
|
def draw(self, context) -> None:
|
|
@@ -2015,8 +1906,8 @@ class OBJECT_PT_bLocateLikeConstraint(
|
|
|
2015
1906
|
:param context:
|
|
2016
1907
|
"""
|
|
2017
1908
|
|
|
2018
|
-
class
|
|
2019
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
1909
|
+
class OBJECT_PT_bLocateLikeConstraint(
|
|
1910
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
2020
1911
|
):
|
|
2021
1912
|
bl_context: typing.Any
|
|
2022
1913
|
bl_label: typing.Any
|
|
@@ -2030,14 +1921,12 @@ class OBJECT_PT_bLockTrackConstraint(
|
|
|
2030
1921
|
"""
|
|
2031
1922
|
|
|
2032
1923
|
:return: The RNA type or default when not found.
|
|
2033
|
-
:rtype: bpy.types.Struct
|
|
2034
1924
|
"""
|
|
2035
1925
|
|
|
2036
1926
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2037
1927
|
"""
|
|
2038
1928
|
|
|
2039
1929
|
:return: The class or default when not found.
|
|
2040
|
-
:rtype: typing.Any
|
|
2041
1930
|
"""
|
|
2042
1931
|
|
|
2043
1932
|
def draw(self, context) -> None:
|
|
@@ -2046,8 +1935,8 @@ class OBJECT_PT_bLockTrackConstraint(
|
|
|
2046
1935
|
:param context:
|
|
2047
1936
|
"""
|
|
2048
1937
|
|
|
2049
|
-
class
|
|
2050
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
1938
|
+
class OBJECT_PT_bLockTrackConstraint(
|
|
1939
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
2051
1940
|
):
|
|
2052
1941
|
bl_context: typing.Any
|
|
2053
1942
|
bl_label: typing.Any
|
|
@@ -2061,14 +1950,12 @@ class OBJECT_PT_bMinMaxConstraint(
|
|
|
2061
1950
|
"""
|
|
2062
1951
|
|
|
2063
1952
|
:return: The RNA type or default when not found.
|
|
2064
|
-
:rtype: bpy.types.Struct
|
|
2065
1953
|
"""
|
|
2066
1954
|
|
|
2067
1955
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2068
1956
|
"""
|
|
2069
1957
|
|
|
2070
1958
|
:return: The class or default when not found.
|
|
2071
|
-
:rtype: typing.Any
|
|
2072
1959
|
"""
|
|
2073
1960
|
|
|
2074
1961
|
def draw(self, context) -> None:
|
|
@@ -2077,8 +1964,8 @@ class OBJECT_PT_bMinMaxConstraint(
|
|
|
2077
1964
|
:param context:
|
|
2078
1965
|
"""
|
|
2079
1966
|
|
|
2080
|
-
class
|
|
2081
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
1967
|
+
class OBJECT_PT_bMinMaxConstraint(
|
|
1968
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
2082
1969
|
):
|
|
2083
1970
|
bl_context: typing.Any
|
|
2084
1971
|
bl_label: typing.Any
|
|
@@ -2092,14 +1979,12 @@ class OBJECT_PT_bObjectSolverConstraint(
|
|
|
2092
1979
|
"""
|
|
2093
1980
|
|
|
2094
1981
|
:return: The RNA type or default when not found.
|
|
2095
|
-
:rtype: bpy.types.Struct
|
|
2096
1982
|
"""
|
|
2097
1983
|
|
|
2098
1984
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2099
1985
|
"""
|
|
2100
1986
|
|
|
2101
1987
|
:return: The class or default when not found.
|
|
2102
|
-
:rtype: typing.Any
|
|
2103
1988
|
"""
|
|
2104
1989
|
|
|
2105
1990
|
def draw(self, context) -> None:
|
|
@@ -2108,8 +1993,8 @@ class OBJECT_PT_bObjectSolverConstraint(
|
|
|
2108
1993
|
:param context:
|
|
2109
1994
|
"""
|
|
2110
1995
|
|
|
2111
|
-
class
|
|
2112
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
1996
|
+
class OBJECT_PT_bObjectSolverConstraint(
|
|
1997
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
2113
1998
|
):
|
|
2114
1999
|
bl_context: typing.Any
|
|
2115
2000
|
bl_label: typing.Any
|
|
@@ -2123,14 +2008,12 @@ class OBJECT_PT_bPivotConstraint(
|
|
|
2123
2008
|
"""
|
|
2124
2009
|
|
|
2125
2010
|
:return: The RNA type or default when not found.
|
|
2126
|
-
:rtype: bpy.types.Struct
|
|
2127
2011
|
"""
|
|
2128
2012
|
|
|
2129
2013
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2130
2014
|
"""
|
|
2131
2015
|
|
|
2132
2016
|
:return: The class or default when not found.
|
|
2133
|
-
:rtype: typing.Any
|
|
2134
2017
|
"""
|
|
2135
2018
|
|
|
2136
2019
|
def draw(self, context) -> None:
|
|
@@ -2139,8 +2022,8 @@ class OBJECT_PT_bPivotConstraint(
|
|
|
2139
2022
|
:param context:
|
|
2140
2023
|
"""
|
|
2141
2024
|
|
|
2142
|
-
class
|
|
2143
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
2025
|
+
class OBJECT_PT_bPivotConstraint(
|
|
2026
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
2144
2027
|
):
|
|
2145
2028
|
bl_context: typing.Any
|
|
2146
2029
|
bl_label: typing.Any
|
|
@@ -2154,14 +2037,12 @@ class OBJECT_PT_bRotLimitConstraint(
|
|
|
2154
2037
|
"""
|
|
2155
2038
|
|
|
2156
2039
|
:return: The RNA type or default when not found.
|
|
2157
|
-
:rtype: bpy.types.Struct
|
|
2158
2040
|
"""
|
|
2159
2041
|
|
|
2160
2042
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2161
2043
|
"""
|
|
2162
2044
|
|
|
2163
2045
|
:return: The class or default when not found.
|
|
2164
|
-
:rtype: typing.Any
|
|
2165
2046
|
"""
|
|
2166
2047
|
|
|
2167
2048
|
def draw(self, context) -> None:
|
|
@@ -2170,8 +2051,8 @@ class OBJECT_PT_bRotLimitConstraint(
|
|
|
2170
2051
|
:param context:
|
|
2171
2052
|
"""
|
|
2172
2053
|
|
|
2173
|
-
class
|
|
2174
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
2054
|
+
class OBJECT_PT_bRotLimitConstraint(
|
|
2055
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
2175
2056
|
):
|
|
2176
2057
|
bl_context: typing.Any
|
|
2177
2058
|
bl_label: typing.Any
|
|
@@ -2185,14 +2066,12 @@ class OBJECT_PT_bRotateLikeConstraint(
|
|
|
2185
2066
|
"""
|
|
2186
2067
|
|
|
2187
2068
|
:return: The RNA type or default when not found.
|
|
2188
|
-
:rtype: bpy.types.Struct
|
|
2189
2069
|
"""
|
|
2190
2070
|
|
|
2191
2071
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2192
2072
|
"""
|
|
2193
2073
|
|
|
2194
2074
|
:return: The class or default when not found.
|
|
2195
|
-
:rtype: typing.Any
|
|
2196
2075
|
"""
|
|
2197
2076
|
|
|
2198
2077
|
def draw(self, context) -> None:
|
|
@@ -2201,8 +2080,8 @@ class OBJECT_PT_bRotateLikeConstraint(
|
|
|
2201
2080
|
:param context:
|
|
2202
2081
|
"""
|
|
2203
2082
|
|
|
2204
|
-
class
|
|
2205
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
2083
|
+
class OBJECT_PT_bRotateLikeConstraint(
|
|
2084
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
2206
2085
|
):
|
|
2207
2086
|
bl_context: typing.Any
|
|
2208
2087
|
bl_label: typing.Any
|
|
@@ -2216,14 +2095,12 @@ class OBJECT_PT_bSameVolumeConstraint(
|
|
|
2216
2095
|
"""
|
|
2217
2096
|
|
|
2218
2097
|
:return: The RNA type or default when not found.
|
|
2219
|
-
:rtype: bpy.types.Struct
|
|
2220
2098
|
"""
|
|
2221
2099
|
|
|
2222
2100
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2223
2101
|
"""
|
|
2224
2102
|
|
|
2225
2103
|
:return: The class or default when not found.
|
|
2226
|
-
:rtype: typing.Any
|
|
2227
2104
|
"""
|
|
2228
2105
|
|
|
2229
2106
|
def draw(self, context) -> None:
|
|
@@ -2232,8 +2109,8 @@ class OBJECT_PT_bSameVolumeConstraint(
|
|
|
2232
2109
|
:param context:
|
|
2233
2110
|
"""
|
|
2234
2111
|
|
|
2235
|
-
class
|
|
2236
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
2112
|
+
class OBJECT_PT_bSameVolumeConstraint(
|
|
2113
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
2237
2114
|
):
|
|
2238
2115
|
bl_context: typing.Any
|
|
2239
2116
|
bl_label: typing.Any
|
|
@@ -2247,14 +2124,12 @@ class OBJECT_PT_bShrinkwrapConstraint(
|
|
|
2247
2124
|
"""
|
|
2248
2125
|
|
|
2249
2126
|
:return: The RNA type or default when not found.
|
|
2250
|
-
:rtype: bpy.types.Struct
|
|
2251
2127
|
"""
|
|
2252
2128
|
|
|
2253
2129
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2254
2130
|
"""
|
|
2255
2131
|
|
|
2256
2132
|
:return: The class or default when not found.
|
|
2257
|
-
:rtype: typing.Any
|
|
2258
2133
|
"""
|
|
2259
2134
|
|
|
2260
2135
|
def draw(self, context) -> None:
|
|
@@ -2263,8 +2138,8 @@ class OBJECT_PT_bShrinkwrapConstraint(
|
|
|
2263
2138
|
:param context:
|
|
2264
2139
|
"""
|
|
2265
2140
|
|
|
2266
|
-
class
|
|
2267
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
2141
|
+
class OBJECT_PT_bShrinkwrapConstraint(
|
|
2142
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
2268
2143
|
):
|
|
2269
2144
|
bl_context: typing.Any
|
|
2270
2145
|
bl_label: typing.Any
|
|
@@ -2278,14 +2153,12 @@ class OBJECT_PT_bSizeLikeConstraint(
|
|
|
2278
2153
|
"""
|
|
2279
2154
|
|
|
2280
2155
|
:return: The RNA type or default when not found.
|
|
2281
|
-
:rtype: bpy.types.Struct
|
|
2282
2156
|
"""
|
|
2283
2157
|
|
|
2284
2158
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2285
2159
|
"""
|
|
2286
2160
|
|
|
2287
2161
|
:return: The class or default when not found.
|
|
2288
|
-
:rtype: typing.Any
|
|
2289
2162
|
"""
|
|
2290
2163
|
|
|
2291
2164
|
def draw(self, context) -> None:
|
|
@@ -2294,8 +2167,8 @@ class OBJECT_PT_bSizeLikeConstraint(
|
|
|
2294
2167
|
:param context:
|
|
2295
2168
|
"""
|
|
2296
2169
|
|
|
2297
|
-
class
|
|
2298
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
2170
|
+
class OBJECT_PT_bSizeLikeConstraint(
|
|
2171
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
2299
2172
|
):
|
|
2300
2173
|
bl_context: typing.Any
|
|
2301
2174
|
bl_label: typing.Any
|
|
@@ -2309,14 +2182,12 @@ class OBJECT_PT_bSizeLimitConstraint(
|
|
|
2309
2182
|
"""
|
|
2310
2183
|
|
|
2311
2184
|
:return: The RNA type or default when not found.
|
|
2312
|
-
:rtype: bpy.types.Struct
|
|
2313
2185
|
"""
|
|
2314
2186
|
|
|
2315
2187
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2316
2188
|
"""
|
|
2317
2189
|
|
|
2318
2190
|
:return: The class or default when not found.
|
|
2319
|
-
:rtype: typing.Any
|
|
2320
2191
|
"""
|
|
2321
2192
|
|
|
2322
2193
|
def draw(self, context) -> None:
|
|
@@ -2325,8 +2196,8 @@ class OBJECT_PT_bSizeLimitConstraint(
|
|
|
2325
2196
|
:param context:
|
|
2326
2197
|
"""
|
|
2327
2198
|
|
|
2328
|
-
class
|
|
2329
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
2199
|
+
class OBJECT_PT_bSizeLimitConstraint(
|
|
2200
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
2330
2201
|
):
|
|
2331
2202
|
bl_context: typing.Any
|
|
2332
2203
|
bl_label: typing.Any
|
|
@@ -2340,14 +2211,12 @@ class OBJECT_PT_bStretchToConstraint(
|
|
|
2340
2211
|
"""
|
|
2341
2212
|
|
|
2342
2213
|
:return: The RNA type or default when not found.
|
|
2343
|
-
:rtype: bpy.types.Struct
|
|
2344
2214
|
"""
|
|
2345
2215
|
|
|
2346
2216
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2347
2217
|
"""
|
|
2348
2218
|
|
|
2349
2219
|
:return: The class or default when not found.
|
|
2350
|
-
:rtype: typing.Any
|
|
2351
2220
|
"""
|
|
2352
2221
|
|
|
2353
2222
|
def draw(self, context) -> None:
|
|
@@ -2356,8 +2225,8 @@ class OBJECT_PT_bStretchToConstraint(
|
|
|
2356
2225
|
:param context:
|
|
2357
2226
|
"""
|
|
2358
2227
|
|
|
2359
|
-
class
|
|
2360
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
2228
|
+
class OBJECT_PT_bStretchToConstraint(
|
|
2229
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
2361
2230
|
):
|
|
2362
2231
|
bl_context: typing.Any
|
|
2363
2232
|
bl_label: typing.Any
|
|
@@ -2371,14 +2240,12 @@ class OBJECT_PT_bTrackToConstraint(
|
|
|
2371
2240
|
"""
|
|
2372
2241
|
|
|
2373
2242
|
:return: The RNA type or default when not found.
|
|
2374
|
-
:rtype: bpy.types.Struct
|
|
2375
2243
|
"""
|
|
2376
2244
|
|
|
2377
2245
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2378
2246
|
"""
|
|
2379
2247
|
|
|
2380
2248
|
:return: The class or default when not found.
|
|
2381
|
-
:rtype: typing.Any
|
|
2382
2249
|
"""
|
|
2383
2250
|
|
|
2384
2251
|
def draw(self, context) -> None:
|
|
@@ -2387,8 +2254,8 @@ class OBJECT_PT_bTrackToConstraint(
|
|
|
2387
2254
|
:param context:
|
|
2388
2255
|
"""
|
|
2389
2256
|
|
|
2390
|
-
class
|
|
2391
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
2257
|
+
class OBJECT_PT_bTrackToConstraint(
|
|
2258
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
2392
2259
|
):
|
|
2393
2260
|
bl_context: typing.Any
|
|
2394
2261
|
bl_label: typing.Any
|
|
@@ -2402,14 +2269,12 @@ class OBJECT_PT_bTransLikeConstraint(
|
|
|
2402
2269
|
"""
|
|
2403
2270
|
|
|
2404
2271
|
:return: The RNA type or default when not found.
|
|
2405
|
-
:rtype: bpy.types.Struct
|
|
2406
2272
|
"""
|
|
2407
2273
|
|
|
2408
2274
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2409
2275
|
"""
|
|
2410
2276
|
|
|
2411
2277
|
:return: The class or default when not found.
|
|
2412
|
-
:rtype: typing.Any
|
|
2413
2278
|
"""
|
|
2414
2279
|
|
|
2415
2280
|
def draw(self, context) -> None:
|
|
@@ -2418,8 +2283,8 @@ class OBJECT_PT_bTransLikeConstraint(
|
|
|
2418
2283
|
:param context:
|
|
2419
2284
|
"""
|
|
2420
2285
|
|
|
2421
|
-
class
|
|
2422
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
2286
|
+
class OBJECT_PT_bTransLikeConstraint(
|
|
2287
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
2423
2288
|
):
|
|
2424
2289
|
bl_context: typing.Any
|
|
2425
2290
|
bl_label: typing.Any
|
|
@@ -2433,14 +2298,12 @@ class OBJECT_PT_bTransformCacheConstraint(
|
|
|
2433
2298
|
"""
|
|
2434
2299
|
|
|
2435
2300
|
:return: The RNA type or default when not found.
|
|
2436
|
-
:rtype: bpy.types.Struct
|
|
2437
2301
|
"""
|
|
2438
2302
|
|
|
2439
2303
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2440
2304
|
"""
|
|
2441
2305
|
|
|
2442
2306
|
:return: The class or default when not found.
|
|
2443
|
-
:rtype: typing.Any
|
|
2444
2307
|
"""
|
|
2445
2308
|
|
|
2446
2309
|
def draw(self, context) -> None:
|
|
@@ -2449,12 +2312,12 @@ class OBJECT_PT_bTransformCacheConstraint(
|
|
|
2449
2312
|
:param context:
|
|
2450
2313
|
"""
|
|
2451
2314
|
|
|
2452
|
-
class
|
|
2453
|
-
|
|
2315
|
+
class OBJECT_PT_bTransformCacheConstraint(
|
|
2316
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
2454
2317
|
):
|
|
2455
2318
|
bl_context: typing.Any
|
|
2456
2319
|
bl_label: typing.Any
|
|
2457
|
-
|
|
2320
|
+
bl_options: typing.Any
|
|
2458
2321
|
bl_region_type: typing.Any
|
|
2459
2322
|
bl_rna: typing.Any
|
|
2460
2323
|
bl_space_type: typing.Any
|
|
@@ -2464,14 +2327,12 @@ class OBJECT_PT_bTransformCacheConstraint_layers(
|
|
|
2464
2327
|
"""
|
|
2465
2328
|
|
|
2466
2329
|
:return: The RNA type or default when not found.
|
|
2467
|
-
:rtype: bpy.types.Struct
|
|
2468
2330
|
"""
|
|
2469
2331
|
|
|
2470
2332
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2471
2333
|
"""
|
|
2472
2334
|
|
|
2473
2335
|
:return: The class or default when not found.
|
|
2474
|
-
:rtype: typing.Any
|
|
2475
2336
|
"""
|
|
2476
2337
|
|
|
2477
2338
|
def draw(self, context) -> None:
|
|
@@ -2480,8 +2341,8 @@ class OBJECT_PT_bTransformCacheConstraint_layers(
|
|
|
2480
2341
|
:param context:
|
|
2481
2342
|
"""
|
|
2482
2343
|
|
|
2483
|
-
class
|
|
2484
|
-
ConstraintButtonsSubPanel, ObjectConstraintPanel,
|
|
2344
|
+
class OBJECT_PT_bTransformCacheConstraint_layers(
|
|
2345
|
+
ConstraintButtonsSubPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
2485
2346
|
):
|
|
2486
2347
|
bl_context: typing.Any
|
|
2487
2348
|
bl_label: typing.Any
|
|
@@ -2495,14 +2356,12 @@ class OBJECT_PT_bTransformCacheConstraint_procedural(
|
|
|
2495
2356
|
"""
|
|
2496
2357
|
|
|
2497
2358
|
:return: The RNA type or default when not found.
|
|
2498
|
-
:rtype: bpy.types.Struct
|
|
2499
2359
|
"""
|
|
2500
2360
|
|
|
2501
2361
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2502
2362
|
"""
|
|
2503
2363
|
|
|
2504
2364
|
:return: The class or default when not found.
|
|
2505
|
-
:rtype: typing.Any
|
|
2506
2365
|
"""
|
|
2507
2366
|
|
|
2508
2367
|
def draw(self, context) -> None:
|
|
@@ -2512,7 +2371,7 @@ class OBJECT_PT_bTransformCacheConstraint_procedural(
|
|
|
2512
2371
|
"""
|
|
2513
2372
|
|
|
2514
2373
|
class OBJECT_PT_bTransformCacheConstraint_time(
|
|
2515
|
-
ConstraintButtonsSubPanel, ObjectConstraintPanel,
|
|
2374
|
+
ConstraintButtonsSubPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
2516
2375
|
):
|
|
2517
2376
|
bl_context: typing.Any
|
|
2518
2377
|
bl_label: typing.Any
|
|
@@ -2526,14 +2385,12 @@ class OBJECT_PT_bTransformCacheConstraint_time(
|
|
|
2526
2385
|
"""
|
|
2527
2386
|
|
|
2528
2387
|
:return: The RNA type or default when not found.
|
|
2529
|
-
:rtype: bpy.types.Struct
|
|
2530
2388
|
"""
|
|
2531
2389
|
|
|
2532
2390
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2533
2391
|
"""
|
|
2534
2392
|
|
|
2535
2393
|
:return: The class or default when not found.
|
|
2536
|
-
:rtype: typing.Any
|
|
2537
2394
|
"""
|
|
2538
2395
|
|
|
2539
2396
|
def draw(self, context) -> None:
|
|
@@ -2543,7 +2400,7 @@ class OBJECT_PT_bTransformCacheConstraint_time(
|
|
|
2543
2400
|
"""
|
|
2544
2401
|
|
|
2545
2402
|
class OBJECT_PT_bTransformCacheConstraint_velocity(
|
|
2546
|
-
ConstraintButtonsSubPanel, ObjectConstraintPanel,
|
|
2403
|
+
ConstraintButtonsSubPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
2547
2404
|
):
|
|
2548
2405
|
bl_context: typing.Any
|
|
2549
2406
|
bl_label: typing.Any
|
|
@@ -2557,14 +2414,12 @@ class OBJECT_PT_bTransformCacheConstraint_velocity(
|
|
|
2557
2414
|
"""
|
|
2558
2415
|
|
|
2559
2416
|
:return: The RNA type or default when not found.
|
|
2560
|
-
:rtype: bpy.types.Struct
|
|
2561
2417
|
"""
|
|
2562
2418
|
|
|
2563
2419
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2564
2420
|
"""
|
|
2565
2421
|
|
|
2566
2422
|
:return: The class or default when not found.
|
|
2567
|
-
:rtype: typing.Any
|
|
2568
2423
|
"""
|
|
2569
2424
|
|
|
2570
2425
|
def draw(self, context) -> None:
|
|
@@ -2574,7 +2429,7 @@ class OBJECT_PT_bTransformCacheConstraint_velocity(
|
|
|
2574
2429
|
"""
|
|
2575
2430
|
|
|
2576
2431
|
class OBJECT_PT_bTransformConstraint(
|
|
2577
|
-
ConstraintButtonsPanel, ObjectConstraintPanel,
|
|
2432
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
2578
2433
|
):
|
|
2579
2434
|
bl_context: typing.Any
|
|
2580
2435
|
bl_label: typing.Any
|
|
@@ -2588,14 +2443,12 @@ class OBJECT_PT_bTransformConstraint(
|
|
|
2588
2443
|
"""
|
|
2589
2444
|
|
|
2590
2445
|
:return: The RNA type or default when not found.
|
|
2591
|
-
:rtype: bpy.types.Struct
|
|
2592
2446
|
"""
|
|
2593
2447
|
|
|
2594
2448
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2595
2449
|
"""
|
|
2596
2450
|
|
|
2597
2451
|
:return: The class or default when not found.
|
|
2598
|
-
:rtype: typing.Any
|
|
2599
2452
|
"""
|
|
2600
2453
|
|
|
2601
2454
|
def draw(self, context) -> None:
|
|
@@ -2605,7 +2458,7 @@ class OBJECT_PT_bTransformConstraint(
|
|
|
2605
2458
|
"""
|
|
2606
2459
|
|
|
2607
2460
|
class OBJECT_PT_bTransformConstraint_destination(
|
|
2608
|
-
ConstraintButtonsSubPanel, ObjectConstraintPanel,
|
|
2461
|
+
ConstraintButtonsSubPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
2609
2462
|
):
|
|
2610
2463
|
bl_context: typing.Any
|
|
2611
2464
|
bl_label: typing.Any
|
|
@@ -2619,14 +2472,12 @@ class OBJECT_PT_bTransformConstraint_destination(
|
|
|
2619
2472
|
"""
|
|
2620
2473
|
|
|
2621
2474
|
:return: The RNA type or default when not found.
|
|
2622
|
-
:rtype: bpy.types.Struct
|
|
2623
2475
|
"""
|
|
2624
2476
|
|
|
2625
2477
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2626
2478
|
"""
|
|
2627
2479
|
|
|
2628
2480
|
:return: The class or default when not found.
|
|
2629
|
-
:rtype: typing.Any
|
|
2630
2481
|
"""
|
|
2631
2482
|
|
|
2632
2483
|
def draw(self, context) -> None:
|
|
@@ -2636,7 +2487,7 @@ class OBJECT_PT_bTransformConstraint_destination(
|
|
|
2636
2487
|
"""
|
|
2637
2488
|
|
|
2638
2489
|
class OBJECT_PT_bTransformConstraint_source(
|
|
2639
|
-
ConstraintButtonsSubPanel, ObjectConstraintPanel,
|
|
2490
|
+
ConstraintButtonsSubPanel, ObjectConstraintPanel, _bpy_types.Panel
|
|
2640
2491
|
):
|
|
2641
2492
|
bl_context: typing.Any
|
|
2642
2493
|
bl_label: typing.Any
|
|
@@ -2650,14 +2501,12 @@ class OBJECT_PT_bTransformConstraint_source(
|
|
|
2650
2501
|
"""
|
|
2651
2502
|
|
|
2652
2503
|
:return: The RNA type or default when not found.
|
|
2653
|
-
:rtype: bpy.types.Struct
|
|
2654
2504
|
"""
|
|
2655
2505
|
|
|
2656
2506
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2657
2507
|
"""
|
|
2658
2508
|
|
|
2659
2509
|
:return: The class or default when not found.
|
|
2660
|
-
:rtype: typing.Any
|
|
2661
2510
|
"""
|
|
2662
2511
|
|
|
2663
2512
|
def draw(self, context) -> None:
|
|
@@ -2666,7 +2515,7 @@ class OBJECT_PT_bTransformConstraint_source(
|
|
|
2666
2515
|
:param context:
|
|
2667
2516
|
"""
|
|
2668
2517
|
|
|
2669
|
-
class OBJECT_PT_constraints(ObjectConstraintPanel,
|
|
2518
|
+
class OBJECT_PT_constraints(ObjectConstraintPanel, _bpy_types.Panel):
|
|
2670
2519
|
bl_context: typing.Any
|
|
2671
2520
|
bl_label: typing.Any
|
|
2672
2521
|
bl_options: typing.Any
|
|
@@ -2679,14 +2528,12 @@ class OBJECT_PT_constraints(ObjectConstraintPanel, bpy.types.Panel):
|
|
|
2679
2528
|
"""
|
|
2680
2529
|
|
|
2681
2530
|
:return: The RNA type or default when not found.
|
|
2682
|
-
:rtype: bpy.types.Struct
|
|
2683
2531
|
"""
|
|
2684
2532
|
|
|
2685
2533
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2686
2534
|
"""
|
|
2687
2535
|
|
|
2688
2536
|
:return: The class or default when not found.
|
|
2689
|
-
:rtype: typing.Any
|
|
2690
2537
|
"""
|
|
2691
2538
|
|
|
2692
2539
|
def draw(self, _context) -> None:
|