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
bpy/ops/pose/__init__.pyi
CHANGED
|
@@ -13,10 +13,7 @@ def armature_apply(
|
|
|
13
13
|
) -> None:
|
|
14
14
|
"""Apply the current pose as the new rest pose
|
|
15
15
|
|
|
16
|
-
:type execution_context: int | str | None
|
|
17
|
-
:type undo: bool | None
|
|
18
16
|
:param selected: Selected Only, Only apply the selected bones (with propagation to children)
|
|
19
|
-
:type selected: bool | None
|
|
20
17
|
"""
|
|
21
18
|
|
|
22
19
|
def autoside_names(
|
|
@@ -28,8 +25,6 @@ def autoside_names(
|
|
|
28
25
|
) -> None:
|
|
29
26
|
"""Automatically renames the selected bones according to which side of the target axis they fall on
|
|
30
27
|
|
|
31
|
-
:type execution_context: int | str | None
|
|
32
|
-
:type undo: bool | None
|
|
33
28
|
:param axis: Axis, Axis to tag names with
|
|
34
29
|
|
|
35
30
|
XAXIS
|
|
@@ -40,7 +35,6 @@ def autoside_names(
|
|
|
40
35
|
|
|
41
36
|
ZAXIS
|
|
42
37
|
Z-Axis -- Top/Bottom.
|
|
43
|
-
:type axis: typing.Literal['XAXIS','YAXIS','ZAXIS'] | None
|
|
44
38
|
"""
|
|
45
39
|
|
|
46
40
|
def blend_to_neighbor(
|
|
@@ -57,14 +51,9 @@ def blend_to_neighbor(
|
|
|
57
51
|
) -> None:
|
|
58
52
|
"""Blend from current position to previous or next keyframe
|
|
59
53
|
|
|
60
|
-
:type execution_context: int | str | None
|
|
61
|
-
:type undo: bool | None
|
|
62
54
|
:param factor: Factor, Weighting factor for which keyframe is favored more
|
|
63
|
-
:type factor: float | None
|
|
64
55
|
:param prev_frame: Previous Keyframe, Frame number of keyframe immediately before the current frame
|
|
65
|
-
:type prev_frame: int | None
|
|
66
56
|
:param next_frame: Next Keyframe, Frame number of keyframe immediately after the current frame
|
|
67
|
-
:type next_frame: int | None
|
|
68
57
|
:param channels: Channels, Set of properties that are affected
|
|
69
58
|
|
|
70
59
|
ALL
|
|
@@ -84,7 +73,6 @@ def blend_to_neighbor(
|
|
|
84
73
|
|
|
85
74
|
CUSTOM
|
|
86
75
|
Custom Properties -- Custom properties.
|
|
87
|
-
:type channels: typing.Literal['ALL','LOC','ROT','SIZE','BBONE','CUSTOM'] | None
|
|
88
76
|
:param axis_lock: Axis Lock, Transform axis to restrict effects to
|
|
89
77
|
|
|
90
78
|
FREE
|
|
@@ -98,7 +86,6 @@ def blend_to_neighbor(
|
|
|
98
86
|
|
|
99
87
|
Z
|
|
100
88
|
Z -- Only Z-axis transforms are affected.
|
|
101
|
-
:type axis_lock: typing.Literal['FREE','X','Y','Z'] | None
|
|
102
89
|
"""
|
|
103
90
|
|
|
104
91
|
def blend_with_rest(
|
|
@@ -115,14 +102,9 @@ def blend_with_rest(
|
|
|
115
102
|
) -> None:
|
|
116
103
|
"""Make the current pose more similar to, or further away from, the rest pose
|
|
117
104
|
|
|
118
|
-
:type execution_context: int | str | None
|
|
119
|
-
:type undo: bool | None
|
|
120
105
|
:param factor: Factor, Weighting factor for which keyframe is favored more
|
|
121
|
-
:type factor: float | None
|
|
122
106
|
:param prev_frame: Previous Keyframe, Frame number of keyframe immediately before the current frame
|
|
123
|
-
:type prev_frame: int | None
|
|
124
107
|
:param next_frame: Next Keyframe, Frame number of keyframe immediately after the current frame
|
|
125
|
-
:type next_frame: int | None
|
|
126
108
|
:param channels: Channels, Set of properties that are affected
|
|
127
109
|
|
|
128
110
|
ALL
|
|
@@ -142,7 +124,6 @@ def blend_with_rest(
|
|
|
142
124
|
|
|
143
125
|
CUSTOM
|
|
144
126
|
Custom Properties -- Custom properties.
|
|
145
|
-
:type channels: typing.Literal['ALL','LOC','ROT','SIZE','BBONE','CUSTOM'] | None
|
|
146
127
|
:param axis_lock: Axis Lock, Transform axis to restrict effects to
|
|
147
128
|
|
|
148
129
|
FREE
|
|
@@ -156,7 +137,6 @@ def blend_with_rest(
|
|
|
156
137
|
|
|
157
138
|
Z
|
|
158
139
|
Z -- Only Z-axis transforms are affected.
|
|
159
|
-
:type axis_lock: typing.Literal['FREE','X','Y','Z'] | None
|
|
160
140
|
"""
|
|
161
141
|
|
|
162
142
|
def breakdown(
|
|
@@ -173,14 +153,9 @@ def breakdown(
|
|
|
173
153
|
) -> None:
|
|
174
154
|
"""Create a suitable breakdown pose on the current frame
|
|
175
155
|
|
|
176
|
-
:type execution_context: int | str | None
|
|
177
|
-
:type undo: bool | None
|
|
178
156
|
:param factor: Factor, Weighting factor for which keyframe is favored more
|
|
179
|
-
:type factor: float | None
|
|
180
157
|
:param prev_frame: Previous Keyframe, Frame number of keyframe immediately before the current frame
|
|
181
|
-
:type prev_frame: int | None
|
|
182
158
|
:param next_frame: Next Keyframe, Frame number of keyframe immediately after the current frame
|
|
183
|
-
:type next_frame: int | None
|
|
184
159
|
:param channels: Channels, Set of properties that are affected
|
|
185
160
|
|
|
186
161
|
ALL
|
|
@@ -200,7 +175,6 @@ def breakdown(
|
|
|
200
175
|
|
|
201
176
|
CUSTOM
|
|
202
177
|
Custom Properties -- Custom properties.
|
|
203
|
-
:type channels: typing.Literal['ALL','LOC','ROT','SIZE','BBONE','CUSTOM'] | None
|
|
204
178
|
:param axis_lock: Axis Lock, Transform axis to restrict effects to
|
|
205
179
|
|
|
206
180
|
FREE
|
|
@@ -214,7 +188,6 @@ def breakdown(
|
|
|
214
188
|
|
|
215
189
|
Z
|
|
216
190
|
Z -- Only Z-axis transforms are affected.
|
|
217
|
-
:type axis_lock: typing.Literal['FREE','X','Y','Z'] | None
|
|
218
191
|
"""
|
|
219
192
|
|
|
220
193
|
def constraint_add(
|
|
@@ -226,10 +199,7 @@ def constraint_add(
|
|
|
226
199
|
) -> None:
|
|
227
200
|
"""Add a constraint to the active bone
|
|
228
201
|
|
|
229
|
-
:type execution_context: int | str | None
|
|
230
|
-
:type undo: bool | None
|
|
231
202
|
:param type: Type
|
|
232
|
-
:type type: bpy.stub_internal.rna_enums.ConstraintTypeItems | None
|
|
233
203
|
"""
|
|
234
204
|
|
|
235
205
|
def constraint_add_with_targets(
|
|
@@ -241,36 +211,29 @@ def constraint_add_with_targets(
|
|
|
241
211
|
) -> None:
|
|
242
212
|
"""Add a constraint to the active bone, with target (where applicable) set to the selected Objects/Bones
|
|
243
213
|
|
|
244
|
-
:type execution_context: int | str | None
|
|
245
|
-
:type undo: bool | None
|
|
246
214
|
:param type: Type
|
|
247
|
-
:type type: bpy.stub_internal.rna_enums.ConstraintTypeItems | None
|
|
248
215
|
"""
|
|
249
216
|
|
|
250
217
|
def constraints_clear(
|
|
251
|
-
execution_context: int | str | None = None,
|
|
218
|
+
execution_context: int | str | None = None,
|
|
219
|
+
undo: bool | None = None,
|
|
220
|
+
/,
|
|
252
221
|
) -> None:
|
|
253
|
-
"""Clear all constraints from the selected bones
|
|
254
|
-
|
|
255
|
-
:type execution_context: int | str | None
|
|
256
|
-
:type undo: bool | None
|
|
257
|
-
"""
|
|
222
|
+
"""Clear all constraints from the selected bones"""
|
|
258
223
|
|
|
259
224
|
def constraints_copy(
|
|
260
|
-
execution_context: int | str | None = None,
|
|
225
|
+
execution_context: int | str | None = None,
|
|
226
|
+
undo: bool | None = None,
|
|
227
|
+
/,
|
|
261
228
|
) -> None:
|
|
262
|
-
"""Copy constraints to other selected bones
|
|
229
|
+
"""Copy constraints to other selected bones"""
|
|
263
230
|
|
|
264
|
-
|
|
265
|
-
:
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
"""Copy the current pose of the selected bones to the internal clipboard
|
|
270
|
-
|
|
271
|
-
:type execution_context: int | str | None
|
|
272
|
-
:type undo: bool | None
|
|
273
|
-
"""
|
|
231
|
+
def copy(
|
|
232
|
+
execution_context: int | str | None = None,
|
|
233
|
+
undo: bool | None = None,
|
|
234
|
+
/,
|
|
235
|
+
) -> None:
|
|
236
|
+
"""Copy the current pose of the selected bones to the internal clipboard"""
|
|
274
237
|
|
|
275
238
|
def flip_names(
|
|
276
239
|
execution_context: int | str | None = None,
|
|
@@ -281,10 +244,7 @@ def flip_names(
|
|
|
281
244
|
) -> None:
|
|
282
245
|
"""Flips (and corrects) the axis suffixes of the names of selected bones
|
|
283
246
|
|
|
284
|
-
:type execution_context: int | str | None
|
|
285
|
-
:type undo: bool | None
|
|
286
247
|
:param do_strip_numbers: Strip Numbers, Try to remove right-most dot-number from flipped names.Warning: May result in incoherent naming in some cases
|
|
287
|
-
:type do_strip_numbers: bool | None
|
|
288
248
|
"""
|
|
289
249
|
|
|
290
250
|
def hide(
|
|
@@ -296,10 +256,7 @@ def hide(
|
|
|
296
256
|
) -> None:
|
|
297
257
|
"""Tag selected bones to not be visible in Pose Mode
|
|
298
258
|
|
|
299
|
-
:type execution_context: int | str | None
|
|
300
|
-
:type undo: bool | None
|
|
301
259
|
:param unselected: Unselected
|
|
302
|
-
:type unselected: bool | None
|
|
303
260
|
"""
|
|
304
261
|
|
|
305
262
|
def ik_add(
|
|
@@ -309,31 +266,24 @@ def ik_add(
|
|
|
309
266
|
*,
|
|
310
267
|
with_targets: bool | None = True,
|
|
311
268
|
) -> None:
|
|
312
|
-
"""Add IK Constraint to the active Bone
|
|
269
|
+
"""Add an IK Constraint to the active Bone. The target can be a selected bone or object
|
|
313
270
|
|
|
314
|
-
:type execution_context: int | str | None
|
|
315
|
-
:type undo: bool | None
|
|
316
271
|
:param with_targets: With Targets, Assign IK Constraint with targets derived from the select bones/objects
|
|
317
|
-
:type with_targets: bool | None
|
|
318
272
|
"""
|
|
319
273
|
|
|
320
274
|
def ik_clear(
|
|
321
|
-
execution_context: int | str | None = None,
|
|
275
|
+
execution_context: int | str | None = None,
|
|
276
|
+
undo: bool | None = None,
|
|
277
|
+
/,
|
|
322
278
|
) -> None:
|
|
323
|
-
"""Remove all IK Constraints from selected bones
|
|
324
|
-
|
|
325
|
-
:type execution_context: int | str | None
|
|
326
|
-
:type undo: bool | None
|
|
327
|
-
"""
|
|
279
|
+
"""Remove all IK Constraints from selected bones"""
|
|
328
280
|
|
|
329
281
|
def loc_clear(
|
|
330
|
-
execution_context: int | str | None = None,
|
|
282
|
+
execution_context: int | str | None = None,
|
|
283
|
+
undo: bool | None = None,
|
|
284
|
+
/,
|
|
331
285
|
) -> None:
|
|
332
|
-
"""Reset locations of selected bones to their default values
|
|
333
|
-
|
|
334
|
-
:type execution_context: int | str | None
|
|
335
|
-
:type undo: bool | None
|
|
336
|
-
"""
|
|
286
|
+
"""Reset locations of selected bones to their default values"""
|
|
337
287
|
|
|
338
288
|
def paste(
|
|
339
289
|
execution_context: int | str | None = None,
|
|
@@ -345,12 +295,8 @@ def paste(
|
|
|
345
295
|
) -> None:
|
|
346
296
|
"""Paste the stored pose on to the current pose
|
|
347
297
|
|
|
348
|
-
:type execution_context: int | str | None
|
|
349
|
-
:type undo: bool | None
|
|
350
298
|
:param flipped: Flipped on X-Axis, Paste the stored pose flipped on to current pose
|
|
351
|
-
:type flipped: bool | None
|
|
352
299
|
:param selected_mask: On Selected Only, Only paste the stored pose on to selected bones in the current pose
|
|
353
|
-
:type selected_mask: bool | None
|
|
354
300
|
"""
|
|
355
301
|
|
|
356
302
|
def paths_calculate(
|
|
@@ -366,14 +312,9 @@ def paths_calculate(
|
|
|
366
312
|
) -> None:
|
|
367
313
|
"""Calculate paths for the selected bones
|
|
368
314
|
|
|
369
|
-
:
|
|
370
|
-
:type undo: bool | None
|
|
371
|
-
:param display_type: Display type
|
|
372
|
-
:type display_type: bpy.stub_internal.rna_enums.MotionpathDisplayTypeItems | None
|
|
315
|
+
:param display_type: Display Type
|
|
373
316
|
:param range: Computation Range
|
|
374
|
-
:type range: bpy.stub_internal.rna_enums.MotionpathRangeItems | None
|
|
375
317
|
:param bake_location: Bake Location, Which point on the bones is used when calculating paths
|
|
376
|
-
:type bake_location: bpy.stub_internal.rna_enums.MotionpathBakeLocationItems | None
|
|
377
318
|
"""
|
|
378
319
|
|
|
379
320
|
def paths_clear(
|
|
@@ -385,29 +326,22 @@ def paths_clear(
|
|
|
385
326
|
) -> None:
|
|
386
327
|
"""Undocumented, consider contributing.
|
|
387
328
|
|
|
388
|
-
:type execution_context: int | str | None
|
|
389
|
-
:type undo: bool | None
|
|
390
329
|
:param only_selected: Only Selected, Only clear motion paths of selected bones
|
|
391
|
-
:type only_selected: bool | None
|
|
392
330
|
"""
|
|
393
331
|
|
|
394
332
|
def paths_range_update(
|
|
395
|
-
execution_context: int | str | None = None,
|
|
333
|
+
execution_context: int | str | None = None,
|
|
334
|
+
undo: bool | None = None,
|
|
335
|
+
/,
|
|
396
336
|
) -> None:
|
|
397
|
-
"""Update frame range for motion paths from the
|
|
398
|
-
|
|
399
|
-
:type execution_context: int | str | None
|
|
400
|
-
:type undo: bool | None
|
|
401
|
-
"""
|
|
337
|
+
"""Update frame range for motion paths from the Scenes current frame range"""
|
|
402
338
|
|
|
403
339
|
def paths_update(
|
|
404
|
-
execution_context: int | str | None = None,
|
|
340
|
+
execution_context: int | str | None = None,
|
|
341
|
+
undo: bool | None = None,
|
|
342
|
+
/,
|
|
405
343
|
) -> None:
|
|
406
|
-
"""Recalculate paths for bones that already have them
|
|
407
|
-
|
|
408
|
-
:type execution_context: int | str | None
|
|
409
|
-
:type undo: bool | None
|
|
410
|
-
"""
|
|
344
|
+
"""Recalculate paths for bones that already have them"""
|
|
411
345
|
|
|
412
346
|
def propagate(
|
|
413
347
|
execution_context: int | str | None = None,
|
|
@@ -427,8 +361,6 @@ def propagate(
|
|
|
427
361
|
) -> None:
|
|
428
362
|
"""Copy selected aspects of the current pose to subsequent poses already keyframed
|
|
429
363
|
|
|
430
|
-
:type execution_context: int | str | None
|
|
431
|
-
:type undo: bool | None
|
|
432
364
|
:param mode: Terminate Mode, Method used to determine when to stop propagating pose to keyframes
|
|
433
365
|
|
|
434
366
|
NEXT_KEY
|
|
@@ -438,7 +370,7 @@ def propagate(
|
|
|
438
370
|
To Last Keyframe -- Propagate pose to the last keyframe only (i.e. making action cyclic).
|
|
439
371
|
|
|
440
372
|
BEFORE_FRAME
|
|
441
|
-
Before Frame -- Propagate pose to all keyframes between current frame and
|
|
373
|
+
Before Frame -- Propagate pose to all keyframes between current frame and Frame property.
|
|
442
374
|
|
|
443
375
|
BEFORE_END
|
|
444
376
|
Before Last Keyframe -- Propagate pose to all keyframes from current frame until no more are found.
|
|
@@ -448,9 +380,7 @@ def propagate(
|
|
|
448
380
|
|
|
449
381
|
SELECTED_MARKERS
|
|
450
382
|
On Selected Markers -- Propagate pose to all keyframes occurring on frames with Scene Markers after the current frame.
|
|
451
|
-
:
|
|
452
|
-
:param end_frame: End Frame, Frame to stop propagating frames to (for 'Before Frame' mode)
|
|
453
|
-
:type end_frame: float | None
|
|
383
|
+
:param end_frame: End Frame, Frame to stop propagating frames to (for Before Frame mode)
|
|
454
384
|
"""
|
|
455
385
|
|
|
456
386
|
def push(
|
|
@@ -467,14 +397,9 @@ def push(
|
|
|
467
397
|
) -> None:
|
|
468
398
|
"""Exaggerate the current pose in regards to the breakdown pose
|
|
469
399
|
|
|
470
|
-
:type execution_context: int | str | None
|
|
471
|
-
:type undo: bool | None
|
|
472
400
|
:param factor: Factor, Weighting factor for which keyframe is favored more
|
|
473
|
-
:type factor: float | None
|
|
474
401
|
:param prev_frame: Previous Keyframe, Frame number of keyframe immediately before the current frame
|
|
475
|
-
:type prev_frame: int | None
|
|
476
402
|
:param next_frame: Next Keyframe, Frame number of keyframe immediately after the current frame
|
|
477
|
-
:type next_frame: int | None
|
|
478
403
|
:param channels: Channels, Set of properties that are affected
|
|
479
404
|
|
|
480
405
|
ALL
|
|
@@ -494,7 +419,6 @@ def push(
|
|
|
494
419
|
|
|
495
420
|
CUSTOM
|
|
496
421
|
Custom Properties -- Custom properties.
|
|
497
|
-
:type channels: typing.Literal['ALL','LOC','ROT','SIZE','BBONE','CUSTOM'] | None
|
|
498
422
|
:param axis_lock: Axis Lock, Transform axis to restrict effects to
|
|
499
423
|
|
|
500
424
|
FREE
|
|
@@ -508,17 +432,14 @@ def push(
|
|
|
508
432
|
|
|
509
433
|
Z
|
|
510
434
|
Z -- Only Z-axis transforms are affected.
|
|
511
|
-
:type axis_lock: typing.Literal['FREE','X','Y','Z'] | None
|
|
512
435
|
"""
|
|
513
436
|
|
|
514
437
|
def quaternions_flip(
|
|
515
|
-
execution_context: int | str | None = None,
|
|
438
|
+
execution_context: int | str | None = None,
|
|
439
|
+
undo: bool | None = None,
|
|
440
|
+
/,
|
|
516
441
|
) -> None:
|
|
517
|
-
"""Flip quaternion values to achieve desired rotations, while maintaining the same orientations
|
|
518
|
-
|
|
519
|
-
:type execution_context: int | str | None
|
|
520
|
-
:type undo: bool | None
|
|
521
|
-
"""
|
|
442
|
+
"""Flip quaternion values to achieve desired rotations, while maintaining the same orientations"""
|
|
522
443
|
|
|
523
444
|
def relax(
|
|
524
445
|
execution_context: int | str | None = None,
|
|
@@ -534,14 +455,9 @@ def relax(
|
|
|
534
455
|
) -> None:
|
|
535
456
|
"""Make the current pose more similar to its breakdown pose
|
|
536
457
|
|
|
537
|
-
:type execution_context: int | str | None
|
|
538
|
-
:type undo: bool | None
|
|
539
458
|
:param factor: Factor, Weighting factor for which keyframe is favored more
|
|
540
|
-
:type factor: float | None
|
|
541
459
|
:param prev_frame: Previous Keyframe, Frame number of keyframe immediately before the current frame
|
|
542
|
-
:type prev_frame: int | None
|
|
543
460
|
:param next_frame: Next Keyframe, Frame number of keyframe immediately after the current frame
|
|
544
|
-
:type next_frame: int | None
|
|
545
461
|
:param channels: Channels, Set of properties that are affected
|
|
546
462
|
|
|
547
463
|
ALL
|
|
@@ -561,7 +477,6 @@ def relax(
|
|
|
561
477
|
|
|
562
478
|
CUSTOM
|
|
563
479
|
Custom Properties -- Custom properties.
|
|
564
|
-
:type channels: typing.Literal['ALL','LOC','ROT','SIZE','BBONE','CUSTOM'] | None
|
|
565
480
|
:param axis_lock: Axis Lock, Transform axis to restrict effects to
|
|
566
481
|
|
|
567
482
|
FREE
|
|
@@ -575,7 +490,6 @@ def relax(
|
|
|
575
490
|
|
|
576
491
|
Z
|
|
577
492
|
Z -- Only Z-axis transforms are affected.
|
|
578
|
-
:type axis_lock: typing.Literal['FREE','X','Y','Z'] | None
|
|
579
493
|
"""
|
|
580
494
|
|
|
581
495
|
def reveal(
|
|
@@ -587,20 +501,15 @@ def reveal(
|
|
|
587
501
|
) -> None:
|
|
588
502
|
"""Reveal all bones hidden in Pose Mode
|
|
589
503
|
|
|
590
|
-
:type execution_context: int | str | None
|
|
591
|
-
:type undo: bool | None
|
|
592
504
|
:param select: Select
|
|
593
|
-
:type select: bool | None
|
|
594
505
|
"""
|
|
595
506
|
|
|
596
507
|
def rot_clear(
|
|
597
|
-
execution_context: int | str | None = None,
|
|
508
|
+
execution_context: int | str | None = None,
|
|
509
|
+
undo: bool | None = None,
|
|
510
|
+
/,
|
|
598
511
|
) -> None:
|
|
599
|
-
"""Reset rotations of selected bones to their default values
|
|
600
|
-
|
|
601
|
-
:type execution_context: int | str | None
|
|
602
|
-
:type undo: bool | None
|
|
603
|
-
"""
|
|
512
|
+
"""Reset rotations of selected bones to their default values"""
|
|
604
513
|
|
|
605
514
|
def rotation_mode_set(
|
|
606
515
|
execution_context: int | str | None = None,
|
|
@@ -611,20 +520,15 @@ def rotation_mode_set(
|
|
|
611
520
|
) -> None:
|
|
612
521
|
"""Set the rotation representation used by selected bones
|
|
613
522
|
|
|
614
|
-
:type execution_context: int | str | None
|
|
615
|
-
:type undo: bool | None
|
|
616
523
|
:param type: Rotation Mode
|
|
617
|
-
:type type: bpy.stub_internal.rna_enums.ObjectRotationModeItems | None
|
|
618
524
|
"""
|
|
619
525
|
|
|
620
526
|
def scale_clear(
|
|
621
|
-
execution_context: int | str | None = None,
|
|
527
|
+
execution_context: int | str | None = None,
|
|
528
|
+
undo: bool | None = None,
|
|
529
|
+
/,
|
|
622
530
|
) -> None:
|
|
623
|
-
"""Reset scaling of selected bones to their default values
|
|
624
|
-
|
|
625
|
-
:type execution_context: int | str | None
|
|
626
|
-
:type undo: bool | None
|
|
627
|
-
"""
|
|
531
|
+
"""Reset scaling of selected bones to their default values"""
|
|
628
532
|
|
|
629
533
|
def select_all(
|
|
630
534
|
execution_context: int | str | None = None,
|
|
@@ -635,8 +539,6 @@ def select_all(
|
|
|
635
539
|
) -> None:
|
|
636
540
|
"""Toggle selection status of all bones
|
|
637
541
|
|
|
638
|
-
:type execution_context: int | str | None
|
|
639
|
-
:type undo: bool | None
|
|
640
542
|
:param action: Action, Selection action to execute
|
|
641
543
|
|
|
642
544
|
TOGGLE
|
|
@@ -650,17 +552,14 @@ def select_all(
|
|
|
650
552
|
|
|
651
553
|
INVERT
|
|
652
554
|
Invert -- Invert selection of all elements.
|
|
653
|
-
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
654
555
|
"""
|
|
655
556
|
|
|
656
557
|
def select_constraint_target(
|
|
657
|
-
execution_context: int | str | None = None,
|
|
558
|
+
execution_context: int | str | None = None,
|
|
559
|
+
undo: bool | None = None,
|
|
560
|
+
/,
|
|
658
561
|
) -> None:
|
|
659
|
-
"""Select bones used as targets for the currently selected bones
|
|
660
|
-
|
|
661
|
-
:type execution_context: int | str | None
|
|
662
|
-
:type undo: bool | None
|
|
663
|
-
"""
|
|
562
|
+
"""Select bones used as targets for the currently selected bones"""
|
|
664
563
|
|
|
665
564
|
def select_grouped(
|
|
666
565
|
execution_context: int | str | None = None,
|
|
@@ -675,16 +574,13 @@ def select_grouped(
|
|
|
675
574
|
"CHILDREN",
|
|
676
575
|
"CHILDREN_IMMEDIATE",
|
|
677
576
|
"PARENT",
|
|
678
|
-
"
|
|
577
|
+
"SIBLINGS",
|
|
679
578
|
]
|
|
680
579
|
| None = "COLLECTION",
|
|
681
580
|
) -> None:
|
|
682
581
|
"""Select all visible bones grouped by similar properties
|
|
683
582
|
|
|
684
|
-
:type execution_context: int | str | None
|
|
685
|
-
:type undo: bool | None
|
|
686
583
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
687
|
-
:type extend: bool | None
|
|
688
584
|
:param type: Type
|
|
689
585
|
|
|
690
586
|
COLLECTION
|
|
@@ -705,9 +601,8 @@ def select_grouped(
|
|
|
705
601
|
PARENT
|
|
706
602
|
Parents -- Select the parents of currently selected bones.
|
|
707
603
|
|
|
708
|
-
|
|
604
|
+
SIBLINGS
|
|
709
605
|
Siblings -- Select all bones that have the same parent as currently selected bones.
|
|
710
|
-
:type type: typing.Literal['COLLECTION','COLOR','KEYINGSET','CHILDREN','CHILDREN_IMMEDIATE','PARENT','SIBILINGS'] | None
|
|
711
606
|
"""
|
|
712
607
|
|
|
713
608
|
def select_hierarchy(
|
|
@@ -720,22 +615,16 @@ def select_hierarchy(
|
|
|
720
615
|
) -> None:
|
|
721
616
|
"""Select immediate parent/children of selected bones
|
|
722
617
|
|
|
723
|
-
:type execution_context: int | str | None
|
|
724
|
-
:type undo: bool | None
|
|
725
618
|
:param direction: Direction
|
|
726
|
-
:type direction: typing.Literal['PARENT','CHILD'] | None
|
|
727
619
|
:param extend: Extend, Extend the selection
|
|
728
|
-
:type extend: bool | None
|
|
729
620
|
"""
|
|
730
621
|
|
|
731
622
|
def select_linked(
|
|
732
|
-
execution_context: int | str | None = None,
|
|
623
|
+
execution_context: int | str | None = None,
|
|
624
|
+
undo: bool | None = None,
|
|
625
|
+
/,
|
|
733
626
|
) -> None:
|
|
734
|
-
"""Select all bones linked by parent/child connections to the current selection
|
|
735
|
-
|
|
736
|
-
:type execution_context: int | str | None
|
|
737
|
-
:type undo: bool | None
|
|
738
|
-
"""
|
|
627
|
+
"""Select all bones linked by parent/child connections to the current selection"""
|
|
739
628
|
|
|
740
629
|
def select_linked_pick(
|
|
741
630
|
execution_context: int | str | None = None,
|
|
@@ -746,10 +635,7 @@ def select_linked_pick(
|
|
|
746
635
|
) -> None:
|
|
747
636
|
"""Select bones linked by parent/child connections under the mouse cursor
|
|
748
637
|
|
|
749
|
-
:type execution_context: int | str | None
|
|
750
|
-
:type undo: bool | None
|
|
751
638
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
752
|
-
:type extend: bool | None
|
|
753
639
|
"""
|
|
754
640
|
|
|
755
641
|
def select_mirror(
|
|
@@ -762,76 +648,58 @@ def select_mirror(
|
|
|
762
648
|
) -> None:
|
|
763
649
|
"""Mirror the bone selection
|
|
764
650
|
|
|
765
|
-
:type execution_context: int | str | None
|
|
766
|
-
:type undo: bool | None
|
|
767
651
|
:param only_active: Active Only, Only operate on the active bone
|
|
768
|
-
:type only_active: bool | None
|
|
769
652
|
:param extend: Extend, Extend the selection
|
|
770
|
-
:type extend: bool | None
|
|
771
653
|
"""
|
|
772
654
|
|
|
773
655
|
def select_parent(
|
|
774
|
-
execution_context: int | str | None = None,
|
|
656
|
+
execution_context: int | str | None = None,
|
|
657
|
+
undo: bool | None = None,
|
|
658
|
+
/,
|
|
775
659
|
) -> None:
|
|
776
|
-
"""Select bones that are parents of the currently selected bones
|
|
777
|
-
|
|
778
|
-
:type execution_context: int | str | None
|
|
779
|
-
:type undo: bool | None
|
|
780
|
-
"""
|
|
660
|
+
"""Select bones that are parents of the currently selected bones"""
|
|
781
661
|
|
|
782
662
|
def selection_set_add(
|
|
783
|
-
execution_context: int | str | None = None,
|
|
663
|
+
execution_context: int | str | None = None,
|
|
664
|
+
undo: bool | None = None,
|
|
665
|
+
/,
|
|
784
666
|
) -> None:
|
|
785
|
-
"""Create a new empty Selection Set
|
|
786
|
-
|
|
787
|
-
:type execution_context: int | str | None
|
|
788
|
-
:type undo: bool | None
|
|
789
|
-
"""
|
|
667
|
+
"""Create a new empty Selection Set"""
|
|
790
668
|
|
|
791
669
|
def selection_set_add_and_assign(
|
|
792
|
-
execution_context: int | str | None = None,
|
|
670
|
+
execution_context: int | str | None = None,
|
|
671
|
+
undo: bool | None = None,
|
|
672
|
+
/,
|
|
793
673
|
) -> None:
|
|
794
|
-
"""Create a new Selection Set with the currently selected bones
|
|
795
|
-
|
|
796
|
-
:type execution_context: int | str | None
|
|
797
|
-
:type undo: bool | None
|
|
798
|
-
"""
|
|
674
|
+
"""Create a new Selection Set with the currently selected bones"""
|
|
799
675
|
|
|
800
676
|
def selection_set_assign(
|
|
801
|
-
execution_context: int | str | None = None,
|
|
677
|
+
execution_context: int | str | None = None,
|
|
678
|
+
undo: bool | None = None,
|
|
679
|
+
/,
|
|
802
680
|
) -> None:
|
|
803
|
-
"""Add selected bones to Selection Set
|
|
804
|
-
|
|
805
|
-
:type execution_context: int | str | None
|
|
806
|
-
:type undo: bool | None
|
|
807
|
-
"""
|
|
681
|
+
"""Add selected bones to Selection Set"""
|
|
808
682
|
|
|
809
683
|
def selection_set_copy(
|
|
810
|
-
execution_context: int | str | None = None,
|
|
684
|
+
execution_context: int | str | None = None,
|
|
685
|
+
undo: bool | None = None,
|
|
686
|
+
/,
|
|
811
687
|
) -> None:
|
|
812
|
-
"""Copy the selected Selection Set(s) to the clipboard
|
|
813
|
-
|
|
814
|
-
:type execution_context: int | str | None
|
|
815
|
-
:type undo: bool | None
|
|
816
|
-
"""
|
|
688
|
+
"""Copy the selected Selection Set(s) to the clipboard"""
|
|
817
689
|
|
|
818
690
|
def selection_set_delete_all(
|
|
819
|
-
execution_context: int | str | None = None,
|
|
691
|
+
execution_context: int | str | None = None,
|
|
692
|
+
undo: bool | None = None,
|
|
693
|
+
/,
|
|
820
694
|
) -> None:
|
|
821
|
-
"""Remove all Selection Sets from this Armature
|
|
822
|
-
|
|
823
|
-
:type execution_context: int | str | None
|
|
824
|
-
:type undo: bool | None
|
|
825
|
-
"""
|
|
695
|
+
"""Remove all Selection Sets from this Armature"""
|
|
826
696
|
|
|
827
697
|
def selection_set_deselect(
|
|
828
|
-
execution_context: int | str | None = None,
|
|
698
|
+
execution_context: int | str | None = None,
|
|
699
|
+
undo: bool | None = None,
|
|
700
|
+
/,
|
|
829
701
|
) -> None:
|
|
830
|
-
"""Remove Selection Set bones from current selection
|
|
831
|
-
|
|
832
|
-
:type execution_context: int | str | None
|
|
833
|
-
:type undo: bool | None
|
|
834
|
-
"""
|
|
702
|
+
"""Remove Selection Set bones from current selection"""
|
|
835
703
|
|
|
836
704
|
def selection_set_move(
|
|
837
705
|
execution_context: int | str | None = None,
|
|
@@ -842,38 +710,29 @@ def selection_set_move(
|
|
|
842
710
|
) -> None:
|
|
843
711
|
"""Move the active Selection Set up/down the list of sets
|
|
844
712
|
|
|
845
|
-
:type execution_context: int | str | None
|
|
846
|
-
:type undo: bool | None
|
|
847
713
|
:param direction: Move Direction, Direction to move the active Selection Set: UP (default) or DOWN
|
|
848
|
-
:type direction: typing.Literal['UP','DOWN'] | None
|
|
849
714
|
"""
|
|
850
715
|
|
|
851
716
|
def selection_set_paste(
|
|
852
|
-
execution_context: int | str | None = None,
|
|
717
|
+
execution_context: int | str | None = None,
|
|
718
|
+
undo: bool | None = None,
|
|
719
|
+
/,
|
|
853
720
|
) -> None:
|
|
854
|
-
"""Add new Selection Set(s) from the clipboard
|
|
855
|
-
|
|
856
|
-
:type execution_context: int | str | None
|
|
857
|
-
:type undo: bool | None
|
|
858
|
-
"""
|
|
721
|
+
"""Add new Selection Set(s) from the clipboard"""
|
|
859
722
|
|
|
860
723
|
def selection_set_remove(
|
|
861
|
-
execution_context: int | str | None = None,
|
|
724
|
+
execution_context: int | str | None = None,
|
|
725
|
+
undo: bool | None = None,
|
|
726
|
+
/,
|
|
862
727
|
) -> None:
|
|
863
|
-
"""Remove a Selection Set from this Armature
|
|
864
|
-
|
|
865
|
-
:type execution_context: int | str | None
|
|
866
|
-
:type undo: bool | None
|
|
867
|
-
"""
|
|
728
|
+
"""Remove a Selection Set from this Armature"""
|
|
868
729
|
|
|
869
730
|
def selection_set_remove_bones(
|
|
870
|
-
execution_context: int | str | None = None,
|
|
731
|
+
execution_context: int | str | None = None,
|
|
732
|
+
undo: bool | None = None,
|
|
733
|
+
/,
|
|
871
734
|
) -> None:
|
|
872
|
-
"""Remove the selected bones from all Selection Sets
|
|
873
|
-
|
|
874
|
-
:type execution_context: int | str | None
|
|
875
|
-
:type undo: bool | None
|
|
876
|
-
"""
|
|
735
|
+
"""Remove the selected bones from all Selection Sets"""
|
|
877
736
|
|
|
878
737
|
def selection_set_select(
|
|
879
738
|
execution_context: int | str | None = None,
|
|
@@ -884,29 +743,22 @@ def selection_set_select(
|
|
|
884
743
|
) -> None:
|
|
885
744
|
"""Select the bones from this Selection Set
|
|
886
745
|
|
|
887
|
-
:type execution_context: int | str | None
|
|
888
|
-
:type undo: bool | None
|
|
889
746
|
:param selection_set_index: Selection Set Index, Which Selection Set to select; -1 uses the active Selection Set
|
|
890
|
-
:type selection_set_index: int | None
|
|
891
747
|
"""
|
|
892
748
|
|
|
893
749
|
def selection_set_unassign(
|
|
894
|
-
execution_context: int | str | None = None,
|
|
750
|
+
execution_context: int | str | None = None,
|
|
751
|
+
undo: bool | None = None,
|
|
752
|
+
/,
|
|
895
753
|
) -> None:
|
|
896
|
-
"""Remove selected bones from Selection Set
|
|
897
|
-
|
|
898
|
-
:type execution_context: int | str | None
|
|
899
|
-
:type undo: bool | None
|
|
900
|
-
"""
|
|
754
|
+
"""Remove selected bones from Selection Set"""
|
|
901
755
|
|
|
902
756
|
def transforms_clear(
|
|
903
|
-
execution_context: int | str | None = None,
|
|
757
|
+
execution_context: int | str | None = None,
|
|
758
|
+
undo: bool | None = None,
|
|
759
|
+
/,
|
|
904
760
|
) -> None:
|
|
905
|
-
"""Reset location, rotation, and scaling of selected bones to their default values
|
|
906
|
-
|
|
907
|
-
:type execution_context: int | str | None
|
|
908
|
-
:type undo: bool | None
|
|
909
|
-
"""
|
|
761
|
+
"""Reset location, rotation, and scaling of selected bones to their default values"""
|
|
910
762
|
|
|
911
763
|
def user_transforms_clear(
|
|
912
764
|
execution_context: int | str | None = None,
|
|
@@ -917,17 +769,12 @@ def user_transforms_clear(
|
|
|
917
769
|
) -> None:
|
|
918
770
|
"""Reset pose bone transforms to keyframed state
|
|
919
771
|
|
|
920
|
-
:type execution_context: int | str | None
|
|
921
|
-
:type undo: bool | None
|
|
922
772
|
:param only_selected: Only Selected, Only visible/selected bones
|
|
923
|
-
:type only_selected: bool | None
|
|
924
773
|
"""
|
|
925
774
|
|
|
926
775
|
def visual_transform_apply(
|
|
927
|
-
execution_context: int | str | None = None,
|
|
776
|
+
execution_context: int | str | None = None,
|
|
777
|
+
undo: bool | None = None,
|
|
778
|
+
/,
|
|
928
779
|
) -> None:
|
|
929
|
-
"""Apply final constrained position of pose bones to their transform
|
|
930
|
-
|
|
931
|
-
:type execution_context: int | str | None
|
|
932
|
-
:type undo: bool | None
|
|
933
|
-
"""
|
|
780
|
+
"""Apply final constrained position of pose bones to their transform"""
|