Animation: Operator Renames #104549

Merged
Christoph Lendenfeld merged 7 commits from ChrisLend/blender-manual:operator_renames into main 2023-09-12 10:40:47 +02:00
2 changed files with 23 additions and 22 deletions

View File

@ -196,45 +196,46 @@ Use Preview Range
Ignore frames outside of the preview range.
.. _bpy.ops.graph.bake:
.. _bpy.ops.graph.keys_to_samples:
Bake Curve
==========
Keys to Samples
===============
.. reference::
:Menu: :menuselection:`Channel --> Bake Curve`
:Menu: :menuselection:`Channel --> Keys to Samples`
:Shortcut: :kbd:`Alt-C`
Baking a curve replaces it with a set of sampled points at each full frame.
This operator replaces an F-Curve with a set of sampled points at each full frame.
**It is a destructive process that removes the ability to edit the curve**.
The main use for this is to reduce the file size with large datasets. Samples are only 1/5th the size per key.
The sampled points interpolate linearly on subframes.
.. _bpy.ops.graph.unbake:
.. _bpy.ops.graph.samples_to_keys:
Un-Bake Curve
=============
Samples to Keys
===============
.. reference::
:Menu: :menuselection:`Channel --> Un-Bake Curve`
:Menu: :menuselection:`Channel --> Samples to Keys`
Unbaking a curve replaces the baked curve with keyframes, adding the ability to edit it.
This operator replaces a sampled F-Curve with keyframes, adding the ability to edit it.
It will not recreate the curve as it was before, instead it will place 1 key at every frame.
.. _bpy.ops.graph.sound_bake:
.. _bpy.ops.graph.sound_to_samples:
Bake Sound to F-Curves
======================
Sound to Samples
================
.. reference::
:Menu: :menuselection:`Channel --> Bake Sound to F-Curves`
:Menu: :menuselection:`Channel --> Sound to Samples`
The *Bake Sound to F-Curves* operator takes a sound file and uses its sound wave to create the animation data.
The *Sound to Samples* operator takes a sound file and uses its sound wave to create the animation data.
By default this data will not be editable, use *Samples to Keys* to get editable keyframes.
Lowest Frequency
Cutoff frequency of a high-pass filter that is applied to the audio data.

View File

@ -298,27 +298,27 @@ Mode
which controls how much the new decimated curve is allowed to deviate from the original.
.. _bpy.ops.graph.sample:
.. _bpy.ops.graph.bake_keys:
Sample Keyframes
----------------
Bake Keyframes
--------------
.. reference::
:Menu: :menuselection:`Key --> Density --> Sample Keyframes`
:Menu: :menuselection:`Key --> Density --> Bake Keyframes`
:Shortcut: :kbd:`Shift-Alt-O`
Sampling a set of keyframes replaces interpolated values with a new keyframe for each frame.
Baking a set of keyframes replaces interpolated values with a new keyframe for each frame.
.. list-table::
* - .. figure:: /images/editors_graph-editor_fcurves_editing_sample.png
F-Curve before sampling.
F-Curve before baking.
- .. figure:: /images/editors_graph-editor_fcurves_editing_sample2.png
F-Curve after sampling.
F-Curve after baking.
.. _bpy.ops.graph.clean: