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/anim/__init__.pyi
CHANGED
|
@@ -11,17 +11,14 @@ def change_frame(
|
|
|
11
11
|
frame: float | None = 0.0,
|
|
12
12
|
snap: bool | None = False,
|
|
13
13
|
seq_solo_preview: bool | None = False,
|
|
14
|
+
pass_through_on_strip_handles: bool | None = False,
|
|
14
15
|
) -> None:
|
|
15
16
|
"""Interactively change the current frame number
|
|
16
17
|
|
|
17
|
-
:type execution_context: int | str | None
|
|
18
|
-
:type undo: bool | None
|
|
19
18
|
:param frame: Frame
|
|
20
|
-
:type frame: float | None
|
|
21
19
|
:param snap: Snap
|
|
22
|
-
:type snap: bool | None
|
|
23
20
|
:param seq_solo_preview: Strip Preview
|
|
24
|
-
:
|
|
21
|
+
:param pass_through_on_strip_handles: Pass Through on Strip Handles, Allow another operator to operate on strip handles
|
|
25
22
|
"""
|
|
26
23
|
|
|
27
24
|
def channel_select_keys(
|
|
@@ -33,10 +30,7 @@ def channel_select_keys(
|
|
|
33
30
|
) -> None:
|
|
34
31
|
"""Select all keyframes of channel under mouse
|
|
35
32
|
|
|
36
|
-
:type execution_context: int | str | None
|
|
37
|
-
:type undo: bool | None
|
|
38
33
|
:param extend: Extend, Extend selection
|
|
39
|
-
:type extend: bool | None
|
|
40
34
|
"""
|
|
41
35
|
|
|
42
36
|
def channel_view_pick(
|
|
@@ -49,12 +43,8 @@ def channel_view_pick(
|
|
|
49
43
|
) -> None:
|
|
50
44
|
"""Reset viewable area to show the channel under the cursor
|
|
51
45
|
|
|
52
|
-
:type execution_context: int | str | None
|
|
53
|
-
:type undo: bool | None
|
|
54
46
|
:param include_handles: Include Handles, Include handles of keyframes when calculating extents
|
|
55
|
-
:type include_handles: bool | None
|
|
56
47
|
:param use_preview_range: Use Preview Range, Ignore frames outside of the preview range
|
|
57
|
-
:type use_preview_range: bool | None
|
|
58
48
|
"""
|
|
59
49
|
|
|
60
50
|
def channels_bake(
|
|
@@ -62,6 +52,7 @@ def channels_bake(
|
|
|
62
52
|
undo: bool | None = None,
|
|
63
53
|
/,
|
|
64
54
|
*,
|
|
55
|
+
use_scene_range: bool | None = True,
|
|
65
56
|
range: collections.abc.Iterable[int] | None = (0, 0),
|
|
66
57
|
step: float | None = 1.0,
|
|
67
58
|
remove_outside_range: bool | None = False,
|
|
@@ -70,14 +61,10 @@ def channels_bake(
|
|
|
70
61
|
) -> None:
|
|
71
62
|
"""Create keyframes following the current shape of F-Curves of selected channels
|
|
72
63
|
|
|
73
|
-
:
|
|
74
|
-
:
|
|
75
|
-
:param range: Frame Range, The range in which to create new keys
|
|
76
|
-
:type range: collections.abc.Iterable[int] | None
|
|
64
|
+
:param use_scene_range: Use Scene Range, If enabled, the scene start and end frame will be used to determine the bake range
|
|
65
|
+
:param range: Frame Range, The custom range in which to create new keys. Only used when not using the scene range
|
|
77
66
|
:param step: Frame Step, At which interval to add keys
|
|
78
|
-
:type step: float | None
|
|
79
67
|
:param remove_outside_range: Remove Outside Range, Removes keys outside the given range, leaving only the newly baked
|
|
80
|
-
:type remove_outside_range: bool | None
|
|
81
68
|
:param interpolation_type: Interpolation Type, Choose the interpolation type with which new keys will be added
|
|
82
69
|
|
|
83
70
|
BEZIER
|
|
@@ -88,19 +75,15 @@ def channels_bake(
|
|
|
88
75
|
|
|
89
76
|
CONST
|
|
90
77
|
Constant -- New keys will be constant.
|
|
91
|
-
:type interpolation_type: typing.Literal['BEZIER','LIN','CONST'] | None
|
|
92
78
|
:param bake_modifiers: Bake Modifiers, Bake Modifiers into keyframes and delete them after
|
|
93
|
-
:type bake_modifiers: bool | None
|
|
94
79
|
"""
|
|
95
80
|
|
|
96
81
|
def channels_clean_empty(
|
|
97
|
-
execution_context: int | str | None = None,
|
|
82
|
+
execution_context: int | str | None = None,
|
|
83
|
+
undo: bool | None = None,
|
|
84
|
+
/,
|
|
98
85
|
) -> None:
|
|
99
|
-
"""Delete all empty animation data containers from visible data-blocks
|
|
100
|
-
|
|
101
|
-
:type execution_context: int | str | None
|
|
102
|
-
:type undo: bool | None
|
|
103
|
-
"""
|
|
86
|
+
"""Delete all empty animation data containers from visible data-blocks"""
|
|
104
87
|
|
|
105
88
|
def channels_click(
|
|
106
89
|
execution_context: int | str | None = None,
|
|
@@ -113,14 +96,9 @@ def channels_click(
|
|
|
113
96
|
) -> None:
|
|
114
97
|
"""Handle mouse clicks over animation channels
|
|
115
98
|
|
|
116
|
-
:type execution_context: int | str | None
|
|
117
|
-
:type undo: bool | None
|
|
118
99
|
:param extend: Extend Select
|
|
119
|
-
:type extend: bool | None
|
|
120
100
|
:param extend_range: Extend Range, Selection of active channel to clicked channel
|
|
121
|
-
:type extend_range: bool | None
|
|
122
101
|
:param children_only: Select Children Only
|
|
123
|
-
:type children_only: bool | None
|
|
124
102
|
"""
|
|
125
103
|
|
|
126
104
|
def channels_collapse(
|
|
@@ -132,20 +110,15 @@ def channels_collapse(
|
|
|
132
110
|
) -> None:
|
|
133
111
|
"""Collapse (close) all selected expandable animation channels
|
|
134
112
|
|
|
135
|
-
:type execution_context: int | str | None
|
|
136
|
-
:type undo: bool | None
|
|
137
113
|
:param all: All, Collapse all channels (not just selected ones)
|
|
138
|
-
:type all: bool | None
|
|
139
114
|
"""
|
|
140
115
|
|
|
141
116
|
def channels_delete(
|
|
142
|
-
execution_context: int | str | None = None,
|
|
117
|
+
execution_context: int | str | None = None,
|
|
118
|
+
undo: bool | None = None,
|
|
119
|
+
/,
|
|
143
120
|
) -> None:
|
|
144
|
-
"""Delete all selected animation channels
|
|
145
|
-
|
|
146
|
-
:type execution_context: int | str | None
|
|
147
|
-
:type undo: bool | None
|
|
148
|
-
"""
|
|
121
|
+
"""Delete all selected animation channels"""
|
|
149
122
|
|
|
150
123
|
def channels_editable_toggle(
|
|
151
124
|
execution_context: int | str | None = None,
|
|
@@ -157,12 +130,8 @@ def channels_editable_toggle(
|
|
|
157
130
|
) -> None:
|
|
158
131
|
"""Toggle editability of selected channels
|
|
159
132
|
|
|
160
|
-
:type execution_context: int | str | None
|
|
161
|
-
:type undo: bool | None
|
|
162
133
|
:param mode: Mode
|
|
163
|
-
:type mode: typing.Literal['TOGGLE','DISABLE','ENABLE','INVERT'] | None
|
|
164
134
|
:param type: Type
|
|
165
|
-
:type type: typing.Literal['PROTECT','MUTE'] | None
|
|
166
135
|
"""
|
|
167
136
|
|
|
168
137
|
def channels_expand(
|
|
@@ -174,20 +143,15 @@ def channels_expand(
|
|
|
174
143
|
) -> None:
|
|
175
144
|
"""Expand (open) all selected expandable animation channels
|
|
176
145
|
|
|
177
|
-
:type execution_context: int | str | None
|
|
178
|
-
:type undo: bool | None
|
|
179
146
|
:param all: All, Expand all channels (not just selected ones)
|
|
180
|
-
:type all: bool | None
|
|
181
147
|
"""
|
|
182
148
|
|
|
183
149
|
def channels_fcurves_enable(
|
|
184
|
-
execution_context: int | str | None = None,
|
|
150
|
+
execution_context: int | str | None = None,
|
|
151
|
+
undo: bool | None = None,
|
|
152
|
+
/,
|
|
185
153
|
) -> None:
|
|
186
|
-
"""Clear
|
|
187
|
-
|
|
188
|
-
:type execution_context: int | str | None
|
|
189
|
-
:type undo: bool | None
|
|
190
|
-
"""
|
|
154
|
+
"""Clear disabled tag from all F-Curves to get broken F-Curves working again"""
|
|
191
155
|
|
|
192
156
|
def channels_group(
|
|
193
157
|
execution_context: int | str | None = None,
|
|
@@ -198,10 +162,7 @@ def channels_group(
|
|
|
198
162
|
) -> None:
|
|
199
163
|
"""Add selected F-Curves to a new group
|
|
200
164
|
|
|
201
|
-
:type execution_context: int | str | None
|
|
202
|
-
:type undo: bool | None
|
|
203
165
|
:param name: Name, Name of newly created group
|
|
204
|
-
:type name: str
|
|
205
166
|
"""
|
|
206
167
|
|
|
207
168
|
def channels_move(
|
|
@@ -213,20 +174,15 @@ def channels_move(
|
|
|
213
174
|
) -> None:
|
|
214
175
|
"""Rearrange selected animation channels
|
|
215
176
|
|
|
216
|
-
:type execution_context: int | str | None
|
|
217
|
-
:type undo: bool | None
|
|
218
177
|
:param direction: Direction
|
|
219
|
-
:type direction: typing.Literal['TOP','UP','DOWN','BOTTOM'] | None
|
|
220
178
|
"""
|
|
221
179
|
|
|
222
180
|
def channels_rename(
|
|
223
|
-
execution_context: int | str | None = None,
|
|
181
|
+
execution_context: int | str | None = None,
|
|
182
|
+
undo: bool | None = None,
|
|
183
|
+
/,
|
|
224
184
|
) -> None:
|
|
225
|
-
"""Rename animation channel under mouse
|
|
226
|
-
|
|
227
|
-
:type execution_context: int | str | None
|
|
228
|
-
:type undo: bool | None
|
|
229
|
-
"""
|
|
185
|
+
"""Rename animation channel under mouse"""
|
|
230
186
|
|
|
231
187
|
def channels_select_all(
|
|
232
188
|
execution_context: int | str | None = None,
|
|
@@ -237,8 +193,6 @@ def channels_select_all(
|
|
|
237
193
|
) -> None:
|
|
238
194
|
"""Toggle selection of all animation channels
|
|
239
195
|
|
|
240
|
-
:type execution_context: int | str | None
|
|
241
|
-
:type undo: bool | None
|
|
242
196
|
:param action: Action, Selection action to execute
|
|
243
197
|
|
|
244
198
|
TOGGLE
|
|
@@ -252,7 +206,6 @@ def channels_select_all(
|
|
|
252
206
|
|
|
253
207
|
INVERT
|
|
254
208
|
Invert -- Invert selection of all elements.
|
|
255
|
-
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
256
209
|
"""
|
|
257
210
|
|
|
258
211
|
def channels_select_box(
|
|
@@ -270,32 +223,21 @@ def channels_select_box(
|
|
|
270
223
|
) -> None:
|
|
271
224
|
"""Select all animation channels within the specified region
|
|
272
225
|
|
|
273
|
-
:type execution_context: int | str | None
|
|
274
|
-
:type undo: bool | None
|
|
275
226
|
:param xmin: X Min
|
|
276
|
-
:type xmin: int | None
|
|
277
227
|
:param xmax: X Max
|
|
278
|
-
:type xmax: int | None
|
|
279
228
|
:param ymin: Y Min
|
|
280
|
-
:type ymin: int | None
|
|
281
229
|
:param ymax: Y Max
|
|
282
|
-
:type ymax: int | None
|
|
283
230
|
:param wait_for_input: Wait for Input
|
|
284
|
-
:type wait_for_input: bool | None
|
|
285
231
|
:param deselect: Deselect, Deselect rather than select items
|
|
286
|
-
:type deselect: bool | None
|
|
287
232
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
288
|
-
:type extend: bool | None
|
|
289
233
|
"""
|
|
290
234
|
|
|
291
235
|
def channels_select_filter(
|
|
292
|
-
execution_context: int | str | None = None,
|
|
236
|
+
execution_context: int | str | None = None,
|
|
237
|
+
undo: bool | None = None,
|
|
238
|
+
/,
|
|
293
239
|
) -> None:
|
|
294
|
-
"""Start entering text which filters the set of channels shown to only include those with matching names
|
|
295
|
-
|
|
296
|
-
:type execution_context: int | str | None
|
|
297
|
-
:type undo: bool | None
|
|
298
|
-
"""
|
|
240
|
+
"""Start entering text which filters the set of channels shown to only include those with matching names"""
|
|
299
241
|
|
|
300
242
|
def channels_setting_disable(
|
|
301
243
|
execution_context: int | str | None = None,
|
|
@@ -307,12 +249,8 @@ def channels_setting_disable(
|
|
|
307
249
|
) -> None:
|
|
308
250
|
"""Disable specified setting on all selected animation channels
|
|
309
251
|
|
|
310
|
-
:type execution_context: int | str | None
|
|
311
|
-
:type undo: bool | None
|
|
312
252
|
:param mode: Mode
|
|
313
|
-
:type mode: typing.Literal['TOGGLE','DISABLE','ENABLE','INVERT'] | None
|
|
314
253
|
:param type: Type
|
|
315
|
-
:type type: typing.Literal['PROTECT','MUTE'] | None
|
|
316
254
|
"""
|
|
317
255
|
|
|
318
256
|
def channels_setting_enable(
|
|
@@ -325,12 +263,8 @@ def channels_setting_enable(
|
|
|
325
263
|
) -> None:
|
|
326
264
|
"""Enable specified setting on all selected animation channels
|
|
327
265
|
|
|
328
|
-
:type execution_context: int | str | None
|
|
329
|
-
:type undo: bool | None
|
|
330
266
|
:param mode: Mode
|
|
331
|
-
:type mode: typing.Literal['TOGGLE','DISABLE','ENABLE','INVERT'] | None
|
|
332
267
|
:param type: Type
|
|
333
|
-
:type type: typing.Literal['PROTECT','MUTE'] | None
|
|
334
268
|
"""
|
|
335
269
|
|
|
336
270
|
def channels_setting_toggle(
|
|
@@ -343,22 +277,16 @@ def channels_setting_toggle(
|
|
|
343
277
|
) -> None:
|
|
344
278
|
"""Toggle specified setting on all selected animation channels
|
|
345
279
|
|
|
346
|
-
:type execution_context: int | str | None
|
|
347
|
-
:type undo: bool | None
|
|
348
280
|
:param mode: Mode
|
|
349
|
-
:type mode: typing.Literal['TOGGLE','DISABLE','ENABLE','INVERT'] | None
|
|
350
281
|
:param type: Type
|
|
351
|
-
:type type: typing.Literal['PROTECT','MUTE'] | None
|
|
352
282
|
"""
|
|
353
283
|
|
|
354
284
|
def channels_ungroup(
|
|
355
|
-
execution_context: int | str | None = None,
|
|
285
|
+
execution_context: int | str | None = None,
|
|
286
|
+
undo: bool | None = None,
|
|
287
|
+
/,
|
|
356
288
|
) -> None:
|
|
357
|
-
"""Remove selected F-Curves from their current groups
|
|
358
|
-
|
|
359
|
-
:type execution_context: int | str | None
|
|
360
|
-
:type undo: bool | None
|
|
361
|
-
"""
|
|
289
|
+
"""Remove selected F-Curves from their current groups"""
|
|
362
290
|
|
|
363
291
|
def channels_view_selected(
|
|
364
292
|
execution_context: int | str | None = None,
|
|
@@ -370,12 +298,8 @@ def channels_view_selected(
|
|
|
370
298
|
) -> None:
|
|
371
299
|
"""Reset viewable area to show the selected channels
|
|
372
300
|
|
|
373
|
-
:type execution_context: int | str | None
|
|
374
|
-
:type undo: bool | None
|
|
375
301
|
:param include_handles: Include Handles, Include handles of keyframes when calculating extents
|
|
376
|
-
:type include_handles: bool | None
|
|
377
302
|
:param use_preview_range: Use Preview Range, Ignore frames outside of the preview range
|
|
378
|
-
:type use_preview_range: bool | None
|
|
379
303
|
"""
|
|
380
304
|
|
|
381
305
|
def clear_useless_actions(
|
|
@@ -387,47 +311,29 @@ def clear_useless_actions(
|
|
|
387
311
|
) -> None:
|
|
388
312
|
"""Mark actions with no F-Curves for deletion after save and reload of file preserving "action libraries"
|
|
389
313
|
|
|
390
|
-
:type execution_context: int | str | None
|
|
391
|
-
:type undo: bool | None
|
|
392
314
|
:param only_unused: Only Unused, Only unused (Fake User only) actions get considered
|
|
393
|
-
:type only_unused: bool | None
|
|
394
|
-
"""
|
|
395
|
-
|
|
396
|
-
def convert_legacy_action(
|
|
397
|
-
execution_context: int | str | None = None, undo: bool | None = None
|
|
398
|
-
) -> None:
|
|
399
|
-
"""Convert a legacy Action to a layered Action on the active object
|
|
400
|
-
|
|
401
|
-
:type execution_context: int | str | None
|
|
402
|
-
:type undo: bool | None
|
|
403
315
|
"""
|
|
404
316
|
|
|
405
317
|
def copy_driver_button(
|
|
406
|
-
execution_context: int | str | None = None,
|
|
318
|
+
execution_context: int | str | None = None,
|
|
319
|
+
undo: bool | None = None,
|
|
320
|
+
/,
|
|
407
321
|
) -> None:
|
|
408
|
-
"""Copy the driver for the highlighted button
|
|
409
|
-
|
|
410
|
-
:type execution_context: int | str | None
|
|
411
|
-
:type undo: bool | None
|
|
412
|
-
"""
|
|
322
|
+
"""Copy the driver for the highlighted button"""
|
|
413
323
|
|
|
414
324
|
def driver_button_add(
|
|
415
|
-
execution_context: int | str | None = None,
|
|
325
|
+
execution_context: int | str | None = None,
|
|
326
|
+
undo: bool | None = None,
|
|
327
|
+
/,
|
|
416
328
|
) -> None:
|
|
417
|
-
"""Add driver for the property under the cursor
|
|
418
|
-
|
|
419
|
-
:type execution_context: int | str | None
|
|
420
|
-
:type undo: bool | None
|
|
421
|
-
"""
|
|
329
|
+
"""Add driver for the property under the cursor"""
|
|
422
330
|
|
|
423
331
|
def driver_button_edit(
|
|
424
|
-
execution_context: int | str | None = None,
|
|
332
|
+
execution_context: int | str | None = None,
|
|
333
|
+
undo: bool | None = None,
|
|
334
|
+
/,
|
|
425
335
|
) -> None:
|
|
426
|
-
"""Edit the drivers for the connected property represented by the highlighted button
|
|
427
|
-
|
|
428
|
-
:type execution_context: int | str | None
|
|
429
|
-
:type undo: bool | None
|
|
430
|
-
"""
|
|
336
|
+
"""Edit the drivers for the connected property represented by the highlighted button"""
|
|
431
337
|
|
|
432
338
|
def driver_button_remove(
|
|
433
339
|
execution_context: int | str | None = None,
|
|
@@ -438,20 +344,15 @@ def driver_button_remove(
|
|
|
438
344
|
) -> None:
|
|
439
345
|
"""Remove the driver(s) for the connected property(s) represented by the highlighted button
|
|
440
346
|
|
|
441
|
-
:type execution_context: int | str | None
|
|
442
|
-
:type undo: bool | None
|
|
443
347
|
:param all: All, Delete drivers for all elements of the array
|
|
444
|
-
:type all: bool | None
|
|
445
348
|
"""
|
|
446
349
|
|
|
447
350
|
def end_frame_set(
|
|
448
|
-
execution_context: int | str | None = None,
|
|
351
|
+
execution_context: int | str | None = None,
|
|
352
|
+
undo: bool | None = None,
|
|
353
|
+
/,
|
|
449
354
|
) -> None:
|
|
450
|
-
"""Set the current frame as the preview or scene end frame
|
|
451
|
-
|
|
452
|
-
:type execution_context: int | str | None
|
|
453
|
-
:type undo: bool | None
|
|
454
|
-
"""
|
|
355
|
+
"""Set the current frame as the preview or scene end frame"""
|
|
455
356
|
|
|
456
357
|
def keyframe_clear_button(
|
|
457
358
|
execution_context: int | str | None = None,
|
|
@@ -462,10 +363,7 @@ def keyframe_clear_button(
|
|
|
462
363
|
) -> None:
|
|
463
364
|
"""Clear all keyframes on the currently active property
|
|
464
365
|
|
|
465
|
-
:type execution_context: int | str | None
|
|
466
|
-
:type undo: bool | None
|
|
467
366
|
:param all: All, Clear keyframes from all elements of the array
|
|
468
|
-
:type all: bool | None
|
|
469
367
|
"""
|
|
470
368
|
|
|
471
369
|
def keyframe_clear_v3d(
|
|
@@ -477,10 +375,19 @@ def keyframe_clear_v3d(
|
|
|
477
375
|
) -> None:
|
|
478
376
|
"""Remove all keyframe animation for selected objects
|
|
479
377
|
|
|
480
|
-
:type execution_context: int | str | None
|
|
481
|
-
:type undo: bool | None
|
|
482
378
|
:param confirm: Confirm, Prompt for confirmation
|
|
483
|
-
|
|
379
|
+
"""
|
|
380
|
+
|
|
381
|
+
def keyframe_clear_vse(
|
|
382
|
+
execution_context: int | str | None = None,
|
|
383
|
+
undo: bool | None = None,
|
|
384
|
+
/,
|
|
385
|
+
*,
|
|
386
|
+
confirm: bool | None = True,
|
|
387
|
+
) -> None:
|
|
388
|
+
"""Remove all keyframe animation for selected strips
|
|
389
|
+
|
|
390
|
+
:param confirm: Confirm, Prompt for confirmation
|
|
484
391
|
"""
|
|
485
392
|
|
|
486
393
|
def keyframe_delete(
|
|
@@ -492,10 +399,7 @@ def keyframe_delete(
|
|
|
492
399
|
) -> None:
|
|
493
400
|
"""Delete keyframes on the current frame for all properties in the specified Keying Set
|
|
494
401
|
|
|
495
|
-
:type execution_context: int | str | None
|
|
496
|
-
:type undo: bool | None
|
|
497
402
|
:param type: Keying Set, The Keying Set to use
|
|
498
|
-
:type type: str | None
|
|
499
403
|
"""
|
|
500
404
|
|
|
501
405
|
def keyframe_delete_button(
|
|
@@ -507,10 +411,7 @@ def keyframe_delete_button(
|
|
|
507
411
|
) -> None:
|
|
508
412
|
"""Delete current keyframe of current UI-active property
|
|
509
413
|
|
|
510
|
-
:type execution_context: int | str | None
|
|
511
|
-
:type undo: bool | None
|
|
512
414
|
:param all: All, Delete keyframes from all elements of the array
|
|
513
|
-
:type all: bool | None
|
|
514
415
|
"""
|
|
515
416
|
|
|
516
417
|
def keyframe_delete_by_name(
|
|
@@ -520,12 +421,9 @@ def keyframe_delete_by_name(
|
|
|
520
421
|
*,
|
|
521
422
|
type: str = "",
|
|
522
423
|
) -> None:
|
|
523
|
-
"""Alternate access to
|
|
424
|
+
"""Alternate access to Delete Keyframe for keymaps to use
|
|
524
425
|
|
|
525
|
-
:type execution_context: int | str | None
|
|
526
|
-
:type undo: bool | None
|
|
527
426
|
:param type: Keying Set, The Keying Set to use
|
|
528
|
-
:type type: str
|
|
529
427
|
"""
|
|
530
428
|
|
|
531
429
|
def keyframe_delete_v3d(
|
|
@@ -537,10 +435,19 @@ def keyframe_delete_v3d(
|
|
|
537
435
|
) -> None:
|
|
538
436
|
"""Remove keyframes on current frame for selected objects and bones
|
|
539
437
|
|
|
540
|
-
:type execution_context: int | str | None
|
|
541
|
-
:type undo: bool | None
|
|
542
438
|
:param confirm: Confirm, Prompt for confirmation
|
|
543
|
-
|
|
439
|
+
"""
|
|
440
|
+
|
|
441
|
+
def keyframe_delete_vse(
|
|
442
|
+
execution_context: int | str | None = None,
|
|
443
|
+
undo: bool | None = None,
|
|
444
|
+
/,
|
|
445
|
+
*,
|
|
446
|
+
confirm: bool | None = True,
|
|
447
|
+
) -> None:
|
|
448
|
+
"""Remove keyframes on current frame for selected strips
|
|
449
|
+
|
|
450
|
+
:param confirm: Confirm, Prompt for confirmation
|
|
544
451
|
"""
|
|
545
452
|
|
|
546
453
|
def keyframe_insert(
|
|
@@ -552,10 +459,7 @@ def keyframe_insert(
|
|
|
552
459
|
) -> None:
|
|
553
460
|
"""Insert keyframes on the current frame using either the active keying set, or the user preferences if no keying set is active
|
|
554
461
|
|
|
555
|
-
:type execution_context: int | str | None
|
|
556
|
-
:type undo: bool | None
|
|
557
462
|
:param type: Keying Set, The Keying Set to use
|
|
558
|
-
:type type: str | None
|
|
559
463
|
"""
|
|
560
464
|
|
|
561
465
|
def keyframe_insert_button(
|
|
@@ -567,10 +471,7 @@ def keyframe_insert_button(
|
|
|
567
471
|
) -> None:
|
|
568
472
|
"""Insert a keyframe for current UI-active property
|
|
569
473
|
|
|
570
|
-
:type execution_context: int | str | None
|
|
571
|
-
:type undo: bool | None
|
|
572
474
|
:param all: All, Insert a keyframe for all element of the array
|
|
573
|
-
:type all: bool | None
|
|
574
475
|
"""
|
|
575
476
|
|
|
576
477
|
def keyframe_insert_by_name(
|
|
@@ -580,12 +481,9 @@ def keyframe_insert_by_name(
|
|
|
580
481
|
*,
|
|
581
482
|
type: str = "",
|
|
582
483
|
) -> None:
|
|
583
|
-
"""Alternate access to
|
|
484
|
+
"""Alternate access to Insert Keyframe for keymaps to use
|
|
584
485
|
|
|
585
|
-
:type execution_context: int | str | None
|
|
586
|
-
:type undo: bool | None
|
|
587
486
|
:param type: Keying Set, The Keying Set to use
|
|
588
|
-
:type type: str
|
|
589
487
|
"""
|
|
590
488
|
|
|
591
489
|
def keyframe_insert_menu(
|
|
@@ -598,12 +496,8 @@ def keyframe_insert_menu(
|
|
|
598
496
|
) -> None:
|
|
599
497
|
"""Insert Keyframes for specified Keying Set, with menu of available Keying Sets if undefined
|
|
600
498
|
|
|
601
|
-
:type execution_context: int | str | None
|
|
602
|
-
:type undo: bool | None
|
|
603
499
|
:param type: Keying Set, The Keying Set to use
|
|
604
|
-
:type type: str | None
|
|
605
500
|
:param always_prompt: Always Show Menu
|
|
606
|
-
:type always_prompt: bool | None
|
|
607
501
|
"""
|
|
608
502
|
|
|
609
503
|
def keying_set_active_set(
|
|
@@ -615,20 +509,15 @@ def keying_set_active_set(
|
|
|
615
509
|
) -> None:
|
|
616
510
|
"""Set a new active keying set
|
|
617
511
|
|
|
618
|
-
:type execution_context: int | str | None
|
|
619
|
-
:type undo: bool | None
|
|
620
512
|
:param type: Keying Set, The Keying Set to use
|
|
621
|
-
:type type: str | None
|
|
622
513
|
"""
|
|
623
514
|
|
|
624
515
|
def keying_set_add(
|
|
625
|
-
execution_context: int | str | None = None,
|
|
516
|
+
execution_context: int | str | None = None,
|
|
517
|
+
undo: bool | None = None,
|
|
518
|
+
/,
|
|
626
519
|
) -> None:
|
|
627
|
-
"""Add a new (empty) keying set to the active Scene
|
|
628
|
-
|
|
629
|
-
:type execution_context: int | str | None
|
|
630
|
-
:type undo: bool | None
|
|
631
|
-
"""
|
|
520
|
+
"""Add a new (empty) keying set to the active Scene"""
|
|
632
521
|
|
|
633
522
|
def keying_set_export(
|
|
634
523
|
execution_context: int | str | None = None,
|
|
@@ -642,44 +531,32 @@ def keying_set_export(
|
|
|
642
531
|
) -> None:
|
|
643
532
|
"""Export Keying Set to a Python script
|
|
644
533
|
|
|
645
|
-
:type execution_context: int | str | None
|
|
646
|
-
:type undo: bool | None
|
|
647
534
|
:param filepath: filepath
|
|
648
|
-
:type filepath: str
|
|
649
535
|
:param filter_folder: Filter folders
|
|
650
|
-
:type filter_folder: bool | None
|
|
651
536
|
:param filter_text: Filter text
|
|
652
|
-
:type filter_text: bool | None
|
|
653
537
|
:param filter_python: Filter Python
|
|
654
|
-
:type filter_python: bool | None
|
|
655
538
|
"""
|
|
656
539
|
|
|
657
540
|
def keying_set_path_add(
|
|
658
|
-
execution_context: int | str | None = None,
|
|
541
|
+
execution_context: int | str | None = None,
|
|
542
|
+
undo: bool | None = None,
|
|
543
|
+
/,
|
|
659
544
|
) -> None:
|
|
660
|
-
"""Add empty path to active keying set
|
|
661
|
-
|
|
662
|
-
:type execution_context: int | str | None
|
|
663
|
-
:type undo: bool | None
|
|
664
|
-
"""
|
|
545
|
+
"""Add empty path to active keying set"""
|
|
665
546
|
|
|
666
547
|
def keying_set_path_remove(
|
|
667
|
-
execution_context: int | str | None = None,
|
|
548
|
+
execution_context: int | str | None = None,
|
|
549
|
+
undo: bool | None = None,
|
|
550
|
+
/,
|
|
668
551
|
) -> None:
|
|
669
|
-
"""Remove active Path from active keying set
|
|
670
|
-
|
|
671
|
-
:type execution_context: int | str | None
|
|
672
|
-
:type undo: bool | None
|
|
673
|
-
"""
|
|
552
|
+
"""Remove active Path from active keying set"""
|
|
674
553
|
|
|
675
554
|
def keying_set_remove(
|
|
676
|
-
execution_context: int | str | None = None,
|
|
555
|
+
execution_context: int | str | None = None,
|
|
556
|
+
undo: bool | None = None,
|
|
557
|
+
/,
|
|
677
558
|
) -> None:
|
|
678
|
-
"""Remove the active keying set
|
|
679
|
-
|
|
680
|
-
:type execution_context: int | str | None
|
|
681
|
-
:type undo: bool | None
|
|
682
|
-
"""
|
|
559
|
+
"""Remove the active keying set"""
|
|
683
560
|
|
|
684
561
|
def keyingset_button_add(
|
|
685
562
|
execution_context: int | str | None = None,
|
|
@@ -690,47 +567,36 @@ def keyingset_button_add(
|
|
|
690
567
|
) -> None:
|
|
691
568
|
"""Add current UI-active property to current keying set
|
|
692
569
|
|
|
693
|
-
:type execution_context: int | str | None
|
|
694
|
-
:type undo: bool | None
|
|
695
570
|
:param all: All, Add all elements of the array to a Keying Set
|
|
696
|
-
:type all: bool | None
|
|
697
571
|
"""
|
|
698
572
|
|
|
699
573
|
def keyingset_button_remove(
|
|
700
|
-
execution_context: int | str | None = None,
|
|
574
|
+
execution_context: int | str | None = None,
|
|
575
|
+
undo: bool | None = None,
|
|
576
|
+
/,
|
|
701
577
|
) -> None:
|
|
702
|
-
"""Remove current UI-active property from current keying set
|
|
703
|
-
|
|
704
|
-
:type execution_context: int | str | None
|
|
705
|
-
:type undo: bool | None
|
|
706
|
-
"""
|
|
578
|
+
"""Remove current UI-active property from current keying set"""
|
|
707
579
|
|
|
708
580
|
def merge_animation(
|
|
709
|
-
execution_context: int | str | None = None,
|
|
581
|
+
execution_context: int | str | None = None,
|
|
582
|
+
undo: bool | None = None,
|
|
583
|
+
/,
|
|
710
584
|
) -> None:
|
|
711
|
-
"""Merge the animation of the selected objects into the action of the active object. Actions are not deleted by this, but might end up with zero users
|
|
712
|
-
|
|
713
|
-
:type execution_context: int | str | None
|
|
714
|
-
:type undo: bool | None
|
|
715
|
-
"""
|
|
585
|
+
"""Merge the animation of the selected objects into the action of the active object. Actions are not deleted by this, but might end up with zero users"""
|
|
716
586
|
|
|
717
587
|
def paste_driver_button(
|
|
718
|
-
execution_context: int | str | None = None,
|
|
588
|
+
execution_context: int | str | None = None,
|
|
589
|
+
undo: bool | None = None,
|
|
590
|
+
/,
|
|
719
591
|
) -> None:
|
|
720
|
-
"""Paste the driver in the internal clipboard to the highlighted button
|
|
721
|
-
|
|
722
|
-
:type execution_context: int | str | None
|
|
723
|
-
:type undo: bool | None
|
|
724
|
-
"""
|
|
592
|
+
"""Paste the driver in the internal clipboard to the highlighted button"""
|
|
725
593
|
|
|
726
594
|
def previewrange_clear(
|
|
727
|
-
execution_context: int | str | None = None,
|
|
595
|
+
execution_context: int | str | None = None,
|
|
596
|
+
undo: bool | None = None,
|
|
597
|
+
/,
|
|
728
598
|
) -> None:
|
|
729
|
-
"""Clear preview range
|
|
730
|
-
|
|
731
|
-
:type execution_context: int | str | None
|
|
732
|
-
:type undo: bool | None
|
|
733
|
-
"""
|
|
599
|
+
"""Clear preview range"""
|
|
734
600
|
|
|
735
601
|
def previewrange_set(
|
|
736
602
|
execution_context: int | str | None = None,
|
|
@@ -745,91 +611,68 @@ def previewrange_set(
|
|
|
745
611
|
) -> None:
|
|
746
612
|
"""Interactively define frame range used for playback
|
|
747
613
|
|
|
748
|
-
:type execution_context: int | str | None
|
|
749
|
-
:type undo: bool | None
|
|
750
614
|
:param xmin: X Min
|
|
751
|
-
:type xmin: int | None
|
|
752
615
|
:param xmax: X Max
|
|
753
|
-
:type xmax: int | None
|
|
754
616
|
:param ymin: Y Min
|
|
755
|
-
:type ymin: int | None
|
|
756
617
|
:param ymax: Y Max
|
|
757
|
-
:type ymax: int | None
|
|
758
618
|
:param wait_for_input: Wait for Input
|
|
759
|
-
:type wait_for_input: bool | None
|
|
760
619
|
"""
|
|
761
620
|
|
|
762
621
|
def scene_range_frame(
|
|
763
|
-
execution_context: int | str | None = None,
|
|
622
|
+
execution_context: int | str | None = None,
|
|
623
|
+
undo: bool | None = None,
|
|
624
|
+
/,
|
|
764
625
|
) -> None:
|
|
765
|
-
"""Reset the horizontal view to the current scene frame range, taking the preview range into account if it is active
|
|
766
|
-
|
|
767
|
-
:type execution_context: int | str | None
|
|
768
|
-
:type undo: bool | None
|
|
769
|
-
"""
|
|
626
|
+
"""Reset the horizontal view to the current scene frame range, taking the preview range into account if it is active"""
|
|
770
627
|
|
|
771
628
|
def separate_slots(
|
|
772
|
-
execution_context: int | str | None = None,
|
|
629
|
+
execution_context: int | str | None = None,
|
|
630
|
+
undo: bool | None = None,
|
|
631
|
+
/,
|
|
773
632
|
) -> None:
|
|
774
|
-
"""Move all slots of the action on the active object into newly created, separate actions. All users of those slots will be reassigned to the new actions. The current action
|
|
775
|
-
|
|
776
|
-
:type execution_context: int | str | None
|
|
777
|
-
:type undo: bool | None
|
|
778
|
-
"""
|
|
633
|
+
"""Move all slots of the action on the active object into newly created, separate actions. All users of those slots will be reassigned to the new actions. The current action wont be deleted but will be empty and might end up having zero users"""
|
|
779
634
|
|
|
780
635
|
def slot_channels_move_to_new_action(
|
|
781
|
-
execution_context: int | str | None = None,
|
|
636
|
+
execution_context: int | str | None = None,
|
|
637
|
+
undo: bool | None = None,
|
|
638
|
+
/,
|
|
782
639
|
) -> None:
|
|
783
|
-
"""Move the selected slots into a newly created action
|
|
784
|
-
|
|
785
|
-
:type execution_context: int | str | None
|
|
786
|
-
:type undo: bool | None
|
|
787
|
-
"""
|
|
640
|
+
"""Move the selected slots into a newly created action"""
|
|
788
641
|
|
|
789
642
|
def slot_new_for_id(
|
|
790
|
-
execution_context: int | str | None = None,
|
|
643
|
+
execution_context: int | str | None = None,
|
|
644
|
+
undo: bool | None = None,
|
|
645
|
+
/,
|
|
791
646
|
) -> None:
|
|
792
|
-
"""Create a new action slot for this data-block, to hold its animation
|
|
793
|
-
|
|
794
|
-
:type execution_context: int | str | None
|
|
795
|
-
:type undo: bool | None
|
|
796
|
-
"""
|
|
647
|
+
"""Create a new action slot for this data-block, to hold its animation"""
|
|
797
648
|
|
|
798
649
|
def slot_unassign_from_constraint(
|
|
799
|
-
execution_context: int | str | None = None,
|
|
650
|
+
execution_context: int | str | None = None,
|
|
651
|
+
undo: bool | None = None,
|
|
652
|
+
/,
|
|
800
653
|
) -> None:
|
|
801
|
-
"""Un-assign the action slot from this constraint
|
|
802
|
-
|
|
803
|
-
:type execution_context: int | str | None
|
|
804
|
-
:type undo: bool | None
|
|
805
|
-
"""
|
|
654
|
+
"""Un-assign the action slot from this constraint"""
|
|
806
655
|
|
|
807
656
|
def slot_unassign_from_id(
|
|
808
|
-
execution_context: int | str | None = None,
|
|
657
|
+
execution_context: int | str | None = None,
|
|
658
|
+
undo: bool | None = None,
|
|
659
|
+
/,
|
|
809
660
|
) -> None:
|
|
810
|
-
"""Un-assign the action slot, effectively making this data-block non-animated
|
|
811
|
-
|
|
812
|
-
:type execution_context: int | str | None
|
|
813
|
-
:type undo: bool | None
|
|
814
|
-
"""
|
|
661
|
+
"""Un-assign the action slot, effectively making this data-block non-animated"""
|
|
815
662
|
|
|
816
663
|
def slot_unassign_from_nla_strip(
|
|
817
|
-
execution_context: int | str | None = None,
|
|
664
|
+
execution_context: int | str | None = None,
|
|
665
|
+
undo: bool | None = None,
|
|
666
|
+
/,
|
|
818
667
|
) -> None:
|
|
819
|
-
"""Un-assign the action slot from this NLA strip, effectively making it non-animated
|
|
820
|
-
|
|
821
|
-
:type execution_context: int | str | None
|
|
822
|
-
:type undo: bool | None
|
|
823
|
-
"""
|
|
668
|
+
"""Un-assign the action slot from this NLA strip, effectively making it non-animated"""
|
|
824
669
|
|
|
825
670
|
def start_frame_set(
|
|
826
|
-
execution_context: int | str | None = None,
|
|
671
|
+
execution_context: int | str | None = None,
|
|
672
|
+
undo: bool | None = None,
|
|
673
|
+
/,
|
|
827
674
|
) -> None:
|
|
828
|
-
"""Set the current frame as the preview or scene start frame
|
|
829
|
-
|
|
830
|
-
:type execution_context: int | str | None
|
|
831
|
-
:type undo: bool | None
|
|
832
|
-
"""
|
|
675
|
+
"""Set the current frame as the preview or scene start frame"""
|
|
833
676
|
|
|
834
677
|
def update_animated_transform_constraints(
|
|
835
678
|
execution_context: int | str | None = None,
|
|
@@ -840,12 +683,16 @@ def update_animated_transform_constraints(
|
|
|
840
683
|
) -> None:
|
|
841
684
|
"""Update f-curves/drivers affecting Transform constraints (use it with files from 2.70 and earlier)
|
|
842
685
|
|
|
843
|
-
:type execution_context: int | str | None
|
|
844
|
-
:type undo: bool | None
|
|
845
686
|
:param use_convert_to_radians: Convert to Radians, Convert f-curves/drivers affecting rotations to radians.Warning: Use this only once
|
|
846
|
-
:type use_convert_to_radians: bool | None
|
|
847
687
|
"""
|
|
848
688
|
|
|
689
|
+
def version_bone_hide_property(
|
|
690
|
+
execution_context: int | str | None = None,
|
|
691
|
+
undo: bool | None = None,
|
|
692
|
+
/,
|
|
693
|
+
) -> None:
|
|
694
|
+
"""Moves any F-Curves for the hide property of selected armatures into the action of the object. This will only operate on the first layer and strip of the action"""
|
|
695
|
+
|
|
849
696
|
def view_curve_in_graph_editor(
|
|
850
697
|
execution_context: int | str | None = None,
|
|
851
698
|
undo: bool | None = None,
|
|
@@ -856,10 +703,6 @@ def view_curve_in_graph_editor(
|
|
|
856
703
|
) -> None:
|
|
857
704
|
"""Frame the property under the cursor in the Graph Editor
|
|
858
705
|
|
|
859
|
-
:type execution_context: int | str | None
|
|
860
|
-
:type undo: bool | None
|
|
861
706
|
:param all: Show All, Frame the whole array property instead of only the index under the cursor
|
|
862
|
-
:type all: bool | None
|
|
863
707
|
:param isolate: Isolate, Hides all F-Curves other than the ones being framed
|
|
864
|
-
:type isolate: bool | None
|
|
865
708
|
"""
|