fake-bpy-module 20240224__py3-none-any.whl → 20240326__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- addon_utils/__init__.pyi +54 -10
- animsys_refactor/__init__.pyi +36 -6
- aud/__init__.pyi +132 -125
- bgl/__init__.pyi +2545 -546
- bl_app_override/__init__.pyi +14 -3
- bl_app_override/helpers/__init__.pyi +24 -2
- bl_app_template_utils/__init__.pyi +19 -4
- bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
- bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
- bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
- bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
- bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
- bl_i18n_utils/merge_po/__init__.pyi +4 -1
- bl_i18n_utils/settings/__init__.pyi +53 -6
- bl_i18n_utils/utils/__init__.pyi +332 -44
- bl_i18n_utils/utils_cli/__init__.pyi +29 -6
- bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
- bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
- bl_keymap_utils/io/__init__.pyi +44 -9
- bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
- bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
- bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
- bl_keymap_utils/versioning/__init__.pyi +4 -1
- bl_math/__init__.pyi +3 -3
- bl_operators/__init__.pyi +9 -2
- bl_operators/add_mesh_torus/__init__.pyi +171 -37
- bl_operators/anim/__init__.pyi +1065 -226
- bl_operators/assets/__init__.pyi +427 -92
- bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
- bl_operators/clip/__init__.pyi +1342 -287
- bl_operators/console/__init__.pyi +647 -140
- bl_operators/constraint/__init__.pyi +524 -112
- bl_operators/file/__init__.pyi +396 -84
- bl_operators/freestyle/__init__.pyi +532 -113
- bl_operators/geometry_nodes/__init__.pyi +2412 -596
- bl_operators/image/__init__.pyi +380 -82
- bl_operators/mesh/__init__.pyi +401 -85
- bl_operators/node/__init__.pyi +1756 -384
- bl_operators/object/__init__.pyi +2022 -552
- bl_operators/object_align/__init__.pyi +145 -31
- bl_operators/object_quick_effects/__init__.pyi +555 -124
- bl_operators/object_randomize_transform/__init__.pyi +136 -32
- bl_operators/presets/__init__.pyi +3516 -708
- bl_operators/rigidbody/__init__.pyi +401 -85
- bl_operators/screen_play_rendered_anim/__init__.pyi +129 -29
- bl_operators/sequencer/__init__.pyi +731 -149
- bl_operators/spreadsheet/__init__.pyi +145 -30
- bl_operators/userpref/__init__.pyi +3416 -824
- bl_operators/uvcalc_follow_active/__init__.pyi +149 -32
- bl_operators/uvcalc_lightmap/__init__.pyi +187 -34
- bl_operators/uvcalc_transform/__init__.pyi +344 -73
- bl_operators/vertexpaint_dirt/__init__.pyi +140 -30
- bl_operators/view3d/__init__.pyi +697 -146
- bl_operators/wm/__init__.pyi +6287 -1533
- bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
- bl_rna_utils/data_path/__init__.pyi +12 -2
- bl_text_utils/external_editor/__init__.pyi +4 -1
- bl_ui/__init__.pyi +504 -106
- bl_ui/anim/__init__.pyi +164 -33
- bl_ui/asset_shelf/__init__.pyi +146 -31
- bl_ui/generic_ui_list/__init__.pyi +471 -99
- bl_ui/node_add_menu/__init__.pyi +196 -40
- bl_ui/node_add_menu_compositor/__init__.pyi +3017 -621
- bl_ui/node_add_menu_geometry/__init__.pyi +8060 -1625
- bl_ui/node_add_menu_shader/__init__.pyi +1709 -348
- bl_ui/node_add_menu_texture/__init__.pyi +1502 -305
- bl_ui/properties_animviz/__init__.pyi +32 -2
- bl_ui/properties_collection/__init__.pyi +787 -179
- bl_ui/properties_constraint/__init__.pyi +28635 -5523
- bl_ui/properties_data_armature/__init__.pyi +1905 -448
- bl_ui/properties_data_bone/__init__.pyi +1560 -336
- bl_ui/properties_data_camera/__init__.pyi +2269 -494
- bl_ui/properties_data_curve/__init__.pyi +2362 -534
- bl_ui/properties_data_curves/__init__.pyi +951 -203
- bl_ui/properties_data_empty/__init__.pyi +317 -69
- bl_ui/properties_data_gpencil/__init__.pyi +2924 -734
- bl_ui/properties_data_grease_pencil/__init__.pyi +1631 -188
- bl_ui/properties_data_lattice/__init__.pyi +472 -104
- bl_ui/properties_data_light/__init__.pyi +1570 -337
- bl_ui/properties_data_lightprobe/__init__.pyi +938 -208
- bl_ui/properties_data_mesh/__init__.pyi +3205 -767
- bl_ui/properties_data_metaball/__init__.pyi +774 -170
- bl_ui/properties_data_modifier/__init__.pyi +1554 -328
- bl_ui/properties_data_pointcloud/__init__.pyi +821 -194
- bl_ui/properties_data_shaderfx/__init__.pyi +154 -34
- bl_ui/properties_data_speaker/__init__.pyi +782 -168
- bl_ui/properties_data_volume/__init__.pyi +1243 -281
- bl_ui/properties_freestyle/__init__.pyi +4071 -1030
- bl_ui/properties_grease_pencil_common/__init__.pyi +2399 -483
- bl_ui/properties_mask_common/__init__.pyi +1256 -249
- bl_ui/properties_material/__init__.pyi +2351 -542
- bl_ui/properties_material_gpencil/__init__.pyi +1590 -365
- bl_ui/properties_object/__init__.pyi +2179 -512
- bl_ui/properties_output/__init__.pyi +2956 -705
- bl_ui/properties_paint_common/__init__.pyi +947 -140
- bl_ui/properties_particle/__init__.pyi +8322 -1970
- bl_ui/properties_physics_cloth/__init__.pyi +2254 -508
- bl_ui/properties_physics_common/__init__.pyi +200 -44
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +4454 -965
- bl_ui/properties_physics_field/__init__.pyi +1695 -364
- bl_ui/properties_physics_fluid/__init__.pyi +6127 -1280
- bl_ui/properties_physics_geometry_nodes/__init__.pyi +157 -32
- bl_ui/properties_physics_rigidbody/__init__.pyi +1254 -278
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2053 -483
- bl_ui/properties_physics_softbody/__init__.pyi +2394 -542
- bl_ui/properties_render/__init__.pyi +8312 -1933
- bl_ui/properties_scene/__init__.pyi +2211 -539
- bl_ui/properties_texture/__init__.pyi +4185 -1013
- bl_ui/properties_view_layer/__init__.pyi +2803 -664
- bl_ui/properties_workspace/__init__.pyi +626 -148
- bl_ui/properties_world/__init__.pyi +1092 -234
- bl_ui/space_clip/__init__.pyi +11475 -2805
- bl_ui/space_console/__init__.pyi +967 -202
- bl_ui/space_dopesheet/__init__.pyi +4260 -966
- bl_ui/space_filebrowser/__init__.pyi +4852 -1187
- bl_ui/space_graph/__init__.pyi +3251 -702
- bl_ui/space_image/__init__.pyi +12219 -2968
- bl_ui/space_info/__init__.pyi +964 -200
- bl_ui/space_nla/__init__.pyi +2756 -584
- bl_ui/space_node/__init__.pyi +5661 -1265
- bl_ui/space_outliner/__init__.pyi +2294 -478
- bl_ui/space_properties/__init__.pyi +417 -92
- bl_ui/space_sequencer/__init__.pyi +12436 -3009
- bl_ui/space_spreadsheet/__init__.pyi +184 -36
- bl_ui/space_statusbar/__init__.pyi +135 -30
- bl_ui/space_text/__init__.pyi +2556 -542
- bl_ui/space_time/__init__.pyi +1151 -243
- bl_ui/space_toolsystem_common/__init__.pyi +368 -66
- bl_ui/space_toolsystem_toolbar/__init__.pyi +1378 -228
- bl_ui/space_topbar/__init__.pyi +4214 -887
- bl_ui/space_userpref/__init__.pyi +13920 -3468
- bl_ui/space_view3d/__init__.pyi +43701 -10599
- bl_ui/space_view3d_toolbar/__init__.pyi +16380 -3860
- bl_ui/utils/__init__.pyi +42 -4
- bl_ui_utils/bug_report_url/__init__.pyi +4 -1
- bl_ui_utils/layout/__init__.pyi +4 -1
- blend_render_info/__init__.pyi +13 -3
- blf/__init__.pyi +5 -7
- bmesh/__init__.pyi +7 -7
- bmesh/geometry/__init__.pyi +5 -5
- bmesh/ops/__init__.pyi +490 -504
- bmesh/types/__init__.pyi +268 -262
- bmesh/utils/__init__.pyi +55 -55
- bpy/__init__.pyi +2 -2
- bpy/app/__init__.pyi +4 -5
- bpy/app/handlers/__init__.pyi +36 -36
- bpy/app/icons/__init__.pyi +8 -10
- bpy/app/timers/__init__.pyi +9 -11
- bpy/app/translations/__init__.pyi +20 -22
- bpy/msgbus/__init__.pyi +3 -12
- bpy/ops/action/__init__.pyi +350 -305
- bpy/ops/anim/__init__.pyi +464 -426
- bpy/ops/armature/__init__.pyi +392 -360
- bpy/ops/asset/__init__.pyi +166 -129
- bpy/ops/boid/__init__.pyi +64 -37
- bpy/ops/brush/__init__.pyi +78 -72
- bpy/ops/buttons/__init__.pyi +136 -122
- bpy/ops/cachefile/__init__.pyi +128 -123
- bpy/ops/camera/__init__.pyi +22 -24
- bpy/ops/clip/__init__.pyi +844 -735
- bpy/ops/cloth/__init__.pyi +10 -11
- bpy/ops/collection/__init__.pyi +38 -38
- bpy/ops/console/__init__.pyi +170 -141
- bpy/ops/constraint/__init__.pyi +156 -159
- bpy/ops/curve/__init__.pyi +518 -461
- bpy/ops/curves/__init__.pyi +188 -159
- bpy/ops/cycles/__init__.pyi +20 -18
- bpy/ops/dpaint/__init__.pyi +40 -30
- bpy/ops/ed/__init__.pyi +136 -107
- bpy/ops/export_anim/__init__.pyi +18 -19
- bpy/ops/export_mesh/__init__.pyi +26 -27
- bpy/ops/export_scene/__init__.pyi +313 -334
- bpy/ops/file/__init__.pyi +394 -304
- bpy/ops/fluid/__init__.pyi +114 -63
- bpy/ops/font/__init__.pyi +272 -245
- bpy/ops/geometry/__init__.pyi +92 -87
- bpy/ops/gizmogroup/__init__.pyi +24 -21
- bpy/ops/gpencil/__init__.pyi +1530 -1476
- bpy/ops/graph/__init__.pyi +680 -659
- bpy/ops/grease_pencil/__init__.pyi +510 -390
- bpy/ops/image/__init__.pyi +650 -603
- bpy/ops/import_anim/__init__.pyi +26 -27
- bpy/ops/import_curve/__init__.pyi +6 -7
- bpy/ops/import_mesh/__init__.pyi +18 -21
- bpy/ops/import_scene/__init__.pyi +86 -95
- bpy/ops/info/__init__.pyi +68 -55
- bpy/ops/lattice/__init__.pyi +70 -63
- bpy/ops/marker/__init__.pyi +110 -111
- bpy/ops/mask/__init__.pyi +352 -308
- bpy/ops/material/__init__.pyi +24 -12
- bpy/ops/mball/__init__.pyi +72 -75
- bpy/ops/mesh/__init__.pyi +2052 -2088
- bpy/ops/nla/__init__.pyi +369 -313
- bpy/ops/node/__init__.pyi +944 -805
- bpy/ops/object/__init__.pyi +2662 -2461
- bpy/ops/outliner/__init__.pyi +582 -431
- bpy/ops/paint/__init__.pyi +605 -516
- bpy/ops/paintcurve/__init__.pyi +72 -60
- bpy/ops/palette/__init__.pyi +54 -46
- bpy/ops/particle/__init__.pyi +302 -245
- bpy/ops/pose/__init__.pyi +366 -330
- bpy/ops/poselib/__init__.pyi +78 -64
- bpy/ops/preferences/__init__.pyi +361 -341
- bpy/ops/ptcache/__init__.pyi +56 -38
- bpy/ops/render/__init__.pyi +120 -117
- bpy/ops/rigidbody/__init__.pyi +114 -97
- bpy/ops/scene/__init__.pyi +302 -240
- bpy/ops/screen/__init__.pyi +414 -363
- bpy/ops/script/__init__.pyi +20 -18
- bpy/ops/sculpt/__init__.pyi +414 -452
- bpy/ops/sculpt_curves/__init__.pyi +42 -43
- bpy/ops/sequencer/__init__.pyi +1094 -1053
- bpy/ops/sound/__init__.pyi +214 -206
- bpy/ops/spreadsheet/__init__.pyi +34 -28
- bpy/ops/surface/__init__.pyi +108 -114
- bpy/ops/text/__init__.pyi +432 -350
- bpy/ops/text_editor/__init__.pyi +10 -11
- bpy/ops/texture/__init__.pyi +32 -21
- bpy/ops/transform/__init__.pyi +801 -854
- bpy/ops/ui/__init__.pyi +254 -185
- bpy/ops/uilist/__init__.pyi +20 -23
- bpy/ops/uv/__init__.pyi +618 -626
- bpy/ops/view2d/__init__.pyi +162 -161
- bpy/ops/view3d/__init__.pyi +669 -658
- bpy/ops/wm/__init__.pyi +2433 -2415
- bpy/ops/workspace/__init__.pyi +54 -31
- bpy/ops/world/__init__.pyi +8 -4
- bpy/path/__init__.pyi +111 -68
- bpy/props/__init__.pyi +263 -267
- bpy/types/__init__.pyi +86789 -85719
- bpy/utils/__init__.pyi +265 -123
- bpy/utils/previews/__init__.pyi +103 -17
- bpy/utils/units/__init__.pyi +19 -22
- bpy_extras/__init__.pyi +0 -4
- bpy_extras/anim_utils/__init__.pyi +11 -46
- bpy_extras/asset_utils/__init__.pyi +3 -12
- bpy_extras/id_map_utils/__init__.pyi +0 -2
- bpy_extras/image_utils/__init__.pyi +2 -2
- bpy_extras/io_utils/__init__.pyi +30 -27
- bpy_extras/keyconfig_utils/__init__.pyi +4 -1
- bpy_extras/mesh_utils/__init__.pyi +18 -18
- bpy_extras/node_utils/__init__.pyi +4 -3
- bpy_extras/object_utils/__init__.pyi +25 -26
- bpy_extras/view3d_utils/__init__.pyi +33 -38
- bpy_restrict_state/__init__.pyi +14 -1
- bpy_types/__init__.pyi +3873 -997
- console_python/__init__.pyi +41 -7
- console_shell/__init__.pyi +24 -5
- {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/METADATA +1 -1
- fake_bpy_module-20240326.dist-info/RECORD +343 -0
- {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/WHEEL +1 -1
- freestyle/chainingiterators/__init__.pyi +50 -52
- freestyle/functions/__init__.pyi +303 -207
- freestyle/predicates/__init__.pyi +299 -115
- freestyle/shaders/__init__.pyi +49 -80
- freestyle/types/__init__.pyi +465 -472
- freestyle/utils/ContextFunctions/__init__.pyi +9 -9
- freestyle/utils/__init__.pyi +28 -18
- gpu/capabilities/__init__.pyi +27 -19
- gpu/matrix/__init__.pyi +14 -16
- gpu/platform/__init__.pyi +5 -5
- gpu/shader/__init__.pyi +2 -5
- gpu/state/__init__.pyi +1 -1
- gpu/texture/__init__.pyi +3 -3
- gpu/types/__init__.pyi +54 -85
- gpu_extras/batch/__init__.pyi +27 -5
- gpu_extras/presets/__init__.pyi +52 -14
- graphviz_export/__init__.pyi +9 -2
- idprop/types/__init__.pyi +36 -12
- imbuf/__init__.pyi +8 -9
- imbuf/types/__init__.pyi +8 -15
- keyingsets_builtins/__init__.pyi +3149 -701
- keyingsets_utils/__init__.pyi +69 -14
- mathutils/__init__.pyi +502 -427
- mathutils/bvhtree/__init__.pyi +28 -32
- mathutils/geometry/__init__.pyi +177 -186
- mathutils/kdtree/__init__.pyi +16 -18
- mathutils/noise/__init__.pyi +47 -48
- nodeitems_builtins/__init__.pyi +50 -10
- nodeitems_utils/__init__.pyi +58 -10
- rna_info/__init__.pyi +230 -26
- rna_keymap_ui/__init__.pyi +29 -6
- rna_prop_ui/__init__.pyi +69 -12
- rna_xml/__init__.pyi +29 -6
- sys_info/__init__.pyi +4 -1
- bpy_extras/bmesh_utils/__init__.pyi +0 -6
- bpy_extras/extensions/__init__.pyi +0 -4
- bpy_extras/extensions/junction_module/__init__.pyi +0 -12
- bpy_extras/node_shader_utils/__init__.pyi +0 -131
- bpy_extras/wm_utils/__init__.pyi +0 -4
- bpy_extras/wm_utils/progress_report/__init__.pyi +0 -29
- fake_bpy_module-20240224.dist-info/RECORD +0 -349
- {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/top_level.txt +0 -0
bpy/ops/pose/__init__.pyi
CHANGED
|
@@ -4,35 +4,33 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def armature_apply(
|
|
7
|
-
override_context=None,
|
|
8
|
-
execution_context=None,
|
|
9
|
-
undo=None,
|
|
10
|
-
|
|
11
|
-
selected: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
7
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
8
|
+
execution_context: typing.Union[str, int] = None,
|
|
9
|
+
undo: bool = None,
|
|
10
|
+
selected: typing.Union[bool, typing.Any] = False,
|
|
12
11
|
):
|
|
13
12
|
"""Apply the current pose as the new rest pose
|
|
14
13
|
|
|
15
|
-
:type override_context: typing.
|
|
16
|
-
:type execution_context: typing.
|
|
17
|
-
:type undo:
|
|
14
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
15
|
+
:type execution_context: typing.Union[str, int]
|
|
16
|
+
:type undo: bool
|
|
18
17
|
:param selected: Selected Only, Only apply the selected bones (with propagation to children)
|
|
19
|
-
:type selected: typing.
|
|
18
|
+
:type selected: typing.Union[bool, typing.Any]
|
|
20
19
|
"""
|
|
21
20
|
|
|
22
21
|
...
|
|
23
22
|
|
|
24
23
|
def autoside_names(
|
|
25
|
-
override_context=None,
|
|
26
|
-
execution_context=None,
|
|
27
|
-
undo=None,
|
|
28
|
-
|
|
29
|
-
axis: typing.Optional[typing.Any] = "XAXIS",
|
|
24
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
25
|
+
execution_context: typing.Union[str, int] = None,
|
|
26
|
+
undo: bool = None,
|
|
27
|
+
axis: typing.Any = "XAXIS",
|
|
30
28
|
):
|
|
31
29
|
"""Automatically renames the selected bones according to which side of the target axis they fall on
|
|
32
30
|
|
|
33
|
-
:type override_context: typing.
|
|
34
|
-
:type execution_context: typing.
|
|
35
|
-
:type undo:
|
|
31
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
32
|
+
:type execution_context: typing.Union[str, int]
|
|
33
|
+
:type undo: bool
|
|
36
34
|
:param axis: Axis, Axis to tag names with
|
|
37
35
|
|
|
38
36
|
XAXIS
|
|
@@ -43,33 +41,32 @@ def autoside_names(
|
|
|
43
41
|
|
|
44
42
|
ZAXIS
|
|
45
43
|
Z-Axis -- Top/Bottom.
|
|
46
|
-
:type axis: typing.
|
|
44
|
+
:type axis: typing.Any
|
|
47
45
|
"""
|
|
48
46
|
|
|
49
47
|
...
|
|
50
48
|
|
|
51
49
|
def blend_to_neighbor(
|
|
52
|
-
override_context=None,
|
|
53
|
-
execution_context=None,
|
|
54
|
-
undo=None,
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
axis_lock: typing.Optional[typing.Any] = "FREE",
|
|
50
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
51
|
+
execution_context: typing.Union[str, int] = None,
|
|
52
|
+
undo: bool = None,
|
|
53
|
+
factor: typing.Any = 0.5,
|
|
54
|
+
prev_frame: typing.Any = 0,
|
|
55
|
+
next_frame: typing.Any = 0,
|
|
56
|
+
channels: typing.Any = "ALL",
|
|
57
|
+
axis_lock: typing.Any = "FREE",
|
|
61
58
|
):
|
|
62
59
|
"""Blend from current position to previous or next keyframe
|
|
63
60
|
|
|
64
|
-
:type override_context: typing.
|
|
65
|
-
:type execution_context: typing.
|
|
66
|
-
:type undo:
|
|
61
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
62
|
+
:type execution_context: typing.Union[str, int]
|
|
63
|
+
:type undo: bool
|
|
67
64
|
:param factor: Factor, Weighting factor for which keyframe is favored more
|
|
68
|
-
:type factor: typing.
|
|
65
|
+
:type factor: typing.Any
|
|
69
66
|
:param prev_frame: Previous Keyframe, Frame number of keyframe immediately before the current frame
|
|
70
|
-
:type prev_frame: typing.
|
|
67
|
+
:type prev_frame: typing.Any
|
|
71
68
|
:param next_frame: Next Keyframe, Frame number of keyframe immediately after the current frame
|
|
72
|
-
:type next_frame: typing.
|
|
69
|
+
:type next_frame: typing.Any
|
|
73
70
|
:param channels: Channels, Set of properties that are affected
|
|
74
71
|
|
|
75
72
|
ALL
|
|
@@ -89,7 +86,7 @@ def blend_to_neighbor(
|
|
|
89
86
|
|
|
90
87
|
CUSTOM
|
|
91
88
|
Custom Properties -- Custom properties.
|
|
92
|
-
:type channels: typing.
|
|
89
|
+
:type channels: typing.Any
|
|
93
90
|
:param axis_lock: Axis Lock, Transform axis to restrict effects to
|
|
94
91
|
|
|
95
92
|
FREE
|
|
@@ -103,33 +100,32 @@ def blend_to_neighbor(
|
|
|
103
100
|
|
|
104
101
|
Z
|
|
105
102
|
Z -- Only Z-axis transforms are affected.
|
|
106
|
-
:type axis_lock: typing.
|
|
103
|
+
:type axis_lock: typing.Any
|
|
107
104
|
"""
|
|
108
105
|
|
|
109
106
|
...
|
|
110
107
|
|
|
111
108
|
def blend_with_rest(
|
|
112
|
-
override_context=None,
|
|
113
|
-
execution_context=None,
|
|
114
|
-
undo=None,
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
axis_lock: typing.Optional[typing.Any] = "FREE",
|
|
109
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
110
|
+
execution_context: typing.Union[str, int] = None,
|
|
111
|
+
undo: bool = None,
|
|
112
|
+
factor: typing.Any = 0.5,
|
|
113
|
+
prev_frame: typing.Any = 0,
|
|
114
|
+
next_frame: typing.Any = 0,
|
|
115
|
+
channels: typing.Any = "ALL",
|
|
116
|
+
axis_lock: typing.Any = "FREE",
|
|
121
117
|
):
|
|
122
118
|
"""Make the current pose more similar to, or further away from, the rest pose
|
|
123
119
|
|
|
124
|
-
:type override_context: typing.
|
|
125
|
-
:type execution_context: typing.
|
|
126
|
-
:type undo:
|
|
120
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
121
|
+
:type execution_context: typing.Union[str, int]
|
|
122
|
+
:type undo: bool
|
|
127
123
|
:param factor: Factor, Weighting factor for which keyframe is favored more
|
|
128
|
-
:type factor: typing.
|
|
124
|
+
:type factor: typing.Any
|
|
129
125
|
:param prev_frame: Previous Keyframe, Frame number of keyframe immediately before the current frame
|
|
130
|
-
:type prev_frame: typing.
|
|
126
|
+
:type prev_frame: typing.Any
|
|
131
127
|
:param next_frame: Next Keyframe, Frame number of keyframe immediately after the current frame
|
|
132
|
-
:type next_frame: typing.
|
|
128
|
+
:type next_frame: typing.Any
|
|
133
129
|
:param channels: Channels, Set of properties that are affected
|
|
134
130
|
|
|
135
131
|
ALL
|
|
@@ -149,7 +145,7 @@ def blend_with_rest(
|
|
|
149
145
|
|
|
150
146
|
CUSTOM
|
|
151
147
|
Custom Properties -- Custom properties.
|
|
152
|
-
:type channels: typing.
|
|
148
|
+
:type channels: typing.Any
|
|
153
149
|
:param axis_lock: Axis Lock, Transform axis to restrict effects to
|
|
154
150
|
|
|
155
151
|
FREE
|
|
@@ -163,33 +159,32 @@ def blend_with_rest(
|
|
|
163
159
|
|
|
164
160
|
Z
|
|
165
161
|
Z -- Only Z-axis transforms are affected.
|
|
166
|
-
:type axis_lock: typing.
|
|
162
|
+
:type axis_lock: typing.Any
|
|
167
163
|
"""
|
|
168
164
|
|
|
169
165
|
...
|
|
170
166
|
|
|
171
167
|
def breakdown(
|
|
172
|
-
override_context=None,
|
|
173
|
-
execution_context=None,
|
|
174
|
-
undo=None,
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
axis_lock: typing.Optional[typing.Any] = "FREE",
|
|
168
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
169
|
+
execution_context: typing.Union[str, int] = None,
|
|
170
|
+
undo: bool = None,
|
|
171
|
+
factor: typing.Any = 0.5,
|
|
172
|
+
prev_frame: typing.Any = 0,
|
|
173
|
+
next_frame: typing.Any = 0,
|
|
174
|
+
channels: typing.Any = "ALL",
|
|
175
|
+
axis_lock: typing.Any = "FREE",
|
|
181
176
|
):
|
|
182
177
|
"""Create a suitable breakdown pose on the current frame
|
|
183
178
|
|
|
184
|
-
:type override_context: typing.
|
|
185
|
-
:type execution_context: typing.
|
|
186
|
-
:type undo:
|
|
179
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
180
|
+
:type execution_context: typing.Union[str, int]
|
|
181
|
+
:type undo: bool
|
|
187
182
|
:param factor: Factor, Weighting factor for which keyframe is favored more
|
|
188
|
-
:type factor: typing.
|
|
183
|
+
:type factor: typing.Any
|
|
189
184
|
:param prev_frame: Previous Keyframe, Frame number of keyframe immediately before the current frame
|
|
190
|
-
:type prev_frame: typing.
|
|
185
|
+
:type prev_frame: typing.Any
|
|
191
186
|
:param next_frame: Next Keyframe, Frame number of keyframe immediately after the current frame
|
|
192
|
-
:type next_frame: typing.
|
|
187
|
+
:type next_frame: typing.Any
|
|
193
188
|
:param channels: Channels, Set of properties that are affected
|
|
194
189
|
|
|
195
190
|
ALL
|
|
@@ -209,7 +204,7 @@ def breakdown(
|
|
|
209
204
|
|
|
210
205
|
CUSTOM
|
|
211
206
|
Custom Properties -- Custom properties.
|
|
212
|
-
:type channels: typing.
|
|
207
|
+
:type channels: typing.Any
|
|
213
208
|
:param axis_lock: Axis Lock, Transform axis to restrict effects to
|
|
214
209
|
|
|
215
210
|
FREE
|
|
@@ -223,247 +218,266 @@ def breakdown(
|
|
|
223
218
|
|
|
224
219
|
Z
|
|
225
220
|
Z -- Only Z-axis transforms are affected.
|
|
226
|
-
:type axis_lock: typing.
|
|
221
|
+
:type axis_lock: typing.Any
|
|
227
222
|
"""
|
|
228
223
|
|
|
229
224
|
...
|
|
230
225
|
|
|
231
226
|
def constraint_add(
|
|
232
|
-
override_context=None,
|
|
233
|
-
execution_context=None,
|
|
234
|
-
undo=None,
|
|
235
|
-
|
|
236
|
-
type: typing.Optional[typing.Any] = "",
|
|
227
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
228
|
+
execution_context: typing.Union[str, int] = None,
|
|
229
|
+
undo: bool = None,
|
|
230
|
+
type: typing.Any = "",
|
|
237
231
|
):
|
|
238
232
|
"""Add a constraint to the active bone
|
|
239
233
|
|
|
240
|
-
:type override_context: typing.
|
|
241
|
-
:type execution_context: typing.
|
|
242
|
-
:type undo:
|
|
234
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
235
|
+
:type execution_context: typing.Union[str, int]
|
|
236
|
+
:type undo: bool
|
|
243
237
|
:param type: Type
|
|
244
|
-
:type type: typing.
|
|
238
|
+
:type type: typing.Any
|
|
245
239
|
"""
|
|
246
240
|
|
|
247
241
|
...
|
|
248
242
|
|
|
249
243
|
def constraint_add_with_targets(
|
|
250
|
-
override_context=None,
|
|
251
|
-
execution_context=None,
|
|
252
|
-
undo=None,
|
|
253
|
-
|
|
254
|
-
type: typing.Optional[typing.Any] = "",
|
|
244
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
245
|
+
execution_context: typing.Union[str, int] = None,
|
|
246
|
+
undo: bool = None,
|
|
247
|
+
type: typing.Any = "",
|
|
255
248
|
):
|
|
256
249
|
"""Add a constraint to the active bone, with target (where applicable) set to the selected Objects/Bones
|
|
257
250
|
|
|
258
|
-
:type override_context: typing.
|
|
259
|
-
:type execution_context: typing.
|
|
260
|
-
:type undo:
|
|
251
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
252
|
+
:type execution_context: typing.Union[str, int]
|
|
253
|
+
:type undo: bool
|
|
261
254
|
:param type: Type
|
|
262
|
-
:type type: typing.
|
|
255
|
+
:type type: typing.Any
|
|
263
256
|
"""
|
|
264
257
|
|
|
265
258
|
...
|
|
266
259
|
|
|
267
|
-
def constraints_clear(
|
|
260
|
+
def constraints_clear(
|
|
261
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
262
|
+
execution_context: typing.Union[str, int] = None,
|
|
263
|
+
undo: bool = None,
|
|
264
|
+
):
|
|
268
265
|
"""Clear all constraints from the selected bones
|
|
269
266
|
|
|
270
|
-
:type override_context: typing.
|
|
271
|
-
:type execution_context: typing.
|
|
272
|
-
:type undo:
|
|
267
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
268
|
+
:type execution_context: typing.Union[str, int]
|
|
269
|
+
:type undo: bool
|
|
273
270
|
"""
|
|
274
271
|
|
|
275
272
|
...
|
|
276
273
|
|
|
277
|
-
def constraints_copy(
|
|
274
|
+
def constraints_copy(
|
|
275
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
276
|
+
execution_context: typing.Union[str, int] = None,
|
|
277
|
+
undo: bool = None,
|
|
278
|
+
):
|
|
278
279
|
"""Copy constraints to other selected bones
|
|
279
280
|
|
|
280
|
-
:type override_context: typing.
|
|
281
|
-
:type execution_context: typing.
|
|
282
|
-
:type undo:
|
|
281
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
282
|
+
:type execution_context: typing.Union[str, int]
|
|
283
|
+
:type undo: bool
|
|
283
284
|
"""
|
|
284
285
|
|
|
285
286
|
...
|
|
286
287
|
|
|
287
|
-
def copy(
|
|
288
|
+
def copy(
|
|
289
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
290
|
+
execution_context: typing.Union[str, int] = None,
|
|
291
|
+
undo: bool = None,
|
|
292
|
+
):
|
|
288
293
|
"""Copy the current pose of the selected bones to the internal clipboard
|
|
289
294
|
|
|
290
|
-
:type override_context: typing.
|
|
291
|
-
:type execution_context: typing.
|
|
292
|
-
:type undo:
|
|
295
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
296
|
+
:type execution_context: typing.Union[str, int]
|
|
297
|
+
:type undo: bool
|
|
293
298
|
"""
|
|
294
299
|
|
|
295
300
|
...
|
|
296
301
|
|
|
297
302
|
def flip_names(
|
|
298
|
-
override_context=None,
|
|
299
|
-
execution_context=None,
|
|
300
|
-
undo=None,
|
|
301
|
-
|
|
302
|
-
do_strip_numbers: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
303
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
304
|
+
execution_context: typing.Union[str, int] = None,
|
|
305
|
+
undo: bool = None,
|
|
306
|
+
do_strip_numbers: typing.Union[bool, typing.Any] = False,
|
|
303
307
|
):
|
|
304
308
|
"""Flips (and corrects) the axis suffixes of the names of selected bones
|
|
305
309
|
|
|
306
|
-
:type override_context: typing.
|
|
307
|
-
:type execution_context: typing.
|
|
308
|
-
:type undo:
|
|
310
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
311
|
+
:type execution_context: typing.Union[str, int]
|
|
312
|
+
:type undo: bool
|
|
309
313
|
: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
|
|
310
|
-
:type do_strip_numbers: typing.
|
|
314
|
+
:type do_strip_numbers: typing.Union[bool, typing.Any]
|
|
311
315
|
"""
|
|
312
316
|
|
|
313
317
|
...
|
|
314
318
|
|
|
315
319
|
def hide(
|
|
316
|
-
override_context=None,
|
|
317
|
-
execution_context=None,
|
|
318
|
-
undo=None,
|
|
319
|
-
|
|
320
|
-
unselected: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
320
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
321
|
+
execution_context: typing.Union[str, int] = None,
|
|
322
|
+
undo: bool = None,
|
|
323
|
+
unselected: typing.Union[bool, typing.Any] = False,
|
|
321
324
|
):
|
|
322
325
|
"""Tag selected bones to not be visible in Pose Mode
|
|
323
326
|
|
|
324
|
-
:type override_context: typing.
|
|
325
|
-
:type execution_context: typing.
|
|
326
|
-
:type undo:
|
|
327
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
328
|
+
:type execution_context: typing.Union[str, int]
|
|
329
|
+
:type undo: bool
|
|
327
330
|
:param unselected: Unselected
|
|
328
|
-
:type unselected: typing.
|
|
331
|
+
:type unselected: typing.Union[bool, typing.Any]
|
|
329
332
|
"""
|
|
330
333
|
|
|
331
334
|
...
|
|
332
335
|
|
|
333
336
|
def ik_add(
|
|
334
|
-
override_context=None,
|
|
335
|
-
execution_context=None,
|
|
336
|
-
undo=None,
|
|
337
|
-
|
|
338
|
-
with_targets: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
337
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
338
|
+
execution_context: typing.Union[str, int] = None,
|
|
339
|
+
undo: bool = None,
|
|
340
|
+
with_targets: typing.Union[bool, typing.Any] = True,
|
|
339
341
|
):
|
|
340
342
|
"""Add IK Constraint to the active Bone
|
|
341
343
|
|
|
342
|
-
:type override_context: typing.
|
|
343
|
-
:type execution_context: typing.
|
|
344
|
-
:type undo:
|
|
344
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
345
|
+
:type execution_context: typing.Union[str, int]
|
|
346
|
+
:type undo: bool
|
|
345
347
|
:param with_targets: With Targets, Assign IK Constraint with targets derived from the select bones/objects
|
|
346
|
-
:type with_targets: typing.
|
|
348
|
+
:type with_targets: typing.Union[bool, typing.Any]
|
|
347
349
|
"""
|
|
348
350
|
|
|
349
351
|
...
|
|
350
352
|
|
|
351
|
-
def ik_clear(
|
|
353
|
+
def ik_clear(
|
|
354
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
355
|
+
execution_context: typing.Union[str, int] = None,
|
|
356
|
+
undo: bool = None,
|
|
357
|
+
):
|
|
352
358
|
"""Remove all IK Constraints from selected bones
|
|
353
359
|
|
|
354
|
-
:type override_context: typing.
|
|
355
|
-
:type execution_context: typing.
|
|
356
|
-
:type undo:
|
|
360
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
361
|
+
:type execution_context: typing.Union[str, int]
|
|
362
|
+
:type undo: bool
|
|
357
363
|
"""
|
|
358
364
|
|
|
359
365
|
...
|
|
360
366
|
|
|
361
|
-
def loc_clear(
|
|
367
|
+
def loc_clear(
|
|
368
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
369
|
+
execution_context: typing.Union[str, int] = None,
|
|
370
|
+
undo: bool = None,
|
|
371
|
+
):
|
|
362
372
|
"""Reset locations of selected bones to their default values
|
|
363
373
|
|
|
364
|
-
:type override_context: typing.
|
|
365
|
-
:type execution_context: typing.
|
|
366
|
-
:type undo:
|
|
374
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
375
|
+
:type execution_context: typing.Union[str, int]
|
|
376
|
+
:type undo: bool
|
|
367
377
|
"""
|
|
368
378
|
|
|
369
379
|
...
|
|
370
380
|
|
|
371
381
|
def paste(
|
|
372
|
-
override_context=None,
|
|
373
|
-
execution_context=None,
|
|
374
|
-
undo=None,
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
selected_mask: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
382
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
383
|
+
execution_context: typing.Union[str, int] = None,
|
|
384
|
+
undo: bool = None,
|
|
385
|
+
flipped: typing.Union[bool, typing.Any] = False,
|
|
386
|
+
selected_mask: typing.Union[bool, typing.Any] = False,
|
|
378
387
|
):
|
|
379
388
|
"""Paste the stored pose on to the current pose
|
|
380
389
|
|
|
381
|
-
:type override_context: typing.
|
|
382
|
-
:type execution_context: typing.
|
|
383
|
-
:type undo:
|
|
390
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
391
|
+
:type execution_context: typing.Union[str, int]
|
|
392
|
+
:type undo: bool
|
|
384
393
|
:param flipped: Flipped on X-Axis, Paste the stored pose flipped on to current pose
|
|
385
|
-
:type flipped: typing.
|
|
394
|
+
:type flipped: typing.Union[bool, typing.Any]
|
|
386
395
|
:param selected_mask: On Selected Only, Only paste the stored pose on to selected bones in the current pose
|
|
387
|
-
:type selected_mask: typing.
|
|
396
|
+
:type selected_mask: typing.Union[bool, typing.Any]
|
|
388
397
|
"""
|
|
389
398
|
|
|
390
399
|
...
|
|
391
400
|
|
|
392
401
|
def paths_calculate(
|
|
393
|
-
override_context=None,
|
|
394
|
-
execution_context=None,
|
|
395
|
-
undo=None,
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
bake_location: typing.Optional[typing.Any] = "HEADS",
|
|
402
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
403
|
+
execution_context: typing.Union[str, int] = None,
|
|
404
|
+
undo: bool = None,
|
|
405
|
+
display_type: typing.Any = "RANGE",
|
|
406
|
+
range: typing.Any = "SCENE",
|
|
407
|
+
bake_location: typing.Any = "HEADS",
|
|
400
408
|
):
|
|
401
409
|
"""Calculate paths for the selected bones
|
|
402
410
|
|
|
403
|
-
:type override_context: typing.
|
|
404
|
-
:type execution_context: typing.
|
|
405
|
-
:type undo:
|
|
411
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
412
|
+
:type execution_context: typing.Union[str, int]
|
|
413
|
+
:type undo: bool
|
|
406
414
|
:param display_type: Display type
|
|
407
|
-
:type display_type: typing.
|
|
415
|
+
:type display_type: typing.Any
|
|
408
416
|
:param range: Computation Range
|
|
409
|
-
:type range: typing.
|
|
417
|
+
:type range: typing.Any
|
|
410
418
|
:param bake_location: Bake Location, Which point on the bones is used when calculating paths
|
|
411
|
-
:type bake_location: typing.
|
|
419
|
+
:type bake_location: typing.Any
|
|
412
420
|
"""
|
|
413
421
|
|
|
414
422
|
...
|
|
415
423
|
|
|
416
424
|
def paths_clear(
|
|
417
|
-
override_context=None,
|
|
418
|
-
execution_context=None,
|
|
419
|
-
undo=None,
|
|
420
|
-
|
|
421
|
-
only_selected: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
425
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
426
|
+
execution_context: typing.Union[str, int] = None,
|
|
427
|
+
undo: bool = None,
|
|
428
|
+
only_selected: typing.Union[bool, typing.Any] = False,
|
|
422
429
|
):
|
|
423
430
|
"""Undocumented, consider contributing.
|
|
424
431
|
|
|
425
|
-
:type override_context: typing.
|
|
426
|
-
:type execution_context: typing.
|
|
427
|
-
:type undo:
|
|
432
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
433
|
+
:type execution_context: typing.Union[str, int]
|
|
434
|
+
:type undo: bool
|
|
428
435
|
:param only_selected: Only Selected, Only clear motion paths of selected bones
|
|
429
|
-
:type only_selected: typing.
|
|
436
|
+
:type only_selected: typing.Union[bool, typing.Any]
|
|
430
437
|
"""
|
|
431
438
|
|
|
432
439
|
...
|
|
433
440
|
|
|
434
|
-
def paths_range_update(
|
|
441
|
+
def paths_range_update(
|
|
442
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
443
|
+
execution_context: typing.Union[str, int] = None,
|
|
444
|
+
undo: bool = None,
|
|
445
|
+
):
|
|
435
446
|
"""Update frame range for motion paths from the Scene's current frame range
|
|
436
447
|
|
|
437
|
-
:type override_context: typing.
|
|
438
|
-
:type execution_context: typing.
|
|
439
|
-
:type undo:
|
|
448
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
449
|
+
:type execution_context: typing.Union[str, int]
|
|
450
|
+
:type undo: bool
|
|
440
451
|
"""
|
|
441
452
|
|
|
442
453
|
...
|
|
443
454
|
|
|
444
|
-
def paths_update(
|
|
455
|
+
def paths_update(
|
|
456
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
457
|
+
execution_context: typing.Union[str, int] = None,
|
|
458
|
+
undo: bool = None,
|
|
459
|
+
):
|
|
445
460
|
"""Recalculate paths for bones that already have them
|
|
446
461
|
|
|
447
|
-
:type override_context: typing.
|
|
448
|
-
:type execution_context: typing.
|
|
449
|
-
:type undo:
|
|
462
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
463
|
+
:type execution_context: typing.Union[str, int]
|
|
464
|
+
:type undo: bool
|
|
450
465
|
"""
|
|
451
466
|
|
|
452
467
|
...
|
|
453
468
|
|
|
454
469
|
def propagate(
|
|
455
|
-
override_context=None,
|
|
456
|
-
execution_context=None,
|
|
457
|
-
undo=None,
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
end_frame: typing.Optional[typing.Any] = 250.0,
|
|
470
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
471
|
+
execution_context: typing.Union[str, int] = None,
|
|
472
|
+
undo: bool = None,
|
|
473
|
+
mode: typing.Any = "NEXT_KEY",
|
|
474
|
+
end_frame: typing.Any = 250.0,
|
|
461
475
|
):
|
|
462
476
|
"""Copy selected aspects of the current pose to subsequent poses already keyframed
|
|
463
477
|
|
|
464
|
-
:type override_context: typing.
|
|
465
|
-
:type execution_context: typing.
|
|
466
|
-
:type undo:
|
|
478
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
479
|
+
:type execution_context: typing.Union[str, int]
|
|
480
|
+
:type undo: bool
|
|
467
481
|
:param mode: Terminate Mode, Method used to determine when to stop propagating pose to keyframes
|
|
468
482
|
|
|
469
483
|
NEXT_KEY
|
|
@@ -483,35 +497,34 @@ def propagate(
|
|
|
483
497
|
|
|
484
498
|
SELECTED_MARKERS
|
|
485
499
|
On Selected Markers -- Propagate pose to all keyframes occurring on frames with Scene Markers after the current frame.
|
|
486
|
-
:type mode: typing.
|
|
500
|
+
:type mode: typing.Any
|
|
487
501
|
:param end_frame: End Frame, Frame to stop propagating frames to (for 'Before Frame' mode)
|
|
488
|
-
:type end_frame: typing.
|
|
502
|
+
:type end_frame: typing.Any
|
|
489
503
|
"""
|
|
490
504
|
|
|
491
505
|
...
|
|
492
506
|
|
|
493
507
|
def push(
|
|
494
|
-
override_context=None,
|
|
495
|
-
execution_context=None,
|
|
496
|
-
undo=None,
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
axis_lock: typing.Optional[typing.Any] = "FREE",
|
|
508
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
509
|
+
execution_context: typing.Union[str, int] = None,
|
|
510
|
+
undo: bool = None,
|
|
511
|
+
factor: typing.Any = 0.5,
|
|
512
|
+
prev_frame: typing.Any = 0,
|
|
513
|
+
next_frame: typing.Any = 0,
|
|
514
|
+
channels: typing.Any = "ALL",
|
|
515
|
+
axis_lock: typing.Any = "FREE",
|
|
503
516
|
):
|
|
504
517
|
"""Exaggerate the current pose in regards to the breakdown pose
|
|
505
518
|
|
|
506
|
-
:type override_context: typing.
|
|
507
|
-
:type execution_context: typing.
|
|
508
|
-
:type undo:
|
|
519
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
520
|
+
:type execution_context: typing.Union[str, int]
|
|
521
|
+
:type undo: bool
|
|
509
522
|
:param factor: Factor, Weighting factor for which keyframe is favored more
|
|
510
|
-
:type factor: typing.
|
|
523
|
+
:type factor: typing.Any
|
|
511
524
|
:param prev_frame: Previous Keyframe, Frame number of keyframe immediately before the current frame
|
|
512
|
-
:type prev_frame: typing.
|
|
525
|
+
:type prev_frame: typing.Any
|
|
513
526
|
:param next_frame: Next Keyframe, Frame number of keyframe immediately after the current frame
|
|
514
|
-
:type next_frame: typing.
|
|
527
|
+
:type next_frame: typing.Any
|
|
515
528
|
:param channels: Channels, Set of properties that are affected
|
|
516
529
|
|
|
517
530
|
ALL
|
|
@@ -531,7 +544,7 @@ def push(
|
|
|
531
544
|
|
|
532
545
|
CUSTOM
|
|
533
546
|
Custom Properties -- Custom properties.
|
|
534
|
-
:type channels: typing.
|
|
547
|
+
:type channels: typing.Any
|
|
535
548
|
:param axis_lock: Axis Lock, Transform axis to restrict effects to
|
|
536
549
|
|
|
537
550
|
FREE
|
|
@@ -545,43 +558,46 @@ def push(
|
|
|
545
558
|
|
|
546
559
|
Z
|
|
547
560
|
Z -- Only Z-axis transforms are affected.
|
|
548
|
-
:type axis_lock: typing.
|
|
561
|
+
:type axis_lock: typing.Any
|
|
549
562
|
"""
|
|
550
563
|
|
|
551
564
|
...
|
|
552
565
|
|
|
553
|
-
def quaternions_flip(
|
|
566
|
+
def quaternions_flip(
|
|
567
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
568
|
+
execution_context: typing.Union[str, int] = None,
|
|
569
|
+
undo: bool = None,
|
|
570
|
+
):
|
|
554
571
|
"""Flip quaternion values to achieve desired rotations, while maintaining the same orientations
|
|
555
572
|
|
|
556
|
-
:type override_context: typing.
|
|
557
|
-
:type execution_context: typing.
|
|
558
|
-
:type undo:
|
|
573
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
574
|
+
:type execution_context: typing.Union[str, int]
|
|
575
|
+
:type undo: bool
|
|
559
576
|
"""
|
|
560
577
|
|
|
561
578
|
...
|
|
562
579
|
|
|
563
580
|
def relax(
|
|
564
|
-
override_context=None,
|
|
565
|
-
execution_context=None,
|
|
566
|
-
undo=None,
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
axis_lock: typing.Optional[typing.Any] = "FREE",
|
|
581
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
582
|
+
execution_context: typing.Union[str, int] = None,
|
|
583
|
+
undo: bool = None,
|
|
584
|
+
factor: typing.Any = 0.5,
|
|
585
|
+
prev_frame: typing.Any = 0,
|
|
586
|
+
next_frame: typing.Any = 0,
|
|
587
|
+
channels: typing.Any = "ALL",
|
|
588
|
+
axis_lock: typing.Any = "FREE",
|
|
573
589
|
):
|
|
574
590
|
"""Make the current pose more similar to its breakdown pose
|
|
575
591
|
|
|
576
|
-
:type override_context: typing.
|
|
577
|
-
:type execution_context: typing.
|
|
578
|
-
:type undo:
|
|
592
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
593
|
+
:type execution_context: typing.Union[str, int]
|
|
594
|
+
:type undo: bool
|
|
579
595
|
:param factor: Factor, Weighting factor for which keyframe is favored more
|
|
580
|
-
:type factor: typing.
|
|
596
|
+
:type factor: typing.Any
|
|
581
597
|
:param prev_frame: Previous Keyframe, Frame number of keyframe immediately before the current frame
|
|
582
|
-
:type prev_frame: typing.
|
|
598
|
+
:type prev_frame: typing.Any
|
|
583
599
|
:param next_frame: Next Keyframe, Frame number of keyframe immediately after the current frame
|
|
584
|
-
:type next_frame: typing.
|
|
600
|
+
:type next_frame: typing.Any
|
|
585
601
|
:param channels: Channels, Set of properties that are affected
|
|
586
602
|
|
|
587
603
|
ALL
|
|
@@ -601,7 +617,7 @@ def relax(
|
|
|
601
617
|
|
|
602
618
|
CUSTOM
|
|
603
619
|
Custom Properties -- Custom properties.
|
|
604
|
-
:type channels: typing.
|
|
620
|
+
:type channels: typing.Any
|
|
605
621
|
:param axis_lock: Axis Lock, Transform axis to restrict effects to
|
|
606
622
|
|
|
607
623
|
FREE
|
|
@@ -615,79 +631,84 @@ def relax(
|
|
|
615
631
|
|
|
616
632
|
Z
|
|
617
633
|
Z -- Only Z-axis transforms are affected.
|
|
618
|
-
:type axis_lock: typing.
|
|
634
|
+
:type axis_lock: typing.Any
|
|
619
635
|
"""
|
|
620
636
|
|
|
621
637
|
...
|
|
622
638
|
|
|
623
639
|
def reveal(
|
|
624
|
-
override_context=None,
|
|
625
|
-
execution_context=None,
|
|
626
|
-
undo=None,
|
|
627
|
-
|
|
628
|
-
select: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
640
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
641
|
+
execution_context: typing.Union[str, int] = None,
|
|
642
|
+
undo: bool = None,
|
|
643
|
+
select: typing.Union[bool, typing.Any] = True,
|
|
629
644
|
):
|
|
630
645
|
"""Reveal all bones hidden in Pose Mode
|
|
631
646
|
|
|
632
|
-
:type override_context: typing.
|
|
633
|
-
:type execution_context: typing.
|
|
634
|
-
:type undo:
|
|
647
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
648
|
+
:type execution_context: typing.Union[str, int]
|
|
649
|
+
:type undo: bool
|
|
635
650
|
:param select: Select
|
|
636
|
-
:type select: typing.
|
|
651
|
+
:type select: typing.Union[bool, typing.Any]
|
|
637
652
|
"""
|
|
638
653
|
|
|
639
654
|
...
|
|
640
655
|
|
|
641
|
-
def rot_clear(
|
|
656
|
+
def rot_clear(
|
|
657
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
658
|
+
execution_context: typing.Union[str, int] = None,
|
|
659
|
+
undo: bool = None,
|
|
660
|
+
):
|
|
642
661
|
"""Reset rotations of selected bones to their default values
|
|
643
662
|
|
|
644
|
-
:type override_context: typing.
|
|
645
|
-
:type execution_context: typing.
|
|
646
|
-
:type undo:
|
|
663
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
664
|
+
:type execution_context: typing.Union[str, int]
|
|
665
|
+
:type undo: bool
|
|
647
666
|
"""
|
|
648
667
|
|
|
649
668
|
...
|
|
650
669
|
|
|
651
670
|
def rotation_mode_set(
|
|
652
|
-
override_context=None,
|
|
653
|
-
execution_context=None,
|
|
654
|
-
undo=None,
|
|
655
|
-
|
|
656
|
-
type: typing.Optional[typing.Any] = "QUATERNION",
|
|
671
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
672
|
+
execution_context: typing.Union[str, int] = None,
|
|
673
|
+
undo: bool = None,
|
|
674
|
+
type: typing.Any = "QUATERNION",
|
|
657
675
|
):
|
|
658
676
|
"""Set the rotation representation used by selected bones
|
|
659
677
|
|
|
660
|
-
:type override_context: typing.
|
|
661
|
-
:type execution_context: typing.
|
|
662
|
-
:type undo:
|
|
678
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
679
|
+
:type execution_context: typing.Union[str, int]
|
|
680
|
+
:type undo: bool
|
|
663
681
|
:param type: Rotation Mode
|
|
664
|
-
:type type: typing.
|
|
682
|
+
:type type: typing.Any
|
|
665
683
|
"""
|
|
666
684
|
|
|
667
685
|
...
|
|
668
686
|
|
|
669
|
-
def scale_clear(
|
|
687
|
+
def scale_clear(
|
|
688
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
689
|
+
execution_context: typing.Union[str, int] = None,
|
|
690
|
+
undo: bool = None,
|
|
691
|
+
):
|
|
670
692
|
"""Reset scaling of selected bones to their default values
|
|
671
693
|
|
|
672
|
-
:type override_context: typing.
|
|
673
|
-
:type execution_context: typing.
|
|
674
|
-
:type undo:
|
|
694
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
695
|
+
:type execution_context: typing.Union[str, int]
|
|
696
|
+
:type undo: bool
|
|
675
697
|
"""
|
|
676
698
|
|
|
677
699
|
...
|
|
678
700
|
|
|
679
701
|
def select_all(
|
|
680
|
-
override_context=None,
|
|
681
|
-
execution_context=None,
|
|
682
|
-
undo=None,
|
|
683
|
-
|
|
684
|
-
action: typing.Optional[typing.Any] = "TOGGLE",
|
|
702
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
703
|
+
execution_context: typing.Union[str, int] = None,
|
|
704
|
+
undo: bool = None,
|
|
705
|
+
action: typing.Any = "TOGGLE",
|
|
685
706
|
):
|
|
686
707
|
"""Toggle selection status of all bones
|
|
687
708
|
|
|
688
|
-
:type override_context: typing.
|
|
689
|
-
:type execution_context: typing.
|
|
690
|
-
:type undo:
|
|
709
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
710
|
+
:type execution_context: typing.Union[str, int]
|
|
711
|
+
:type undo: bool
|
|
691
712
|
:param action: Action, Selection action to execute
|
|
692
713
|
|
|
693
714
|
TOGGLE
|
|
@@ -701,36 +722,39 @@ def select_all(
|
|
|
701
722
|
|
|
702
723
|
INVERT
|
|
703
724
|
Invert -- Invert selection of all elements.
|
|
704
|
-
:type action: typing.
|
|
725
|
+
:type action: typing.Any
|
|
705
726
|
"""
|
|
706
727
|
|
|
707
728
|
...
|
|
708
729
|
|
|
709
|
-
def select_constraint_target(
|
|
730
|
+
def select_constraint_target(
|
|
731
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
732
|
+
execution_context: typing.Union[str, int] = None,
|
|
733
|
+
undo: bool = None,
|
|
734
|
+
):
|
|
710
735
|
"""Select bones used as targets for the currently selected bones
|
|
711
736
|
|
|
712
|
-
:type override_context: typing.
|
|
713
|
-
:type execution_context: typing.
|
|
714
|
-
:type undo:
|
|
737
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
738
|
+
:type execution_context: typing.Union[str, int]
|
|
739
|
+
:type undo: bool
|
|
715
740
|
"""
|
|
716
741
|
|
|
717
742
|
...
|
|
718
743
|
|
|
719
744
|
def select_grouped(
|
|
720
|
-
override_context=None,
|
|
721
|
-
execution_context=None,
|
|
722
|
-
undo=None,
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
type: typing.Optional[typing.Any] = "COLLECTION",
|
|
745
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
746
|
+
execution_context: typing.Union[str, int] = None,
|
|
747
|
+
undo: bool = None,
|
|
748
|
+
extend: typing.Union[bool, typing.Any] = False,
|
|
749
|
+
type: typing.Any = "COLLECTION",
|
|
726
750
|
):
|
|
727
751
|
"""Select all visible bones grouped by similar properties
|
|
728
752
|
|
|
729
|
-
:type override_context: typing.
|
|
730
|
-
:type execution_context: typing.
|
|
731
|
-
:type undo:
|
|
753
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
754
|
+
:type execution_context: typing.Union[str, int]
|
|
755
|
+
:type undo: bool
|
|
732
756
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
733
|
-
:type extend: typing.
|
|
757
|
+
:type extend: typing.Union[bool, typing.Any]
|
|
734
758
|
:param type: Type
|
|
735
759
|
|
|
736
760
|
COLLECTION
|
|
@@ -741,125 +765,137 @@ def select_grouped(
|
|
|
741
765
|
|
|
742
766
|
KEYINGSET
|
|
743
767
|
Keying Set -- All bones affected by active Keying Set.
|
|
744
|
-
:type type: typing.
|
|
768
|
+
:type type: typing.Any
|
|
745
769
|
"""
|
|
746
770
|
|
|
747
771
|
...
|
|
748
772
|
|
|
749
773
|
def select_hierarchy(
|
|
750
|
-
override_context=None,
|
|
751
|
-
execution_context=None,
|
|
752
|
-
undo=None,
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
774
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
775
|
+
execution_context: typing.Union[str, int] = None,
|
|
776
|
+
undo: bool = None,
|
|
777
|
+
direction: typing.Any = "PARENT",
|
|
778
|
+
extend: typing.Union[bool, typing.Any] = False,
|
|
756
779
|
):
|
|
757
780
|
"""Select immediate parent/children of selected bones
|
|
758
781
|
|
|
759
|
-
:type override_context: typing.
|
|
760
|
-
:type execution_context: typing.
|
|
761
|
-
:type undo:
|
|
782
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
783
|
+
:type execution_context: typing.Union[str, int]
|
|
784
|
+
:type undo: bool
|
|
762
785
|
:param direction: Direction
|
|
763
|
-
:type direction: typing.
|
|
786
|
+
:type direction: typing.Any
|
|
764
787
|
:param extend: Extend, Extend the selection
|
|
765
|
-
:type extend: typing.
|
|
788
|
+
:type extend: typing.Union[bool, typing.Any]
|
|
766
789
|
"""
|
|
767
790
|
|
|
768
791
|
...
|
|
769
792
|
|
|
770
|
-
def select_linked(
|
|
793
|
+
def select_linked(
|
|
794
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
795
|
+
execution_context: typing.Union[str, int] = None,
|
|
796
|
+
undo: bool = None,
|
|
797
|
+
):
|
|
771
798
|
"""Select all bones linked by parent/child connections to the current selection
|
|
772
799
|
|
|
773
|
-
:type override_context: typing.
|
|
774
|
-
:type execution_context: typing.
|
|
775
|
-
:type undo:
|
|
800
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
801
|
+
:type execution_context: typing.Union[str, int]
|
|
802
|
+
:type undo: bool
|
|
776
803
|
"""
|
|
777
804
|
|
|
778
805
|
...
|
|
779
806
|
|
|
780
807
|
def select_linked_pick(
|
|
781
|
-
override_context=None,
|
|
782
|
-
execution_context=None,
|
|
783
|
-
undo=None,
|
|
784
|
-
|
|
785
|
-
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
808
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
809
|
+
execution_context: typing.Union[str, int] = None,
|
|
810
|
+
undo: bool = None,
|
|
811
|
+
extend: typing.Union[bool, typing.Any] = False,
|
|
786
812
|
):
|
|
787
813
|
"""Select bones linked by parent/child connections under the mouse cursor
|
|
788
814
|
|
|
789
|
-
:type override_context: typing.
|
|
790
|
-
:type execution_context: typing.
|
|
791
|
-
:type undo:
|
|
815
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
816
|
+
:type execution_context: typing.Union[str, int]
|
|
817
|
+
:type undo: bool
|
|
792
818
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
793
|
-
:type extend: typing.
|
|
819
|
+
:type extend: typing.Union[bool, typing.Any]
|
|
794
820
|
"""
|
|
795
821
|
|
|
796
822
|
...
|
|
797
823
|
|
|
798
824
|
def select_mirror(
|
|
799
|
-
override_context=None,
|
|
800
|
-
execution_context=None,
|
|
801
|
-
undo=None,
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
825
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
826
|
+
execution_context: typing.Union[str, int] = None,
|
|
827
|
+
undo: bool = None,
|
|
828
|
+
only_active: typing.Union[bool, typing.Any] = False,
|
|
829
|
+
extend: typing.Union[bool, typing.Any] = False,
|
|
805
830
|
):
|
|
806
831
|
"""Mirror the bone selection
|
|
807
832
|
|
|
808
|
-
:type override_context: typing.
|
|
809
|
-
:type execution_context: typing.
|
|
810
|
-
:type undo:
|
|
833
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
834
|
+
:type execution_context: typing.Union[str, int]
|
|
835
|
+
:type undo: bool
|
|
811
836
|
:param only_active: Active Only, Only operate on the active bone
|
|
812
|
-
:type only_active: typing.
|
|
837
|
+
:type only_active: typing.Union[bool, typing.Any]
|
|
813
838
|
:param extend: Extend, Extend the selection
|
|
814
|
-
:type extend: typing.
|
|
839
|
+
:type extend: typing.Union[bool, typing.Any]
|
|
815
840
|
"""
|
|
816
841
|
|
|
817
842
|
...
|
|
818
843
|
|
|
819
|
-
def select_parent(
|
|
844
|
+
def select_parent(
|
|
845
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
846
|
+
execution_context: typing.Union[str, int] = None,
|
|
847
|
+
undo: bool = None,
|
|
848
|
+
):
|
|
820
849
|
"""Select bones that are parents of the currently selected bones
|
|
821
850
|
|
|
822
|
-
:type override_context: typing.
|
|
823
|
-
:type execution_context: typing.
|
|
824
|
-
:type undo:
|
|
851
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
852
|
+
:type execution_context: typing.Union[str, int]
|
|
853
|
+
:type undo: bool
|
|
825
854
|
"""
|
|
826
855
|
|
|
827
856
|
...
|
|
828
857
|
|
|
829
|
-
def transforms_clear(
|
|
858
|
+
def transforms_clear(
|
|
859
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
860
|
+
execution_context: typing.Union[str, int] = None,
|
|
861
|
+
undo: bool = None,
|
|
862
|
+
):
|
|
830
863
|
"""Reset location, rotation, and scaling of selected bones to their default values
|
|
831
864
|
|
|
832
|
-
:type override_context: typing.
|
|
833
|
-
:type execution_context: typing.
|
|
834
|
-
:type undo:
|
|
865
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
866
|
+
:type execution_context: typing.Union[str, int]
|
|
867
|
+
:type undo: bool
|
|
835
868
|
"""
|
|
836
869
|
|
|
837
870
|
...
|
|
838
871
|
|
|
839
872
|
def user_transforms_clear(
|
|
840
|
-
override_context=None,
|
|
841
|
-
execution_context=None,
|
|
842
|
-
undo=None,
|
|
843
|
-
|
|
844
|
-
only_selected: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
873
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
874
|
+
execution_context: typing.Union[str, int] = None,
|
|
875
|
+
undo: bool = None,
|
|
876
|
+
only_selected: typing.Union[bool, typing.Any] = True,
|
|
845
877
|
):
|
|
846
878
|
"""Reset pose bone transforms to keyframed state
|
|
847
879
|
|
|
848
|
-
:type override_context: typing.
|
|
849
|
-
:type execution_context: typing.
|
|
850
|
-
:type undo:
|
|
880
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
881
|
+
:type execution_context: typing.Union[str, int]
|
|
882
|
+
:type undo: bool
|
|
851
883
|
:param only_selected: Only Selected, Only visible/selected bones
|
|
852
|
-
:type only_selected: typing.
|
|
884
|
+
:type only_selected: typing.Union[bool, typing.Any]
|
|
853
885
|
"""
|
|
854
886
|
|
|
855
887
|
...
|
|
856
888
|
|
|
857
|
-
def visual_transform_apply(
|
|
889
|
+
def visual_transform_apply(
|
|
890
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
891
|
+
execution_context: typing.Union[str, int] = None,
|
|
892
|
+
undo: bool = None,
|
|
893
|
+
):
|
|
858
894
|
"""Apply final constrained position of pose bones to their transform
|
|
859
895
|
|
|
860
|
-
:type override_context: typing.
|
|
861
|
-
:type execution_context: typing.
|
|
862
|
-
:type undo:
|
|
896
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
897
|
+
:type execution_context: typing.Union[str, int]
|
|
898
|
+
:type undo: bool
|
|
863
899
|
"""
|
|
864
900
|
|
|
865
901
|
...
|