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/graph/__init__.pyi
CHANGED
|
@@ -7,13 +7,11 @@ import bpy.stub_internal.rna_enums
|
|
|
7
7
|
import bpy.types
|
|
8
8
|
|
|
9
9
|
def bake_keys(
|
|
10
|
-
execution_context: int | str | None = None,
|
|
10
|
+
execution_context: int | str | None = None,
|
|
11
|
+
undo: bool | None = None,
|
|
12
|
+
/,
|
|
11
13
|
) -> None:
|
|
12
|
-
"""Add keyframes on every frame between the selected keyframes
|
|
13
|
-
|
|
14
|
-
:type execution_context: int | str | None
|
|
15
|
-
:type undo: bool | None
|
|
16
|
-
"""
|
|
14
|
+
"""Add keyframes on every frame between the selected keyframes"""
|
|
17
15
|
|
|
18
16
|
def blend_offset(
|
|
19
17
|
execution_context: int | str | None = None,
|
|
@@ -24,10 +22,7 @@ def blend_offset(
|
|
|
24
22
|
) -> None:
|
|
25
23
|
"""Shift selected keys to the value of the neighboring keys as a block
|
|
26
24
|
|
|
27
|
-
:type execution_context: int | str | None
|
|
28
|
-
:type undo: bool | None
|
|
29
25
|
:param factor: Offset Factor, Control which key to offset towards and how far
|
|
30
|
-
:type factor: float | None
|
|
31
26
|
"""
|
|
32
27
|
|
|
33
28
|
def blend_to_default(
|
|
@@ -39,10 +34,7 @@ def blend_to_default(
|
|
|
39
34
|
) -> None:
|
|
40
35
|
"""Blend selected keys to their default value from their current position
|
|
41
36
|
|
|
42
|
-
:type execution_context: int | str | None
|
|
43
|
-
:type undo: bool | None
|
|
44
37
|
:param factor: Factor, How much to blend to the default value
|
|
45
|
-
:type factor: float | None
|
|
46
38
|
"""
|
|
47
39
|
|
|
48
40
|
def blend_to_ease(
|
|
@@ -54,10 +46,7 @@ def blend_to_ease(
|
|
|
54
46
|
) -> None:
|
|
55
47
|
"""Blends keyframes from current state to an ease-in or ease-out curve
|
|
56
48
|
|
|
57
|
-
:type execution_context: int | str | None
|
|
58
|
-
:type undo: bool | None
|
|
59
49
|
:param factor: Blend, Favor either original data or ease curve
|
|
60
|
-
:type factor: float | None
|
|
61
50
|
"""
|
|
62
51
|
|
|
63
52
|
def blend_to_neighbor(
|
|
@@ -69,10 +58,7 @@ def blend_to_neighbor(
|
|
|
69
58
|
) -> None:
|
|
70
59
|
"""Blend selected keyframes to their left or right neighbor
|
|
71
60
|
|
|
72
|
-
:type execution_context: int | str | None
|
|
73
|
-
:type undo: bool | None
|
|
74
61
|
:param factor: Blend, The blend factor with 0 being the current frame
|
|
75
|
-
:type factor: float | None
|
|
76
62
|
"""
|
|
77
63
|
|
|
78
64
|
def breakdown(
|
|
@@ -84,10 +70,7 @@ def breakdown(
|
|
|
84
70
|
) -> None:
|
|
85
71
|
"""Move selected keyframes to an inbetween position relative to adjacent keys
|
|
86
72
|
|
|
87
|
-
:type execution_context: int | str | None
|
|
88
|
-
:type undo: bool | None
|
|
89
73
|
:param factor: Factor, Favor either the left or the right key
|
|
90
|
-
:type factor: float | None
|
|
91
74
|
"""
|
|
92
75
|
|
|
93
76
|
def butterworth_smooth(
|
|
@@ -103,18 +86,11 @@ def butterworth_smooth(
|
|
|
103
86
|
) -> None:
|
|
104
87
|
"""Smooth an F-Curve while maintaining the general shape of the curve
|
|
105
88
|
|
|
106
|
-
:type execution_context: int | str | None
|
|
107
|
-
:type undo: bool | None
|
|
108
89
|
:param cutoff_frequency: Frequency Cutoff (Hz), Lower values give a smoother curve
|
|
109
|
-
:type cutoff_frequency: float | None
|
|
110
90
|
:param filter_order: Filter Order, Higher values produce a harder frequency cutoff
|
|
111
|
-
:type filter_order: int | None
|
|
112
91
|
:param samples_per_frame: Samples per Frame, How many samples to calculate per frame, helps with subframe data
|
|
113
|
-
:type samples_per_frame: int | None
|
|
114
92
|
:param blend: Blend, How much to blend to the smoothed curve
|
|
115
|
-
:type blend: float | None
|
|
116
93
|
:param blend_in_out: Blend In/Out, Linearly blend the smooth data to the border frames of the selection
|
|
117
|
-
:type blend_in_out: int | None
|
|
118
94
|
"""
|
|
119
95
|
|
|
120
96
|
def clean(
|
|
@@ -127,12 +103,8 @@ def clean(
|
|
|
127
103
|
) -> None:
|
|
128
104
|
"""Simplify F-Curves by removing closely spaced keyframes
|
|
129
105
|
|
|
130
|
-
:type execution_context: int | str | None
|
|
131
|
-
:type undo: bool | None
|
|
132
106
|
:param threshold: Threshold
|
|
133
|
-
:type threshold: float | None
|
|
134
107
|
:param channels: Channels
|
|
135
|
-
:type channels: bool | None
|
|
136
108
|
"""
|
|
137
109
|
|
|
138
110
|
def click_insert(
|
|
@@ -146,14 +118,9 @@ def click_insert(
|
|
|
146
118
|
) -> None:
|
|
147
119
|
"""Insert new keyframe at the cursor position for the active F-Curve
|
|
148
120
|
|
|
149
|
-
:type execution_context: int | str | None
|
|
150
|
-
:type undo: bool | None
|
|
151
121
|
:param frame: Frame Number, Frame to insert keyframe on
|
|
152
|
-
:type frame: float | None
|
|
153
122
|
:param value: Value, Value for keyframe on
|
|
154
|
-
:type value: float | None
|
|
155
123
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
156
|
-
:type extend: bool | None
|
|
157
124
|
"""
|
|
158
125
|
|
|
159
126
|
def clickselect(
|
|
@@ -162,6 +129,7 @@ def clickselect(
|
|
|
162
129
|
/,
|
|
163
130
|
*,
|
|
164
131
|
wait_to_deselect_others: bool | None = False,
|
|
132
|
+
use_select_on_click: bool | None = False,
|
|
165
133
|
mouse_x: int | None = 0,
|
|
166
134
|
mouse_y: int | None = 0,
|
|
167
135
|
extend: bool | None = False,
|
|
@@ -171,30 +139,22 @@ def clickselect(
|
|
|
171
139
|
) -> None:
|
|
172
140
|
"""Select keyframes by clicking on them
|
|
173
141
|
|
|
174
|
-
:type execution_context: int | str | None
|
|
175
|
-
:type undo: bool | None
|
|
176
142
|
:param wait_to_deselect_others: Wait to Deselect Others
|
|
177
|
-
:
|
|
143
|
+
:param use_select_on_click: Act on Click, Instead of selecting on mouse press, wait to see if theres drag event. Otherwise select on mouse release
|
|
178
144
|
:param mouse_x: Mouse X
|
|
179
|
-
:type mouse_x: int | None
|
|
180
145
|
:param mouse_y: Mouse Y
|
|
181
|
-
:type mouse_y: int | None
|
|
182
146
|
:param extend: Extend Select, Toggle keyframe selection instead of leaving newly selected keyframes only
|
|
183
|
-
:type extend: bool | None
|
|
184
147
|
:param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
|
|
185
|
-
:type deselect_all: bool | None
|
|
186
148
|
:param column: Column Select, Select all keyframes that occur on the same frame as the one under the mouse
|
|
187
|
-
:type column: bool | None
|
|
188
149
|
:param curves: Only Curves, Select all the keyframes in the curve
|
|
189
|
-
:type curves: bool | None
|
|
190
150
|
"""
|
|
191
151
|
|
|
192
|
-
def copy(
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
"""
|
|
152
|
+
def copy(
|
|
153
|
+
execution_context: int | str | None = None,
|
|
154
|
+
undo: bool | None = None,
|
|
155
|
+
/,
|
|
156
|
+
) -> None:
|
|
157
|
+
"""Copy selected keyframes to the internal clipboard"""
|
|
198
158
|
|
|
199
159
|
def cursor_set(
|
|
200
160
|
execution_context: int | str | None = None,
|
|
@@ -206,12 +166,8 @@ def cursor_set(
|
|
|
206
166
|
) -> None:
|
|
207
167
|
"""Interactively set the current frame and value cursor
|
|
208
168
|
|
|
209
|
-
:type execution_context: int | str | None
|
|
210
|
-
:type undo: bool | None
|
|
211
169
|
:param frame: Frame
|
|
212
|
-
:type frame: float | None
|
|
213
170
|
:param value: Value
|
|
214
|
-
:type value: float | None
|
|
215
171
|
"""
|
|
216
172
|
|
|
217
173
|
def decimate(
|
|
@@ -225,8 +181,6 @@ def decimate(
|
|
|
225
181
|
) -> None:
|
|
226
182
|
"""Decimate F-Curves by removing keyframes that influence the curve shape the least
|
|
227
183
|
|
|
228
|
-
:type execution_context: int | str | None
|
|
229
|
-
:type undo: bool | None
|
|
230
184
|
:param mode: Mode, Which mode to use for decimation
|
|
231
185
|
|
|
232
186
|
RATIO
|
|
@@ -234,11 +188,8 @@ def decimate(
|
|
|
234
188
|
|
|
235
189
|
ERROR
|
|
236
190
|
Error Margin -- Use an error margin to specify how much the curve is allowed to deviate from the original path.
|
|
237
|
-
:type mode: typing.Literal['RATIO','ERROR'] | None
|
|
238
191
|
:param factor: Factor, The ratio of keyframes to remove
|
|
239
|
-
:type factor: float | None
|
|
240
192
|
:param remove_error_margin: Max Error Margin, How much the new decimated curve is allowed to deviate from the original
|
|
241
|
-
:type remove_error_margin: float | None
|
|
242
193
|
"""
|
|
243
194
|
|
|
244
195
|
def delete(
|
|
@@ -250,29 +201,22 @@ def delete(
|
|
|
250
201
|
) -> None:
|
|
251
202
|
"""Remove all selected keyframes
|
|
252
203
|
|
|
253
|
-
:type execution_context: int | str | None
|
|
254
|
-
:type undo: bool | None
|
|
255
204
|
:param confirm: Confirm, Prompt for confirmation
|
|
256
|
-
:type confirm: bool | None
|
|
257
205
|
"""
|
|
258
206
|
|
|
259
207
|
def driver_delete_invalid(
|
|
260
|
-
execution_context: int | str | None = None,
|
|
208
|
+
execution_context: int | str | None = None,
|
|
209
|
+
undo: bool | None = None,
|
|
210
|
+
/,
|
|
261
211
|
) -> None:
|
|
262
|
-
"""Delete all visible drivers considered invalid
|
|
263
|
-
|
|
264
|
-
:type execution_context: int | str | None
|
|
265
|
-
:type undo: bool | None
|
|
266
|
-
"""
|
|
212
|
+
"""Delete all visible drivers considered invalid"""
|
|
267
213
|
|
|
268
214
|
def driver_variables_copy(
|
|
269
|
-
execution_context: int | str | None = None,
|
|
215
|
+
execution_context: int | str | None = None,
|
|
216
|
+
undo: bool | None = None,
|
|
217
|
+
/,
|
|
270
218
|
) -> None:
|
|
271
|
-
"""Copy the driver variables of the active driver
|
|
272
|
-
|
|
273
|
-
:type execution_context: int | str | None
|
|
274
|
-
:type undo: bool | None
|
|
275
|
-
"""
|
|
219
|
+
"""Copy the driver variables of the active driver"""
|
|
276
220
|
|
|
277
221
|
def driver_variables_paste(
|
|
278
222
|
execution_context: int | str | None = None,
|
|
@@ -283,10 +227,7 @@ def driver_variables_paste(
|
|
|
283
227
|
) -> None:
|
|
284
228
|
"""Add copied driver variables to the active driver
|
|
285
229
|
|
|
286
|
-
:type execution_context: int | str | None
|
|
287
|
-
:type undo: bool | None
|
|
288
230
|
:param replace: Replace Existing, Replace existing driver variables, instead of just appending to the end of the existing list
|
|
289
|
-
:type replace: bool | None
|
|
290
231
|
"""
|
|
291
232
|
|
|
292
233
|
def duplicate(
|
|
@@ -298,10 +239,7 @@ def duplicate(
|
|
|
298
239
|
) -> None:
|
|
299
240
|
"""Make a copy of all selected keyframes
|
|
300
241
|
|
|
301
|
-
:type execution_context: int | str | None
|
|
302
|
-
:type undo: bool | None
|
|
303
242
|
:param mode: Mode
|
|
304
|
-
:type mode: bpy.stub_internal.rna_enums.TransformModeTypeItems | None
|
|
305
243
|
"""
|
|
306
244
|
|
|
307
245
|
def duplicate_move(
|
|
@@ -314,12 +252,8 @@ def duplicate_move(
|
|
|
314
252
|
) -> None:
|
|
315
253
|
"""Make a copy of all selected keyframes and move them
|
|
316
254
|
|
|
317
|
-
:type execution_context: int | str | None
|
|
318
|
-
:type undo: bool | None
|
|
319
255
|
:param GRAPH_OT_duplicate: Duplicate Keyframes, Make a copy of all selected keyframes
|
|
320
|
-
:type GRAPH_OT_duplicate: duplicate | None
|
|
321
256
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
322
|
-
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
323
257
|
"""
|
|
324
258
|
|
|
325
259
|
def ease(
|
|
@@ -332,12 +266,8 @@ def ease(
|
|
|
332
266
|
) -> None:
|
|
333
267
|
"""Align keyframes on a ease-in or ease-out curve
|
|
334
268
|
|
|
335
|
-
:type execution_context: int | str | None
|
|
336
|
-
:type undo: bool | None
|
|
337
269
|
:param factor: Curve Bend, Defines if the keys should be aligned on an ease-in or ease-out curve
|
|
338
|
-
:type factor: float | None
|
|
339
270
|
:param sharpness: Sharpness, Higher values make the change more abrupt
|
|
340
|
-
:type sharpness: float | None
|
|
341
271
|
"""
|
|
342
272
|
|
|
343
273
|
def easing_type(
|
|
@@ -349,10 +279,7 @@ def easing_type(
|
|
|
349
279
|
) -> None:
|
|
350
280
|
"""Set easing type for the F-Curve segments starting from the selected keyframes
|
|
351
281
|
|
|
352
|
-
:type execution_context: int | str | None
|
|
353
|
-
:type undo: bool | None
|
|
354
282
|
:param type: Type
|
|
355
|
-
:type type: bpy.stub_internal.rna_enums.BeztripleInterpolationEasingItems | None
|
|
356
283
|
"""
|
|
357
284
|
|
|
358
285
|
def equalize_handles(
|
|
@@ -364,35 +291,28 @@ def equalize_handles(
|
|
|
364
291
|
handle_length: float | None = 5.0,
|
|
365
292
|
flatten: bool | None = False,
|
|
366
293
|
) -> None:
|
|
367
|
-
"""Ensure selected keyframes
|
|
294
|
+
"""Ensure selected keyframes handles have equal length, optionally making them horizontal. Automatic, Automatic Clamped, or Vector handle types will be converted to Aligned
|
|
368
295
|
|
|
369
|
-
:
|
|
370
|
-
:type undo: bool | None
|
|
371
|
-
:param side: Side, Side of the keyframes' Bézier handles to affect
|
|
296
|
+
:param side: Side, Side of the keyframes Bézier handles to affect
|
|
372
297
|
|
|
373
298
|
LEFT
|
|
374
|
-
Left -- Equalize selected keyframes
|
|
299
|
+
Left -- Equalize selected keyframes left handles.
|
|
375
300
|
|
|
376
301
|
RIGHT
|
|
377
|
-
Right -- Equalize selected keyframes
|
|
302
|
+
Right -- Equalize selected keyframes right handles.
|
|
378
303
|
|
|
379
304
|
BOTH
|
|
380
|
-
Both -- Equalize both of a
|
|
381
|
-
:
|
|
382
|
-
:param
|
|
383
|
-
:type handle_length: float | None
|
|
384
|
-
:param flatten: Flatten, Make the values of the selected keyframes' handles the same as their respective keyframes
|
|
385
|
-
:type flatten: bool | None
|
|
305
|
+
Both -- Equalize both of a keyframes handles.
|
|
306
|
+
:param handle_length: Handle Length, Length to make selected keyframes Bézier handles
|
|
307
|
+
:param flatten: Flatten, Make the values of the selected keyframes handles the same as their respective keyframes
|
|
386
308
|
"""
|
|
387
309
|
|
|
388
310
|
def euler_filter(
|
|
389
|
-
execution_context: int | str | None = None,
|
|
311
|
+
execution_context: int | str | None = None,
|
|
312
|
+
undo: bool | None = None,
|
|
313
|
+
/,
|
|
390
314
|
) -> None:
|
|
391
|
-
"""Fix large jumps and flips in the selected Euler Rotation F-Curves arising from rotation values being clipped when baking physics
|
|
392
|
-
|
|
393
|
-
:type execution_context: int | str | None
|
|
394
|
-
:type undo: bool | None
|
|
395
|
-
"""
|
|
315
|
+
"""Fix large jumps and flips in the selected Euler Rotation F-Curves arising from rotation values being clipped when baking physics"""
|
|
396
316
|
|
|
397
317
|
def extrapolation_type(
|
|
398
318
|
execution_context: int | str | None = None,
|
|
@@ -404,8 +324,6 @@ def extrapolation_type(
|
|
|
404
324
|
) -> None:
|
|
405
325
|
"""Set extrapolation mode for selected F-Curves
|
|
406
326
|
|
|
407
|
-
:type execution_context: int | str | None
|
|
408
|
-
:type undo: bool | None
|
|
409
327
|
:param type: Type
|
|
410
328
|
|
|
411
329
|
CONSTANT
|
|
@@ -415,11 +333,10 @@ def extrapolation_type(
|
|
|
415
333
|
Linear Extrapolation -- Straight-line slope of end segments are extended past the endpoint keyframes.
|
|
416
334
|
|
|
417
335
|
MAKE_CYCLIC
|
|
418
|
-
Make Cyclic (F-Modifier) -- Add Cycles F-Modifier if one
|
|
336
|
+
Make Cyclic (F-Modifier) -- Add Cycles F-Modifier if one does not exist already.
|
|
419
337
|
|
|
420
338
|
CLEAR_CYCLIC
|
|
421
339
|
Clear Cyclic (F-Modifier) -- Remove Cycles F-Modifier if not needed anymore.
|
|
422
|
-
:type type: typing.Literal['CONSTANT','LINEAR','MAKE_CYCLIC','CLEAR_CYCLIC'] | None
|
|
423
340
|
"""
|
|
424
341
|
|
|
425
342
|
def fmodifier_add(
|
|
@@ -432,22 +349,16 @@ def fmodifier_add(
|
|
|
432
349
|
) -> None:
|
|
433
350
|
"""Add F-Modifier to the active/selected F-Curves
|
|
434
351
|
|
|
435
|
-
:type execution_context: int | str | None
|
|
436
|
-
:type undo: bool | None
|
|
437
352
|
:param type: Type
|
|
438
|
-
:type type: bpy.stub_internal.rna_enums.FmodifierTypeItems | None
|
|
439
353
|
:param only_active: Only Active, Only add F-Modifier to active F-Curve
|
|
440
|
-
:type only_active: bool | None
|
|
441
354
|
"""
|
|
442
355
|
|
|
443
356
|
def fmodifier_copy(
|
|
444
|
-
execution_context: int | str | None = None,
|
|
357
|
+
execution_context: int | str | None = None,
|
|
358
|
+
undo: bool | None = None,
|
|
359
|
+
/,
|
|
445
360
|
) -> None:
|
|
446
|
-
"""Copy the F-Modifier(s) of the active F-Curve
|
|
447
|
-
|
|
448
|
-
:type execution_context: int | str | None
|
|
449
|
-
:type undo: bool | None
|
|
450
|
-
"""
|
|
361
|
+
"""Copy the F-Modifier(s) of the active F-Curve"""
|
|
451
362
|
|
|
452
363
|
def fmodifier_paste(
|
|
453
364
|
execution_context: int | str | None = None,
|
|
@@ -459,22 +370,16 @@ def fmodifier_paste(
|
|
|
459
370
|
) -> None:
|
|
460
371
|
"""Add copied F-Modifiers to the selected F-Curves
|
|
461
372
|
|
|
462
|
-
:type execution_context: int | str | None
|
|
463
|
-
:type undo: bool | None
|
|
464
373
|
:param only_active: Only Active, Only paste F-Modifiers on active F-Curve
|
|
465
|
-
:type only_active: bool | None
|
|
466
374
|
:param replace: Replace Existing, Replace existing F-Modifiers, instead of just appending to the end of the existing list
|
|
467
|
-
:type replace: bool | None
|
|
468
375
|
"""
|
|
469
376
|
|
|
470
377
|
def frame_jump(
|
|
471
|
-
execution_context: int | str | None = None,
|
|
378
|
+
execution_context: int | str | None = None,
|
|
379
|
+
undo: bool | None = None,
|
|
380
|
+
/,
|
|
472
381
|
) -> None:
|
|
473
|
-
"""Place the cursor on the midpoint of selected keyframes
|
|
474
|
-
|
|
475
|
-
:type execution_context: int | str | None
|
|
476
|
-
:type undo: bool | None
|
|
477
|
-
"""
|
|
382
|
+
"""Place the cursor on the midpoint of selected keyframes"""
|
|
478
383
|
|
|
479
384
|
def gaussian_smooth(
|
|
480
385
|
execution_context: int | str | None = None,
|
|
@@ -487,33 +392,24 @@ def gaussian_smooth(
|
|
|
487
392
|
) -> None:
|
|
488
393
|
"""Smooth the curve using a Gaussian filter
|
|
489
394
|
|
|
490
|
-
:type execution_context: int | str | None
|
|
491
|
-
:type undo: bool | None
|
|
492
395
|
:param factor: Factor, How much to blend to the default value
|
|
493
|
-
:type factor: float | None
|
|
494
396
|
:param sigma: Sigma, The shape of the gaussian distribution, lower values make it sharper
|
|
495
|
-
:type sigma: float | None
|
|
496
397
|
:param filter_width: Filter Width, How far to each side the operator will average the key values
|
|
497
|
-
:type filter_width: int | None
|
|
498
398
|
"""
|
|
499
399
|
|
|
500
400
|
def ghost_curves_clear(
|
|
501
|
-
execution_context: int | str | None = None,
|
|
401
|
+
execution_context: int | str | None = None,
|
|
402
|
+
undo: bool | None = None,
|
|
403
|
+
/,
|
|
502
404
|
) -> None:
|
|
503
|
-
"""Clear F-Curve snapshots (Ghosts) for active Graph Editor
|
|
504
|
-
|
|
505
|
-
:type execution_context: int | str | None
|
|
506
|
-
:type undo: bool | None
|
|
507
|
-
"""
|
|
405
|
+
"""Clear F-Curve snapshots (Ghosts) for active Graph Editor"""
|
|
508
406
|
|
|
509
407
|
def ghost_curves_create(
|
|
510
|
-
execution_context: int | str | None = None,
|
|
408
|
+
execution_context: int | str | None = None,
|
|
409
|
+
undo: bool | None = None,
|
|
410
|
+
/,
|
|
511
411
|
) -> None:
|
|
512
|
-
"""Create snapshot (Ghosts) of selected F-Curves as background aid for active Graph Editor
|
|
513
|
-
|
|
514
|
-
:type execution_context: int | str | None
|
|
515
|
-
:type undo: bool | None
|
|
516
|
-
"""
|
|
412
|
+
"""Create snapshot (Ghosts) of selected F-Curves as background aid for active Graph Editor"""
|
|
517
413
|
|
|
518
414
|
def handle_type(
|
|
519
415
|
execution_context: int | str | None = None,
|
|
@@ -524,10 +420,7 @@ def handle_type(
|
|
|
524
420
|
) -> None:
|
|
525
421
|
"""Set type of handle for selected keyframes
|
|
526
422
|
|
|
527
|
-
:type execution_context: int | str | None
|
|
528
|
-
:type undo: bool | None
|
|
529
423
|
:param type: Type
|
|
530
|
-
:type type: bpy.stub_internal.rna_enums.KeyframeHandleTypeItems | None
|
|
531
424
|
"""
|
|
532
425
|
|
|
533
426
|
def hide(
|
|
@@ -539,10 +432,7 @@ def hide(
|
|
|
539
432
|
) -> None:
|
|
540
433
|
"""Hide selected curves from Graph Editor view
|
|
541
434
|
|
|
542
|
-
:type execution_context: int | str | None
|
|
543
|
-
:type undo: bool | None
|
|
544
435
|
:param unselected: Unselected, Hide unselected rather than selected curves
|
|
545
|
-
:type unselected: bool | None
|
|
546
436
|
"""
|
|
547
437
|
|
|
548
438
|
def interpolation_type(
|
|
@@ -555,10 +445,7 @@ def interpolation_type(
|
|
|
555
445
|
) -> None:
|
|
556
446
|
"""Set interpolation mode for the F-Curve segments starting from the selected keyframes
|
|
557
447
|
|
|
558
|
-
:type execution_context: int | str | None
|
|
559
|
-
:type undo: bool | None
|
|
560
448
|
:param type: Type
|
|
561
|
-
:type type: bpy.stub_internal.rna_enums.BeztripleInterpolationModeItems | None
|
|
562
449
|
"""
|
|
563
450
|
|
|
564
451
|
def keyframe_insert(
|
|
@@ -571,25 +458,22 @@ def keyframe_insert(
|
|
|
571
458
|
) -> None:
|
|
572
459
|
"""Insert keyframes for the specified channels
|
|
573
460
|
|
|
574
|
-
:type execution_context: int | str | None
|
|
575
|
-
:type undo: bool | None
|
|
576
461
|
:param type: Type
|
|
577
462
|
|
|
578
463
|
ALL
|
|
579
|
-
All Channels -- Insert a keyframe on all visible and editable F-Curves using each
|
|
464
|
+
All Channels -- Insert a keyframe on all visible and editable F-Curves using each curves current value.
|
|
580
465
|
|
|
581
466
|
SEL
|
|
582
|
-
Only Selected Channels -- Insert a keyframe on selected F-Curves using each
|
|
467
|
+
Only Selected Channels -- Insert a keyframe on selected F-Curves using each curves current value.
|
|
583
468
|
|
|
584
469
|
ACTIVE
|
|
585
|
-
Only Active F-Curve -- Insert a keyframe on the active F-Curve using the
|
|
470
|
+
Only Active F-Curve -- Insert a keyframe on the active F-Curve using the curves current value.
|
|
586
471
|
|
|
587
472
|
CURSOR_ACTIVE
|
|
588
473
|
Active Channels at Cursor -- Insert a keyframe for the active F-Curve at the cursor point.
|
|
589
474
|
|
|
590
475
|
CURSOR_SEL
|
|
591
476
|
Selected Channels at Cursor -- Insert a keyframe for selected F-Curves at the cursor point.
|
|
592
|
-
:type type: typing.Literal['ALL','SEL','ACTIVE','CURSOR_ACTIVE','CURSOR_SEL'] | None
|
|
593
477
|
"""
|
|
594
478
|
|
|
595
479
|
def keyframe_jump(
|
|
@@ -601,20 +485,15 @@ def keyframe_jump(
|
|
|
601
485
|
) -> None:
|
|
602
486
|
"""Jump to previous/next keyframe
|
|
603
487
|
|
|
604
|
-
:type execution_context: int | str | None
|
|
605
|
-
:type undo: bool | None
|
|
606
488
|
:param next: Next Keyframe
|
|
607
|
-
:type next: bool | None
|
|
608
489
|
"""
|
|
609
490
|
|
|
610
491
|
def keys_to_samples(
|
|
611
|
-
execution_context: int | str | None = None,
|
|
492
|
+
execution_context: int | str | None = None,
|
|
493
|
+
undo: bool | None = None,
|
|
494
|
+
/,
|
|
612
495
|
) -> None:
|
|
613
|
-
"""Convert selected channels to an uneditable set of samples to save storage space
|
|
614
|
-
|
|
615
|
-
:type execution_context: int | str | None
|
|
616
|
-
:type undo: bool | None
|
|
617
|
-
"""
|
|
496
|
+
"""Convert selected channels to an uneditable set of samples to save storage space"""
|
|
618
497
|
|
|
619
498
|
def match_slope(
|
|
620
499
|
execution_context: int | str | None = None,
|
|
@@ -625,10 +504,7 @@ def match_slope(
|
|
|
625
504
|
) -> None:
|
|
626
505
|
"""Blend selected keys to the slope of neighboring ones
|
|
627
506
|
|
|
628
|
-
:type execution_context: int | str | None
|
|
629
|
-
:type undo: bool | None
|
|
630
507
|
:param factor: Factor, Defines which keys to use as slope and how much to blend towards them
|
|
631
|
-
:type factor: float | None
|
|
632
508
|
"""
|
|
633
509
|
|
|
634
510
|
def mirror(
|
|
@@ -640,8 +516,6 @@ def mirror(
|
|
|
640
516
|
) -> None:
|
|
641
517
|
"""Flip selected keyframes over the selected mirror line
|
|
642
518
|
|
|
643
|
-
:type execution_context: int | str | None
|
|
644
|
-
:type undo: bool | None
|
|
645
519
|
:param type: Type
|
|
646
520
|
|
|
647
521
|
CFRA
|
|
@@ -658,7 +532,6 @@ def mirror(
|
|
|
658
532
|
|
|
659
533
|
MARKER
|
|
660
534
|
By Times Over First Selected Marker -- Flip times of selected keyframes using the first selected marker as the reference point.
|
|
661
|
-
:type type: typing.Literal['CFRA','VALUE','YAXIS','XAXIS','MARKER'] | None
|
|
662
535
|
"""
|
|
663
536
|
|
|
664
537
|
def paste(
|
|
@@ -674,26 +547,18 @@ def paste(
|
|
|
674
547
|
) -> None:
|
|
675
548
|
"""Paste keyframes from the internal clipboard for the selected channels, starting on the current frame
|
|
676
549
|
|
|
677
|
-
:type execution_context: int | str | None
|
|
678
|
-
:type undo: bool | None
|
|
679
550
|
:param offset: Frame Offset, Paste time offset of keys
|
|
680
|
-
:type offset: bpy.stub_internal.rna_enums.KeyframePasteOffsetItems | None
|
|
681
551
|
:param value_offset: Value Offset, Paste keys with a value offset
|
|
682
|
-
:type value_offset: bpy.stub_internal.rna_enums.KeyframePasteOffsetValueItems | None
|
|
683
552
|
:param merge: Type, Method of merging pasted keys and existing
|
|
684
|
-
:type merge: bpy.stub_internal.rna_enums.KeyframePasteMergeItems | None
|
|
685
553
|
:param flipped: Flipped, Paste keyframes from mirrored bones if they exist
|
|
686
|
-
:type flipped: bool | None
|
|
687
554
|
"""
|
|
688
555
|
|
|
689
556
|
def previewrange_set(
|
|
690
|
-
execution_context: int | str | None = None,
|
|
557
|
+
execution_context: int | str | None = None,
|
|
558
|
+
undo: bool | None = None,
|
|
559
|
+
/,
|
|
691
560
|
) -> None:
|
|
692
|
-
"""Set Preview Range based on range of selected keyframes
|
|
693
|
-
|
|
694
|
-
:type execution_context: int | str | None
|
|
695
|
-
:type undo: bool | None
|
|
696
|
-
"""
|
|
561
|
+
"""Set Preview Range based on range of selected keyframes"""
|
|
697
562
|
|
|
698
563
|
def push_pull(
|
|
699
564
|
execution_context: int | str | None = None,
|
|
@@ -704,10 +569,7 @@ def push_pull(
|
|
|
704
569
|
) -> None:
|
|
705
570
|
"""Exaggerate or minimize the value of the selected keys
|
|
706
571
|
|
|
707
|
-
:type execution_context: int | str | None
|
|
708
|
-
:type undo: bool | None
|
|
709
572
|
:param factor: Factor, Control how far to push or pull the keys
|
|
710
|
-
:type factor: float | None
|
|
711
573
|
"""
|
|
712
574
|
|
|
713
575
|
def reveal(
|
|
@@ -719,20 +581,15 @@ def reveal(
|
|
|
719
581
|
) -> None:
|
|
720
582
|
"""Make previously hidden curves visible again in Graph Editor view
|
|
721
583
|
|
|
722
|
-
:type execution_context: int | str | None
|
|
723
|
-
:type undo: bool | None
|
|
724
584
|
:param select: Select
|
|
725
|
-
:type select: bool | None
|
|
726
585
|
"""
|
|
727
586
|
|
|
728
587
|
def samples_to_keys(
|
|
729
|
-
execution_context: int | str | None = None,
|
|
588
|
+
execution_context: int | str | None = None,
|
|
589
|
+
undo: bool | None = None,
|
|
590
|
+
/,
|
|
730
591
|
) -> None:
|
|
731
|
-
"""Convert selected channels from samples to keyframes
|
|
732
|
-
|
|
733
|
-
:type execution_context: int | str | None
|
|
734
|
-
:type undo: bool | None
|
|
735
|
-
"""
|
|
592
|
+
"""Convert selected channels from samples to keyframes"""
|
|
736
593
|
|
|
737
594
|
def scale_average(
|
|
738
595
|
execution_context: int | str | None = None,
|
|
@@ -743,10 +600,7 @@ def scale_average(
|
|
|
743
600
|
) -> None:
|
|
744
601
|
"""Scale selected key values by their combined average
|
|
745
602
|
|
|
746
|
-
:type execution_context: int | str | None
|
|
747
|
-
:type undo: bool | None
|
|
748
603
|
:param factor: Scale Factor, The scale factor applied to the curve segments
|
|
749
|
-
:type factor: float | None
|
|
750
604
|
"""
|
|
751
605
|
|
|
752
606
|
def scale_from_neighbor(
|
|
@@ -759,12 +613,8 @@ def scale_from_neighbor(
|
|
|
759
613
|
) -> None:
|
|
760
614
|
"""Increase or decrease the value of selected keys in relationship to the neighboring one
|
|
761
615
|
|
|
762
|
-
:type execution_context: int | str | None
|
|
763
|
-
:type undo: bool | None
|
|
764
616
|
:param factor: Factor, The factor to scale keys with
|
|
765
|
-
:type factor: float | None
|
|
766
617
|
:param anchor: Reference Key, Which end of the segment to use as a reference to scale from
|
|
767
|
-
:type anchor: typing.Literal['LEFT','RIGHT'] | None
|
|
768
618
|
"""
|
|
769
619
|
|
|
770
620
|
def select_all(
|
|
@@ -776,8 +626,6 @@ def select_all(
|
|
|
776
626
|
) -> None:
|
|
777
627
|
"""Toggle selection of all keyframes
|
|
778
628
|
|
|
779
|
-
:type execution_context: int | str | None
|
|
780
|
-
:type undo: bool | None
|
|
781
629
|
:param action: Action, Selection action to execute
|
|
782
630
|
|
|
783
631
|
TOGGLE
|
|
@@ -791,7 +639,6 @@ def select_all(
|
|
|
791
639
|
|
|
792
640
|
INVERT
|
|
793
641
|
Invert -- Invert selection of all elements.
|
|
794
|
-
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
795
642
|
"""
|
|
796
643
|
|
|
797
644
|
def select_box(
|
|
@@ -812,26 +659,15 @@ def select_box(
|
|
|
812
659
|
) -> None:
|
|
813
660
|
"""Select all keyframes within the specified region
|
|
814
661
|
|
|
815
|
-
:type execution_context: int | str | None
|
|
816
|
-
:type undo: bool | None
|
|
817
662
|
:param axis_range: Axis Range
|
|
818
|
-
:
|
|
819
|
-
:param include_handles: Include Handles, Are handles tested individually against the selection criteria
|
|
820
|
-
:type include_handles: bool | None
|
|
663
|
+
:param include_handles: Include Handles, Are handles tested individually against the selection criteria, independently from their keys. When unchecked, handles are (de)selected in unison with their keys
|
|
821
664
|
:param tweak: Tweak, Operator has been activated using a click-drag event
|
|
822
|
-
:type tweak: bool | None
|
|
823
665
|
:param use_curve_selection: Select Curves, Allow selecting all the keyframes of a curve by selecting the calculated F-curve
|
|
824
|
-
:type use_curve_selection: bool | None
|
|
825
666
|
:param xmin: X Min
|
|
826
|
-
:type xmin: int | None
|
|
827
667
|
:param xmax: X Max
|
|
828
|
-
:type xmax: int | None
|
|
829
668
|
:param ymin: Y Min
|
|
830
|
-
:type ymin: int | None
|
|
831
669
|
:param ymax: Y Max
|
|
832
|
-
:type ymax: int | None
|
|
833
670
|
:param wait_for_input: Wait for Input
|
|
834
|
-
:type wait_for_input: bool | None
|
|
835
671
|
:param mode: Mode
|
|
836
672
|
|
|
837
673
|
SET
|
|
@@ -842,7 +678,6 @@ def select_box(
|
|
|
842
678
|
|
|
843
679
|
SUB
|
|
844
680
|
Subtract -- Subtract existing selection.
|
|
845
|
-
:type mode: typing.Literal['SET','ADD','SUB'] | None
|
|
846
681
|
"""
|
|
847
682
|
|
|
848
683
|
def select_circle(
|
|
@@ -855,20 +690,15 @@ def select_circle(
|
|
|
855
690
|
radius: int | None = 25,
|
|
856
691
|
wait_for_input: bool | None = True,
|
|
857
692
|
mode: typing.Literal["SET", "ADD", "SUB"] | None = "SET",
|
|
693
|
+
include_handles: bool | None = True,
|
|
858
694
|
use_curve_selection: bool | None = True,
|
|
859
695
|
) -> None:
|
|
860
696
|
"""Select keyframe points using circle selection
|
|
861
697
|
|
|
862
|
-
:type execution_context: int | str | None
|
|
863
|
-
:type undo: bool | None
|
|
864
698
|
:param x: X
|
|
865
|
-
:type x: int | None
|
|
866
699
|
:param y: Y
|
|
867
|
-
:type y: int | None
|
|
868
700
|
:param radius: Radius
|
|
869
|
-
:type radius: int | None
|
|
870
701
|
:param wait_for_input: Wait for Input
|
|
871
|
-
:type wait_for_input: bool | None
|
|
872
702
|
:param mode: Mode
|
|
873
703
|
|
|
874
704
|
SET
|
|
@@ -879,9 +709,8 @@ def select_circle(
|
|
|
879
709
|
|
|
880
710
|
SUB
|
|
881
711
|
Subtract -- Subtract existing selection.
|
|
882
|
-
:
|
|
712
|
+
:param include_handles: Include Handles, Are handles tested individually against the selection criteria, independently from their keys. When unchecked, handles are (de)selected in unison with their keys
|
|
883
713
|
:param use_curve_selection: Select Curves, Allow selecting all the keyframes of a curve by selecting the curve itself
|
|
884
|
-
:type use_curve_selection: bool | None
|
|
885
714
|
"""
|
|
886
715
|
|
|
887
716
|
def select_column(
|
|
@@ -894,10 +723,7 @@ def select_column(
|
|
|
894
723
|
) -> None:
|
|
895
724
|
"""Select all keyframes on the specified frame(s)
|
|
896
725
|
|
|
897
|
-
:type execution_context: int | str | None
|
|
898
|
-
:type undo: bool | None
|
|
899
726
|
:param mode: Mode
|
|
900
|
-
:type mode: typing.Literal['KEYS','CFRA','MARKERS_COLUMN','MARKERS_BETWEEN'] | None
|
|
901
727
|
"""
|
|
902
728
|
|
|
903
729
|
def select_key_handles(
|
|
@@ -911,8 +737,6 @@ def select_key_handles(
|
|
|
911
737
|
) -> None:
|
|
912
738
|
"""For selected keyframes, select/deselect any combination of the key itself and its handles
|
|
913
739
|
|
|
914
|
-
:type execution_context: int | str | None
|
|
915
|
-
:type undo: bool | None
|
|
916
740
|
:param left_handle_action: Left Handle, Effect on the left handle
|
|
917
741
|
|
|
918
742
|
SELECT
|
|
@@ -923,7 +747,6 @@ def select_key_handles(
|
|
|
923
747
|
|
|
924
748
|
KEEP
|
|
925
749
|
Keep -- Leave as is.
|
|
926
|
-
:type left_handle_action: typing.Literal['SELECT','DESELECT','KEEP'] | None
|
|
927
750
|
:param right_handle_action: Right Handle, Effect on the right handle
|
|
928
751
|
|
|
929
752
|
SELECT
|
|
@@ -934,7 +757,6 @@ def select_key_handles(
|
|
|
934
757
|
|
|
935
758
|
KEEP
|
|
936
759
|
Keep -- Leave as is.
|
|
937
|
-
:type right_handle_action: typing.Literal['SELECT','DESELECT','KEEP'] | None
|
|
938
760
|
:param key_action: Key, Effect on the key itself
|
|
939
761
|
|
|
940
762
|
SELECT
|
|
@@ -945,7 +767,6 @@ def select_key_handles(
|
|
|
945
767
|
|
|
946
768
|
KEEP
|
|
947
769
|
Keep -- Leave as is.
|
|
948
|
-
:type key_action: typing.Literal['SELECT','DESELECT','KEEP'] | None
|
|
949
770
|
"""
|
|
950
771
|
|
|
951
772
|
def select_lasso(
|
|
@@ -958,20 +779,15 @@ def select_lasso(
|
|
|
958
779
|
smooth_stroke_factor: float | None = 0.75,
|
|
959
780
|
smooth_stroke_radius: int | None = 35,
|
|
960
781
|
mode: typing.Literal["SET", "ADD", "SUB"] | None = "SET",
|
|
782
|
+
include_handles: bool | None = True,
|
|
961
783
|
use_curve_selection: bool | None = True,
|
|
962
784
|
) -> None:
|
|
963
785
|
"""Select keyframe points using lasso selection
|
|
964
786
|
|
|
965
|
-
:type execution_context: int | str | None
|
|
966
|
-
:type undo: bool | None
|
|
967
787
|
:param path: Path
|
|
968
|
-
:type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
|
|
969
788
|
:param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
|
|
970
|
-
:type use_smooth_stroke: bool | None
|
|
971
789
|
:param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
|
|
972
|
-
:type smooth_stroke_factor: float | None
|
|
973
790
|
:param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
|
|
974
|
-
:type smooth_stroke_radius: int | None
|
|
975
791
|
:param mode: Mode
|
|
976
792
|
|
|
977
793
|
SET
|
|
@@ -982,9 +798,8 @@ def select_lasso(
|
|
|
982
798
|
|
|
983
799
|
SUB
|
|
984
800
|
Subtract -- Subtract existing selection.
|
|
985
|
-
:
|
|
801
|
+
:param include_handles: Include Handles, Are handles tested individually against the selection criteria, independently from their keys. When unchecked, handles are (de)selected in unison with their keys
|
|
986
802
|
:param use_curve_selection: Select Curves, Allow selecting all the keyframes of a curve by selecting the curve itself
|
|
987
|
-
:type use_curve_selection: bool | None
|
|
988
803
|
"""
|
|
989
804
|
|
|
990
805
|
def select_leftright(
|
|
@@ -997,40 +812,30 @@ def select_leftright(
|
|
|
997
812
|
) -> None:
|
|
998
813
|
"""Select keyframes to the left or the right of the current frame
|
|
999
814
|
|
|
1000
|
-
:type execution_context: int | str | None
|
|
1001
|
-
:type undo: bool | None
|
|
1002
815
|
:param mode: Mode
|
|
1003
|
-
:type mode: typing.Literal['CHECK','LEFT','RIGHT'] | None
|
|
1004
816
|
:param extend: Extend Select
|
|
1005
|
-
:type extend: bool | None
|
|
1006
817
|
"""
|
|
1007
818
|
|
|
1008
819
|
def select_less(
|
|
1009
|
-
execution_context: int | str | None = None,
|
|
820
|
+
execution_context: int | str | None = None,
|
|
821
|
+
undo: bool | None = None,
|
|
822
|
+
/,
|
|
1010
823
|
) -> None:
|
|
1011
|
-
"""Deselect keyframes on ends of selection islands
|
|
1012
|
-
|
|
1013
|
-
:type execution_context: int | str | None
|
|
1014
|
-
:type undo: bool | None
|
|
1015
|
-
"""
|
|
824
|
+
"""Deselect keyframes on ends of selection islands"""
|
|
1016
825
|
|
|
1017
826
|
def select_linked(
|
|
1018
|
-
execution_context: int | str | None = None,
|
|
827
|
+
execution_context: int | str | None = None,
|
|
828
|
+
undo: bool | None = None,
|
|
829
|
+
/,
|
|
1019
830
|
) -> None:
|
|
1020
|
-
"""Select keyframes occurring in the same F-Curves as selected ones
|
|
1021
|
-
|
|
1022
|
-
:type execution_context: int | str | None
|
|
1023
|
-
:type undo: bool | None
|
|
1024
|
-
"""
|
|
831
|
+
"""Select keyframes occurring in the same F-Curves as selected ones"""
|
|
1025
832
|
|
|
1026
833
|
def select_more(
|
|
1027
|
-
execution_context: int | str | None = None,
|
|
834
|
+
execution_context: int | str | None = None,
|
|
835
|
+
undo: bool | None = None,
|
|
836
|
+
/,
|
|
1028
837
|
) -> None:
|
|
1029
|
-
"""Select keyframes beside already selected ones
|
|
1030
|
-
|
|
1031
|
-
:type execution_context: int | str | None
|
|
1032
|
-
:type undo: bool | None
|
|
1033
|
-
"""
|
|
838
|
+
"""Select keyframes beside already selected ones"""
|
|
1034
839
|
|
|
1035
840
|
def shear(
|
|
1036
841
|
execution_context: int | str | None = None,
|
|
@@ -1042,10 +847,7 @@ def shear(
|
|
|
1042
847
|
) -> None:
|
|
1043
848
|
"""Affect the value of the keys linearly, keeping the same relationship between them using either the left or the right key as reference
|
|
1044
849
|
|
|
1045
|
-
:type execution_context: int | str | None
|
|
1046
|
-
:type undo: bool | None
|
|
1047
850
|
:param factor: Shear Factor, The amount of shear to apply
|
|
1048
|
-
:type factor: float | None
|
|
1049
851
|
:param direction: Direction, Which end of the segment to use as a reference to shear from
|
|
1050
852
|
|
|
1051
853
|
FROM_LEFT
|
|
@@ -1053,17 +855,14 @@ def shear(
|
|
|
1053
855
|
|
|
1054
856
|
FROM_RIGHT
|
|
1055
857
|
From Right -- Shear the keys using the right key as reference.
|
|
1056
|
-
:type direction: typing.Literal['FROM_LEFT','FROM_RIGHT'] | None
|
|
1057
858
|
"""
|
|
1058
859
|
|
|
1059
860
|
def smooth(
|
|
1060
|
-
execution_context: int | str | None = None,
|
|
861
|
+
execution_context: int | str | None = None,
|
|
862
|
+
undo: bool | None = None,
|
|
863
|
+
/,
|
|
1061
864
|
) -> None:
|
|
1062
|
-
"""Apply weighted moving means to make selected F-Curves less bumpy
|
|
1063
|
-
|
|
1064
|
-
:type execution_context: int | str | None
|
|
1065
|
-
:type undo: bool | None
|
|
1066
|
-
"""
|
|
865
|
+
"""Apply weighted moving means to make selected F-Curves less bumpy"""
|
|
1067
866
|
|
|
1068
867
|
def snap(
|
|
1069
868
|
execution_context: int | str | None = None,
|
|
@@ -1082,8 +881,6 @@ def snap(
|
|
|
1082
881
|
) -> None:
|
|
1083
882
|
"""Snap selected keyframes to the chosen times/values
|
|
1084
883
|
|
|
1085
|
-
:type execution_context: int | str | None
|
|
1086
|
-
:type undo: bool | None
|
|
1087
884
|
:param type: Type
|
|
1088
885
|
|
|
1089
886
|
CFRA
|
|
@@ -1103,17 +900,14 @@ def snap(
|
|
|
1103
900
|
|
|
1104
901
|
HORIZONTAL
|
|
1105
902
|
Flatten Handles -- Flatten handles for a smoother transition.
|
|
1106
|
-
:type type: typing.Literal['CFRA','VALUE','NEAREST_FRAME','NEAREST_SECOND','NEAREST_MARKER','HORIZONTAL'] | None
|
|
1107
903
|
"""
|
|
1108
904
|
|
|
1109
905
|
def snap_cursor_value(
|
|
1110
|
-
execution_context: int | str | None = None,
|
|
906
|
+
execution_context: int | str | None = None,
|
|
907
|
+
undo: bool | None = None,
|
|
908
|
+
/,
|
|
1111
909
|
) -> None:
|
|
1112
|
-
"""Place the cursor value on the average value of selected keyframes
|
|
1113
|
-
|
|
1114
|
-
:type execution_context: int | str | None
|
|
1115
|
-
:type undo: bool | None
|
|
1116
|
-
"""
|
|
910
|
+
"""Place the cursor value on the average value of selected keyframes"""
|
|
1117
911
|
|
|
1118
912
|
def sound_to_samples(
|
|
1119
913
|
execution_context: int | str | None = None,
|
|
@@ -1158,50 +952,27 @@ def sound_to_samples(
|
|
|
1158
952
|
) -> None:
|
|
1159
953
|
"""Bakes a sound wave to samples on selected channels
|
|
1160
954
|
|
|
1161
|
-
:type execution_context: int | str | None
|
|
1162
|
-
:type undo: bool | None
|
|
1163
955
|
:param filepath: File Path, Path to file
|
|
1164
|
-
:type filepath: str
|
|
1165
956
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
1166
|
-
:type check_existing: bool | None
|
|
1167
957
|
:param filter_blender: Filter .blend files
|
|
1168
|
-
:type filter_blender: bool | None
|
|
1169
958
|
:param filter_backup: Filter .blend files
|
|
1170
|
-
:type filter_backup: bool | None
|
|
1171
959
|
:param filter_image: Filter image files
|
|
1172
|
-
:type filter_image: bool | None
|
|
1173
960
|
:param filter_movie: Filter movie files
|
|
1174
|
-
:type filter_movie: bool | None
|
|
1175
961
|
:param filter_python: Filter Python files
|
|
1176
|
-
:type filter_python: bool | None
|
|
1177
962
|
:param filter_font: Filter font files
|
|
1178
|
-
:type filter_font: bool | None
|
|
1179
963
|
:param filter_sound: Filter sound files
|
|
1180
|
-
:type filter_sound: bool | None
|
|
1181
964
|
:param filter_text: Filter text files
|
|
1182
|
-
:type filter_text: bool | None
|
|
1183
965
|
:param filter_archive: Filter archive files
|
|
1184
|
-
:type filter_archive: bool | None
|
|
1185
966
|
:param filter_btx: Filter btx files
|
|
1186
|
-
:type filter_btx: bool | None
|
|
1187
967
|
:param filter_alembic: Filter Alembic files
|
|
1188
|
-
:type filter_alembic: bool | None
|
|
1189
968
|
:param filter_usd: Filter USD files
|
|
1190
|
-
:type filter_usd: bool | None
|
|
1191
969
|
:param filter_obj: Filter OBJ files
|
|
1192
|
-
:type filter_obj: bool | None
|
|
1193
970
|
:param filter_volume: Filter OpenVDB volume files
|
|
1194
|
-
:type filter_volume: bool | None
|
|
1195
971
|
:param filter_folder: Filter folders
|
|
1196
|
-
:type filter_folder: bool | None
|
|
1197
972
|
:param filter_blenlib: Filter Blender IDs
|
|
1198
|
-
:type filter_blenlib: bool | None
|
|
1199
973
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
1200
|
-
:type filemode: int | None
|
|
1201
974
|
:param show_multiview: Enable Multi-View
|
|
1202
|
-
:type show_multiview: bool | None
|
|
1203
975
|
:param use_multiview: Use Multi-View
|
|
1204
|
-
:type use_multiview: bool | None
|
|
1205
976
|
:param display_type: Display Type
|
|
1206
977
|
|
|
1207
978
|
DEFAULT
|
|
@@ -1215,27 +986,16 @@ def sound_to_samples(
|
|
|
1215
986
|
|
|
1216
987
|
THUMBNAIL
|
|
1217
988
|
Thumbnails -- Display files as thumbnails.
|
|
1218
|
-
:type display_type: typing.Literal['DEFAULT','LIST_VERTICAL','LIST_HORIZONTAL','THUMBNAIL'] | None
|
|
1219
989
|
:param sort_method: File sorting mode
|
|
1220
|
-
:type sort_method: str | None
|
|
1221
990
|
:param low: Lowest Frequency, Cutoff frequency of a high-pass filter that is applied to the audio data
|
|
1222
|
-
:type low: float | None
|
|
1223
991
|
:param high: Highest Frequency, Cutoff frequency of a low-pass filter that is applied to the audio data
|
|
1224
|
-
:type high: float | None
|
|
1225
992
|
:param attack: Attack Time, Value for the envelope calculation that tells how fast the envelope can rise (the lower the value the steeper it can rise)
|
|
1226
|
-
:type attack: float | None
|
|
1227
993
|
:param release: Release Time, Value for the envelope calculation that tells how fast the envelope can fall (the lower the value the steeper it can fall)
|
|
1228
|
-
:type release: float | None
|
|
1229
994
|
:param threshold: Threshold, Minimum amplitude value needed to influence the envelope
|
|
1230
|
-
:type threshold: float | None
|
|
1231
995
|
:param use_accumulate: Accumulate, Only the positive differences of the envelope amplitudes are summarized to produce the output
|
|
1232
|
-
:type use_accumulate: bool | None
|
|
1233
996
|
:param use_additive: Additive, The amplitudes of the envelope are summarized (or, when Accumulate is enabled, both positive and negative differences are accumulated)
|
|
1234
|
-
:type use_additive: bool | None
|
|
1235
997
|
:param use_square: Square, The output is a square curve (negative values always result in -1, and positive ones in 1)
|
|
1236
|
-
:type use_square: bool | None
|
|
1237
998
|
:param sthreshold: Square Threshold, Square only: all values with an absolute amplitude lower than that result in 0
|
|
1238
|
-
:type sthreshold: float | None
|
|
1239
999
|
"""
|
|
1240
1000
|
|
|
1241
1001
|
def time_offset(
|
|
@@ -1247,10 +1007,7 @@ def time_offset(
|
|
|
1247
1007
|
) -> None:
|
|
1248
1008
|
"""Shifts the value of selected keys in time
|
|
1249
1009
|
|
|
1250
|
-
:type execution_context: int | str | None
|
|
1251
|
-
:type undo: bool | None
|
|
1252
1010
|
:param frame_offset: Frame Offset, How far in frames to offset the animation
|
|
1253
|
-
:type frame_offset: float | None
|
|
1254
1011
|
"""
|
|
1255
1012
|
|
|
1256
1013
|
def view_all(
|
|
@@ -1262,20 +1019,15 @@ def view_all(
|
|
|
1262
1019
|
) -> None:
|
|
1263
1020
|
"""Reset viewable area to show full keyframe range
|
|
1264
1021
|
|
|
1265
|
-
:type execution_context: int | str | None
|
|
1266
|
-
:type undo: bool | None
|
|
1267
1022
|
:param include_handles: Include Handles, Include handles of keyframes when calculating extents
|
|
1268
|
-
:type include_handles: bool | None
|
|
1269
1023
|
"""
|
|
1270
1024
|
|
|
1271
1025
|
def view_frame(
|
|
1272
|
-
execution_context: int | str | None = None,
|
|
1026
|
+
execution_context: int | str | None = None,
|
|
1027
|
+
undo: bool | None = None,
|
|
1028
|
+
/,
|
|
1273
1029
|
) -> None:
|
|
1274
|
-
"""Move the view to the current frame
|
|
1275
|
-
|
|
1276
|
-
:type execution_context: int | str | None
|
|
1277
|
-
:type undo: bool | None
|
|
1278
|
-
"""
|
|
1030
|
+
"""Move the view to the current frame"""
|
|
1279
1031
|
|
|
1280
1032
|
def view_selected(
|
|
1281
1033
|
execution_context: int | str | None = None,
|
|
@@ -1286,8 +1038,5 @@ def view_selected(
|
|
|
1286
1038
|
) -> None:
|
|
1287
1039
|
"""Reset viewable area to show selected keyframe range
|
|
1288
1040
|
|
|
1289
|
-
:type execution_context: int | str | None
|
|
1290
|
-
:type undo: bool | None
|
|
1291
1041
|
:param include_handles: Include Handles, Include handles of keyframes when calculating extents
|
|
1292
|
-
:type include_handles: bool | None
|
|
1293
1042
|
"""
|