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/armature/__init__.pyi
CHANGED
|
@@ -4,12 +4,12 @@ import typing_extensions
|
|
|
4
4
|
import numpy.typing as npt
|
|
5
5
|
import bpy.ops.transform
|
|
6
6
|
|
|
7
|
-
def align(
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
"""
|
|
7
|
+
def align(
|
|
8
|
+
execution_context: int | str | None = None,
|
|
9
|
+
undo: bool | None = None,
|
|
10
|
+
/,
|
|
11
|
+
) -> None:
|
|
12
|
+
"""Align selected bones to the active bone (or to their parent)"""
|
|
13
13
|
|
|
14
14
|
def assign_to_collection(
|
|
15
15
|
execution_context: int | str | None = None,
|
|
@@ -21,12 +21,8 @@ def assign_to_collection(
|
|
|
21
21
|
) -> None:
|
|
22
22
|
"""Assign all selected bones to a collection, or unassign them, depending on whether the active bone is already assigned or not
|
|
23
23
|
|
|
24
|
-
:type execution_context: int | str | None
|
|
25
|
-
:type undo: bool | None
|
|
26
24
|
:param collection_index: Collection Index, Index of the collection to assign selected bones to. When the operator should create a new bone collection, use new_collection_name to define the collection name, and set this parameter to the parent index of the new bone collection
|
|
27
|
-
:type collection_index: int | None
|
|
28
25
|
:param new_collection_name: Name, Name of a to-be-added bone collection. Only pass this if you want to create a new bone collection and assign the selected bones to it. To assign to an existing collection, do not include this parameter and use collection_index
|
|
29
|
-
:type new_collection_name: str
|
|
30
26
|
"""
|
|
31
27
|
|
|
32
28
|
def autoside_names(
|
|
@@ -38,8 +34,6 @@ def autoside_names(
|
|
|
38
34
|
) -> None:
|
|
39
35
|
"""Automatically renames the selected bones according to which side of the target axis they fall on
|
|
40
36
|
|
|
41
|
-
:type execution_context: int | str | None
|
|
42
|
-
:type undo: bool | None
|
|
43
37
|
:param type: Axis, Axis to tag names with
|
|
44
38
|
|
|
45
39
|
XAXIS
|
|
@@ -50,7 +44,6 @@ def autoside_names(
|
|
|
50
44
|
|
|
51
45
|
ZAXIS
|
|
52
46
|
Z-Axis -- Top/Bottom.
|
|
53
|
-
:type type: typing.Literal['XAXIS','YAXIS','ZAXIS'] | None
|
|
54
47
|
"""
|
|
55
48
|
|
|
56
49
|
def bone_primitive_add(
|
|
@@ -58,14 +51,11 @@ def bone_primitive_add(
|
|
|
58
51
|
undo: bool | None = None,
|
|
59
52
|
/,
|
|
60
53
|
*,
|
|
61
|
-
name: str = "",
|
|
54
|
+
name: str = "Bone",
|
|
62
55
|
) -> None:
|
|
63
56
|
"""Add a new bone located at the 3D cursor
|
|
64
57
|
|
|
65
|
-
:type execution_context: int | str | None
|
|
66
|
-
:type undo: bool | None
|
|
67
58
|
:param name: Name, Name of the newly created bone
|
|
68
|
-
:type name: str
|
|
69
59
|
"""
|
|
70
60
|
|
|
71
61
|
def calculate_roll(
|
|
@@ -92,35 +82,26 @@ def calculate_roll(
|
|
|
92
82
|
axis_flip: bool | None = False,
|
|
93
83
|
axis_only: bool | None = False,
|
|
94
84
|
) -> None:
|
|
95
|
-
"""Automatically fix alignment of select bones
|
|
85
|
+
"""Automatically fix alignment of select bones axes
|
|
96
86
|
|
|
97
|
-
:type execution_context: int | str | None
|
|
98
|
-
:type undo: bool | None
|
|
99
87
|
:param type: Type
|
|
100
|
-
:type type: typing.Literal['POS_X','POS_Z','GLOBAL_POS_X','GLOBAL_POS_Y','GLOBAL_POS_Z','NEG_X','NEG_Z','GLOBAL_NEG_X','GLOBAL_NEG_Y','GLOBAL_NEG_Z','ACTIVE','VIEW','CURSOR'] | None
|
|
101
88
|
:param axis_flip: Flip Axis, Negate the alignment axis
|
|
102
|
-
:type axis_flip: bool | None
|
|
103
89
|
:param axis_only: Shortest Rotation, Ignore the axis direction, use the shortest rotation to align
|
|
104
|
-
:type axis_only: bool | None
|
|
105
90
|
"""
|
|
106
91
|
|
|
107
92
|
def click_extrude(
|
|
108
|
-
execution_context: int | str | None = None,
|
|
93
|
+
execution_context: int | str | None = None,
|
|
94
|
+
undo: bool | None = None,
|
|
95
|
+
/,
|
|
109
96
|
) -> None:
|
|
110
|
-
"""Create a new bone going from the last selected joint to the mouse position
|
|
111
|
-
|
|
112
|
-
:type execution_context: int | str | None
|
|
113
|
-
:type undo: bool | None
|
|
114
|
-
"""
|
|
97
|
+
"""Create a new bone going from the last selected joint to the mouse position"""
|
|
115
98
|
|
|
116
99
|
def collection_add(
|
|
117
|
-
execution_context: int | str | None = None,
|
|
100
|
+
execution_context: int | str | None = None,
|
|
101
|
+
undo: bool | None = None,
|
|
102
|
+
/,
|
|
118
103
|
) -> None:
|
|
119
|
-
"""Add a new bone collection
|
|
120
|
-
|
|
121
|
-
:type execution_context: int | str | None
|
|
122
|
-
:type undo: bool | None
|
|
123
|
-
"""
|
|
104
|
+
"""Add a new bone collection"""
|
|
124
105
|
|
|
125
106
|
def collection_assign(
|
|
126
107
|
execution_context: int | str | None = None,
|
|
@@ -131,10 +112,7 @@ def collection_assign(
|
|
|
131
112
|
) -> None:
|
|
132
113
|
"""Add selected bones to the chosen bone collection
|
|
133
114
|
|
|
134
|
-
:type execution_context: int | str | None
|
|
135
|
-
:type undo: bool | None
|
|
136
115
|
:param name: Bone Collection, Name of the bone collection to assign this bone to; empty to assign to the active bone collection
|
|
137
|
-
:type name: str
|
|
138
116
|
"""
|
|
139
117
|
|
|
140
118
|
def collection_create_and_assign(
|
|
@@ -146,20 +124,15 @@ def collection_create_and_assign(
|
|
|
146
124
|
) -> None:
|
|
147
125
|
"""Create a new bone collection and assign all selected bones
|
|
148
126
|
|
|
149
|
-
:type execution_context: int | str | None
|
|
150
|
-
:type undo: bool | None
|
|
151
127
|
:param name: Bone Collection, Name of the bone collection to create
|
|
152
|
-
:type name: str
|
|
153
128
|
"""
|
|
154
129
|
|
|
155
130
|
def collection_deselect(
|
|
156
|
-
execution_context: int | str | None = None,
|
|
131
|
+
execution_context: int | str | None = None,
|
|
132
|
+
undo: bool | None = None,
|
|
133
|
+
/,
|
|
157
134
|
) -> None:
|
|
158
|
-
"""Deselect bones of active Bone Collection
|
|
159
|
-
|
|
160
|
-
:type execution_context: int | str | None
|
|
161
|
-
:type undo: bool | None
|
|
162
|
-
"""
|
|
135
|
+
"""Deselect bones of active Bone Collection"""
|
|
163
136
|
|
|
164
137
|
def collection_move(
|
|
165
138
|
execution_context: int | str | None = None,
|
|
@@ -170,47 +143,36 @@ def collection_move(
|
|
|
170
143
|
) -> None:
|
|
171
144
|
"""Change position of active Bone Collection in list of Bone collections
|
|
172
145
|
|
|
173
|
-
:type execution_context: int | str | None
|
|
174
|
-
:type undo: bool | None
|
|
175
146
|
:param direction: Direction, Direction to move the active Bone Collection towards
|
|
176
|
-
:type direction: typing.Literal['UP','DOWN'] | None
|
|
177
147
|
"""
|
|
178
148
|
|
|
179
149
|
def collection_remove(
|
|
180
|
-
execution_context: int | str | None = None,
|
|
150
|
+
execution_context: int | str | None = None,
|
|
151
|
+
undo: bool | None = None,
|
|
152
|
+
/,
|
|
181
153
|
) -> None:
|
|
182
|
-
"""Remove the active bone collection
|
|
183
|
-
|
|
184
|
-
:type execution_context: int | str | None
|
|
185
|
-
:type undo: bool | None
|
|
186
|
-
"""
|
|
154
|
+
"""Remove the active bone collection"""
|
|
187
155
|
|
|
188
156
|
def collection_remove_unused(
|
|
189
|
-
execution_context: int | str | None = None,
|
|
157
|
+
execution_context: int | str | None = None,
|
|
158
|
+
undo: bool | None = None,
|
|
159
|
+
/,
|
|
190
160
|
) -> None:
|
|
191
|
-
"""Remove all bone collections that have neither bones nor children. This is done recursively, so bone collections that only have unused children are also removed
|
|
192
|
-
|
|
193
|
-
:type execution_context: int | str | None
|
|
194
|
-
:type undo: bool | None
|
|
195
|
-
"""
|
|
161
|
+
"""Remove all bone collections that have neither bones nor children. This is done recursively, so bone collections that only have unused children are also removed"""
|
|
196
162
|
|
|
197
163
|
def collection_select(
|
|
198
|
-
execution_context: int | str | None = None,
|
|
164
|
+
execution_context: int | str | None = None,
|
|
165
|
+
undo: bool | None = None,
|
|
166
|
+
/,
|
|
199
167
|
) -> None:
|
|
200
|
-
"""Select bones in active Bone Collection
|
|
201
|
-
|
|
202
|
-
:type execution_context: int | str | None
|
|
203
|
-
:type undo: bool | None
|
|
204
|
-
"""
|
|
168
|
+
"""Select bones in active Bone Collection"""
|
|
205
169
|
|
|
206
170
|
def collection_show_all(
|
|
207
|
-
execution_context: int | str | None = None,
|
|
171
|
+
execution_context: int | str | None = None,
|
|
172
|
+
undo: bool | None = None,
|
|
173
|
+
/,
|
|
208
174
|
) -> None:
|
|
209
|
-
"""Show all bone collections
|
|
210
|
-
|
|
211
|
-
:type execution_context: int | str | None
|
|
212
|
-
:type undo: bool | None
|
|
213
|
-
"""
|
|
175
|
+
"""Show all bone collections"""
|
|
214
176
|
|
|
215
177
|
def collection_unassign(
|
|
216
178
|
execution_context: int | str | None = None,
|
|
@@ -221,10 +183,7 @@ def collection_unassign(
|
|
|
221
183
|
) -> None:
|
|
222
184
|
"""Remove selected bones from the active bone collection
|
|
223
185
|
|
|
224
|
-
:type execution_context: int | str | None
|
|
225
|
-
:type undo: bool | None
|
|
226
186
|
:param name: Bone Collection, Name of the bone collection to unassign this bone from; empty to unassign from the active bone collection
|
|
227
|
-
:type name: str
|
|
228
187
|
"""
|
|
229
188
|
|
|
230
189
|
def collection_unassign_named(
|
|
@@ -237,22 +196,16 @@ def collection_unassign_named(
|
|
|
237
196
|
) -> None:
|
|
238
197
|
"""Unassign the named bone from this bone collection
|
|
239
198
|
|
|
240
|
-
:type execution_context: int | str | None
|
|
241
|
-
:type undo: bool | None
|
|
242
199
|
:param name: Bone Collection, Name of the bone collection to unassign this bone from; empty to unassign from the active bone collection
|
|
243
|
-
:type name: str
|
|
244
200
|
:param bone_name: Bone Name, Name of the bone to unassign from the collection; empty to use the active bone
|
|
245
|
-
:type bone_name: str
|
|
246
201
|
"""
|
|
247
202
|
|
|
248
203
|
def collection_unsolo_all(
|
|
249
|
-
execution_context: int | str | None = None,
|
|
204
|
+
execution_context: int | str | None = None,
|
|
205
|
+
undo: bool | None = None,
|
|
206
|
+
/,
|
|
250
207
|
) -> None:
|
|
251
|
-
"""Clear the
|
|
252
|
-
|
|
253
|
-
:type execution_context: int | str | None
|
|
254
|
-
:type undo: bool | None
|
|
255
|
-
"""
|
|
208
|
+
"""Clear the solo setting on all bone collections"""
|
|
256
209
|
|
|
257
210
|
def copy_bone_color_to_selected(
|
|
258
211
|
execution_context: int | str | None = None,
|
|
@@ -263,8 +216,6 @@ def copy_bone_color_to_selected(
|
|
|
263
216
|
) -> None:
|
|
264
217
|
"""Copy the bone color of the active bone to all selected bones
|
|
265
218
|
|
|
266
|
-
:type execution_context: int | str | None
|
|
267
|
-
:type undo: bool | None
|
|
268
219
|
:param bone_type: Type
|
|
269
220
|
|
|
270
221
|
EDIT
|
|
@@ -272,7 +223,6 @@ def copy_bone_color_to_selected(
|
|
|
272
223
|
|
|
273
224
|
POSE
|
|
274
225
|
Pose Bone -- Copy Pose Bone colors from the active pose bone to all selected pose bones.
|
|
275
|
-
:type bone_type: typing.Literal['EDIT','POSE'] | None
|
|
276
226
|
"""
|
|
277
227
|
|
|
278
228
|
def delete(
|
|
@@ -284,20 +234,15 @@ def delete(
|
|
|
284
234
|
) -> None:
|
|
285
235
|
"""Remove selected bones from the armature
|
|
286
236
|
|
|
287
|
-
:type execution_context: int | str | None
|
|
288
|
-
:type undo: bool | None
|
|
289
237
|
:param confirm: Confirm, Prompt for confirmation
|
|
290
|
-
:type confirm: bool | None
|
|
291
238
|
"""
|
|
292
239
|
|
|
293
240
|
def dissolve(
|
|
294
|
-
execution_context: int | str | None = None,
|
|
241
|
+
execution_context: int | str | None = None,
|
|
242
|
+
undo: bool | None = None,
|
|
243
|
+
/,
|
|
295
244
|
) -> None:
|
|
296
|
-
"""Dissolve selected bones from the armature
|
|
297
|
-
|
|
298
|
-
:type execution_context: int | str | None
|
|
299
|
-
:type undo: bool | None
|
|
300
|
-
"""
|
|
245
|
+
"""Dissolve selected bones from the armature"""
|
|
301
246
|
|
|
302
247
|
def duplicate(
|
|
303
248
|
execution_context: int | str | None = None,
|
|
@@ -308,10 +253,7 @@ def duplicate(
|
|
|
308
253
|
) -> None:
|
|
309
254
|
"""Make copies of the selected bones within the same armature
|
|
310
255
|
|
|
311
|
-
:type execution_context: int | str | None
|
|
312
|
-
:type undo: bool | None
|
|
313
256
|
:param do_flip_names: Flip Names, Try to flip names of the bones, if possible, instead of adding a number extension
|
|
314
|
-
:type do_flip_names: bool | None
|
|
315
257
|
"""
|
|
316
258
|
|
|
317
259
|
def duplicate_move(
|
|
@@ -324,12 +266,8 @@ def duplicate_move(
|
|
|
324
266
|
) -> None:
|
|
325
267
|
"""Make copies of the selected bones within the same armature and move them
|
|
326
268
|
|
|
327
|
-
:type execution_context: int | str | None
|
|
328
|
-
:type undo: bool | None
|
|
329
269
|
:param ARMATURE_OT_duplicate: Duplicate Selected Bone(s), Make copies of the selected bones within the same armature
|
|
330
|
-
:type ARMATURE_OT_duplicate: duplicate | None
|
|
331
270
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
332
|
-
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
333
271
|
"""
|
|
334
272
|
|
|
335
273
|
def extrude(
|
|
@@ -341,10 +279,7 @@ def extrude(
|
|
|
341
279
|
) -> None:
|
|
342
280
|
"""Create new bones from the selected joints
|
|
343
281
|
|
|
344
|
-
:type execution_context: int | str | None
|
|
345
|
-
:type undo: bool | None
|
|
346
282
|
:param forked: Forked
|
|
347
|
-
:type forked: bool | None
|
|
348
283
|
"""
|
|
349
284
|
|
|
350
285
|
def extrude_forked(
|
|
@@ -357,12 +292,8 @@ def extrude_forked(
|
|
|
357
292
|
) -> None:
|
|
358
293
|
"""Create new bones from the selected joints and move them
|
|
359
294
|
|
|
360
|
-
:type execution_context: int | str | None
|
|
361
|
-
:type undo: bool | None
|
|
362
295
|
:param ARMATURE_OT_extrude: Extrude, Create new bones from the selected joints
|
|
363
|
-
:type ARMATURE_OT_extrude: extrude | None
|
|
364
296
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
365
|
-
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
366
297
|
"""
|
|
367
298
|
|
|
368
299
|
def extrude_move(
|
|
@@ -375,20 +306,16 @@ def extrude_move(
|
|
|
375
306
|
) -> None:
|
|
376
307
|
"""Create new bones from the selected joints and move them
|
|
377
308
|
|
|
378
|
-
:type execution_context: int | str | None
|
|
379
|
-
:type undo: bool | None
|
|
380
309
|
:param ARMATURE_OT_extrude: Extrude, Create new bones from the selected joints
|
|
381
|
-
:type ARMATURE_OT_extrude: extrude | None
|
|
382
310
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
383
|
-
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
384
311
|
"""
|
|
385
312
|
|
|
386
|
-
def fill(
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
"""
|
|
313
|
+
def fill(
|
|
314
|
+
execution_context: int | str | None = None,
|
|
315
|
+
undo: bool | None = None,
|
|
316
|
+
/,
|
|
317
|
+
) -> None:
|
|
318
|
+
"""Add bone between selected joint(s) and/or 3D cursor"""
|
|
392
319
|
|
|
393
320
|
def flip_names(
|
|
394
321
|
execution_context: int | str | None = None,
|
|
@@ -399,10 +326,7 @@ def flip_names(
|
|
|
399
326
|
) -> None:
|
|
400
327
|
"""Flips (and corrects) the axis suffixes of the names of selected bones
|
|
401
328
|
|
|
402
|
-
:type execution_context: int | str | None
|
|
403
|
-
:type undo: bool | None
|
|
404
329
|
: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
|
|
405
|
-
:type do_strip_numbers: bool | None
|
|
406
330
|
"""
|
|
407
331
|
|
|
408
332
|
def hide(
|
|
@@ -414,10 +338,7 @@ def hide(
|
|
|
414
338
|
) -> None:
|
|
415
339
|
"""Tag selected bones to not be visible in Edit Mode
|
|
416
340
|
|
|
417
|
-
:type execution_context: int | str | None
|
|
418
|
-
:type undo: bool | None
|
|
419
341
|
:param unselected: Unselected, Hide unselected rather than selected
|
|
420
|
-
:type unselected: bool | None
|
|
421
342
|
"""
|
|
422
343
|
|
|
423
344
|
def move_to_collection(
|
|
@@ -430,12 +351,8 @@ def move_to_collection(
|
|
|
430
351
|
) -> None:
|
|
431
352
|
"""Move bones to a collection
|
|
432
353
|
|
|
433
|
-
:type execution_context: int | str | None
|
|
434
|
-
:type undo: bool | None
|
|
435
354
|
:param collection_index: Collection Index, Index of the collection to move selected bones to. When the operator should create a new bone collection, do not include this parameter and pass new_collection_name
|
|
436
|
-
:type collection_index: int | None
|
|
437
355
|
:param new_collection_name: Name, Name of a to-be-added bone collection. Only pass this if you want to create a new bone collection and move the selected bones to it. To move to an existing collection, do not include this parameter and use collection_index
|
|
438
|
-
:type new_collection_name: str
|
|
439
356
|
"""
|
|
440
357
|
|
|
441
358
|
def parent_clear(
|
|
@@ -447,10 +364,7 @@ def parent_clear(
|
|
|
447
364
|
) -> None:
|
|
448
365
|
"""Remove the parent-child relationship between selected bones and their parents
|
|
449
366
|
|
|
450
|
-
:type execution_context: int | str | None
|
|
451
|
-
:type undo: bool | None
|
|
452
367
|
:param type: Clear Type, What way to clear parenting
|
|
453
|
-
:type type: typing.Literal['CLEAR','DISCONNECT'] | None
|
|
454
368
|
"""
|
|
455
369
|
|
|
456
370
|
def parent_set(
|
|
@@ -462,10 +376,7 @@ def parent_set(
|
|
|
462
376
|
) -> None:
|
|
463
377
|
"""Set the active bone as the parent of the selected bones
|
|
464
378
|
|
|
465
|
-
:type execution_context: int | str | None
|
|
466
|
-
:type undo: bool | None
|
|
467
379
|
:param type: Parent Type, Type of parenting
|
|
468
|
-
:type type: typing.Literal['CONNECTED','OFFSET'] | None
|
|
469
380
|
"""
|
|
470
381
|
|
|
471
382
|
def reveal(
|
|
@@ -477,10 +388,7 @@ def reveal(
|
|
|
477
388
|
) -> None:
|
|
478
389
|
"""Reveal all bones hidden in Edit Mode
|
|
479
390
|
|
|
480
|
-
:type execution_context: int | str | None
|
|
481
|
-
:type undo: bool | None
|
|
482
391
|
:param select: Select
|
|
483
|
-
:type select: bool | None
|
|
484
392
|
"""
|
|
485
393
|
|
|
486
394
|
def roll_clear(
|
|
@@ -492,10 +400,7 @@ def roll_clear(
|
|
|
492
400
|
) -> None:
|
|
493
401
|
"""Clear roll for selected bones
|
|
494
402
|
|
|
495
|
-
:type execution_context: int | str | None
|
|
496
|
-
:type undo: bool | None
|
|
497
403
|
:param roll: Roll
|
|
498
|
-
:type roll: float | None
|
|
499
404
|
"""
|
|
500
405
|
|
|
501
406
|
def select_all(
|
|
@@ -507,8 +412,6 @@ def select_all(
|
|
|
507
412
|
) -> None:
|
|
508
413
|
"""Toggle selection status of all bones
|
|
509
414
|
|
|
510
|
-
:type execution_context: int | str | None
|
|
511
|
-
:type undo: bool | None
|
|
512
415
|
:param action: Action, Selection action to execute
|
|
513
416
|
|
|
514
417
|
TOGGLE
|
|
@@ -522,7 +425,6 @@ def select_all(
|
|
|
522
425
|
|
|
523
426
|
INVERT
|
|
524
427
|
Invert -- Invert selection of all elements.
|
|
525
|
-
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
526
428
|
"""
|
|
527
429
|
|
|
528
430
|
def select_hierarchy(
|
|
@@ -535,22 +437,16 @@ def select_hierarchy(
|
|
|
535
437
|
) -> None:
|
|
536
438
|
"""Select immediate parent/children of selected bones
|
|
537
439
|
|
|
538
|
-
:type execution_context: int | str | None
|
|
539
|
-
:type undo: bool | None
|
|
540
440
|
:param direction: Direction
|
|
541
|
-
:type direction: typing.Literal['PARENT','CHILD'] | None
|
|
542
441
|
:param extend: Extend, Extend the selection
|
|
543
|
-
:type extend: bool | None
|
|
544
442
|
"""
|
|
545
443
|
|
|
546
444
|
def select_less(
|
|
547
|
-
execution_context: int | str | None = None,
|
|
445
|
+
execution_context: int | str | None = None,
|
|
446
|
+
undo: bool | None = None,
|
|
447
|
+
/,
|
|
548
448
|
) -> None:
|
|
549
|
-
"""Deselect those bones at the boundary of each selection region
|
|
550
|
-
|
|
551
|
-
:type execution_context: int | str | None
|
|
552
|
-
:type undo: bool | None
|
|
553
|
-
"""
|
|
449
|
+
"""Deselect those bones at the boundary of each selection region"""
|
|
554
450
|
|
|
555
451
|
def select_linked(
|
|
556
452
|
execution_context: int | str | None = None,
|
|
@@ -561,10 +457,7 @@ def select_linked(
|
|
|
561
457
|
) -> None:
|
|
562
458
|
"""Select all bones linked by parent/child connections to the current selection
|
|
563
459
|
|
|
564
|
-
:type execution_context: int | str | None
|
|
565
|
-
:type undo: bool | None
|
|
566
460
|
:param all_forks: All Forks, Follow forks in the parents chain
|
|
567
|
-
:type all_forks: bool | None
|
|
568
461
|
"""
|
|
569
462
|
|
|
570
463
|
def select_linked_pick(
|
|
@@ -577,12 +470,8 @@ def select_linked_pick(
|
|
|
577
470
|
) -> None:
|
|
578
471
|
"""(De)select bones linked by parent/child connections under the mouse cursor
|
|
579
472
|
|
|
580
|
-
:type execution_context: int | str | None
|
|
581
|
-
:type undo: bool | None
|
|
582
473
|
:param deselect: Deselect
|
|
583
|
-
:type deselect: bool | None
|
|
584
474
|
:param all_forks: All Forks, Follow forks in the parents chain
|
|
585
|
-
:type all_forks: bool | None
|
|
586
475
|
"""
|
|
587
476
|
|
|
588
477
|
def select_mirror(
|
|
@@ -595,22 +484,16 @@ def select_mirror(
|
|
|
595
484
|
) -> None:
|
|
596
485
|
"""Mirror the bone selection
|
|
597
486
|
|
|
598
|
-
:type execution_context: int | str | None
|
|
599
|
-
:type undo: bool | None
|
|
600
487
|
:param only_active: Active Only, Only operate on the active bone
|
|
601
|
-
:type only_active: bool | None
|
|
602
488
|
:param extend: Extend, Extend the selection
|
|
603
|
-
:type extend: bool | None
|
|
604
489
|
"""
|
|
605
490
|
|
|
606
491
|
def select_more(
|
|
607
|
-
execution_context: int | str | None = None,
|
|
492
|
+
execution_context: int | str | None = None,
|
|
493
|
+
undo: bool | None = None,
|
|
494
|
+
/,
|
|
608
495
|
) -> None:
|
|
609
|
-
"""Select those bones connected to the initial selection
|
|
610
|
-
|
|
611
|
-
:type execution_context: int | str | None
|
|
612
|
-
:type undo: bool | None
|
|
613
|
-
"""
|
|
496
|
+
"""Select those bones connected to the initial selection"""
|
|
614
497
|
|
|
615
498
|
def select_similar(
|
|
616
499
|
execution_context: int | str | None = None,
|
|
@@ -634,38 +517,30 @@ def select_similar(
|
|
|
634
517
|
) -> None:
|
|
635
518
|
"""Select similar bones by property types
|
|
636
519
|
|
|
637
|
-
:type execution_context: int | str | None
|
|
638
|
-
:type undo: bool | None
|
|
639
520
|
:param type: Type
|
|
640
|
-
:type type: typing.Literal['CHILDREN','CHILDREN_IMMEDIATE','SIBLINGS','LENGTH','DIRECTION','PREFIX','SUFFIX','BONE_COLLECTION','COLOR','SHAPE'] | None
|
|
641
521
|
:param threshold: Threshold
|
|
642
|
-
:type threshold: float | None
|
|
643
522
|
"""
|
|
644
523
|
|
|
645
524
|
def separate(
|
|
646
|
-
execution_context: int | str | None = None,
|
|
525
|
+
execution_context: int | str | None = None,
|
|
526
|
+
undo: bool | None = None,
|
|
527
|
+
/,
|
|
647
528
|
) -> None:
|
|
648
|
-
"""Isolate selected bones into a separate armature
|
|
649
|
-
|
|
650
|
-
:type execution_context: int | str | None
|
|
651
|
-
:type undo: bool | None
|
|
652
|
-
"""
|
|
529
|
+
"""Isolate selected bones into a separate armature"""
|
|
653
530
|
|
|
654
531
|
def shortest_path_pick(
|
|
655
|
-
execution_context: int | str | None = None,
|
|
532
|
+
execution_context: int | str | None = None,
|
|
533
|
+
undo: bool | None = None,
|
|
534
|
+
/,
|
|
656
535
|
) -> None:
|
|
657
|
-
"""Select shortest path between two bones
|
|
658
|
-
|
|
659
|
-
:type execution_context: int | str | None
|
|
660
|
-
:type undo: bool | None
|
|
661
|
-
"""
|
|
536
|
+
"""Select shortest path between two bones"""
|
|
662
537
|
|
|
663
|
-
def split(
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
"""
|
|
538
|
+
def split(
|
|
539
|
+
execution_context: int | str | None = None,
|
|
540
|
+
undo: bool | None = None,
|
|
541
|
+
/,
|
|
542
|
+
) -> None:
|
|
543
|
+
"""Split off selected bones from connected unselected bones"""
|
|
669
544
|
|
|
670
545
|
def subdivide(
|
|
671
546
|
execution_context: int | str | None = None,
|
|
@@ -676,20 +551,15 @@ def subdivide(
|
|
|
676
551
|
) -> None:
|
|
677
552
|
"""Break selected bones into chains of smaller bones
|
|
678
553
|
|
|
679
|
-
:type execution_context: int | str | None
|
|
680
|
-
:type undo: bool | None
|
|
681
554
|
:param number_cuts: Number of Cuts
|
|
682
|
-
:type number_cuts: int | None
|
|
683
555
|
"""
|
|
684
556
|
|
|
685
557
|
def switch_direction(
|
|
686
|
-
execution_context: int | str | None = None,
|
|
558
|
+
execution_context: int | str | None = None,
|
|
559
|
+
undo: bool | None = None,
|
|
560
|
+
/,
|
|
687
561
|
) -> None:
|
|
688
|
-
"""Change the direction that a chain of bones points in (head and tail swap)
|
|
689
|
-
|
|
690
|
-
:type execution_context: int | str | None
|
|
691
|
-
:type undo: bool | None
|
|
692
|
-
"""
|
|
562
|
+
"""Change the direction that a chain of bones points in (head and tail swap)"""
|
|
693
563
|
|
|
694
564
|
def symmetrize(
|
|
695
565
|
execution_context: int | str | None = None,
|
|
@@ -697,11 +567,10 @@ def symmetrize(
|
|
|
697
567
|
/,
|
|
698
568
|
*,
|
|
699
569
|
direction: typing.Literal["NEGATIVE_X", "POSITIVE_X"] | None = "NEGATIVE_X",
|
|
570
|
+
copy_bone_colors: bool | None = False,
|
|
700
571
|
) -> None:
|
|
701
572
|
"""Enforce symmetry, make copies of the selection or use existing
|
|
702
573
|
|
|
703
|
-
:type execution_context: int | str | None
|
|
704
|
-
:type undo: bool | None
|
|
705
574
|
:param direction: Direction, Which sides to copy from and to (when both are selected)
|
|
706
|
-
:
|
|
575
|
+
:param copy_bone_colors: Bone Colors, Copy colors to existing bones
|
|
707
576
|
"""
|