1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
|
.. index:: Modifiers; F-Curve Modifiers
.. index:: F-Curve Modifiers
.. _bpy.types.FCurveModifiers:
.. _bpy.types.FModifier:
*****************
F-Curve Modifiers
*****************
.. reference::
:Panel: :menuselection:`Sidebar region --> Modifiers`
F-Curve modifiers are similar to object modifiers, in that they add non-destructive effects
that can be adjusted at any time and layered to create more complex effects.
Modifiers are evaluated from top to bottom.
You can change their order by dragging the dots in their top right corner.
Interface
=========
.. _bpy.types.FModifier.name:
Name
By default, modifiers are named after their function, but this can be changed.
.. _bpy.types.FModifier.mute:
Mute
Click the checkbox in a modifier's header to disable it.
Delete
Click the cross in a modifier's header to delete it.
Influence
Lets you blend between the original curve and the modified one.
Restrict Frame Range
Start/End
The frame on which the modifier's effect starts/ends.
Blend In/Out
The number of frames, relative the start/end values above, it takes the modifier to fade in/out.
Adding a Modifier
=================
.. figure:: /images/editors_graph-editor_fcurves_sidebar_modifiers_panel.png
Modifiers panel.
Modifiers can be managed on the *Modifiers* tab of the Sidebar.
Select an F-Curve (in the channel region or by selecting one of its keyframes),
then click the *Add Modifier* dropdown and choose the modifier to add.
Types of Modifiers
==================
.. index:: F-Curve Modifiers; Generator Modifier
.. _bpy.types.FModifierGenerator:
Generator Modifier
------------------
Creates a polynomial function.
These are basic mathematical formulas that represent lines, parabolas,
and other more complex curves, depending on the values used.
.. seealso::
The `Wikipedia Page <https://en.wikipedia.org/wiki/Polynomial>`__
for more information on polynomials.
Mode
Method used to represent the equation.
Expanded Polynomial
Equation in the form :math:`y = A + Bx^1 + Cx^2 + ... + Dx^n`.
Factorized Polynomial
Equation in the form :math:`y = (Ax + B)(Cx + D)`.
Additive
Add the polynomial to the curve rather than replacing it.
Order
The highest power of ``x`` for this polynomial.
Coefficient
The constants A, B, C... in the equation.
.. index:: F-Curve Modifiers; Built-in Function Modifier
.. _bpy.types.FModifierFunctionGenerator:
Built-in Function Modifier
--------------------------
These are additional formulas, each with the same options to control their shape.
Consult mathematics reference for more detailed information on each function:
Type
The built-in function to use:
- `Sine <https://en.wikipedia.org/wiki/Sine>`__
- `Cosine <https://en.wikipedia.org/wiki/Trigonometric_functions>`__
- `Tangent <https://en.wikipedia.org/wiki/Trigonometric_functions>`__
- `Square Root <https://en.wikipedia.org/wiki/Square_root>`__
- `Natural Logarithm <https://en.wikipedia.org/wiki/Natural_logarithm>`__
- Normalized Sine: :math:`sin(x)/x`
Additive
Add the function to the curve rather than replacing it.
Amplitude
Adjusts the Y scaling.
Phase Multiplier
Adjusts the X scaling.
Phase Offset
Adjusts the X offset.
Value Offset
Adjusts the Y offset.
.. index:: F-Curve Modifiers; Envelope Modifier
.. _bpy.types.FModifierEnvelope:
.. _bpy.types.FModifierEnvelopeControlPoint:
Envelope Modifier
-----------------
Lets you reshape the curve. First, you define an envelope, which consists of two horizontal
lines that more or less match the curve's lower and upper bounds. Then, you add control points,
where each point can push, squeeze, and stretch the envelope (and the curve along with it)
at a certain frame.
.. figure:: /images/editors_graph-editor_fcurves_modifiers_envelope.png
The Envelope modifier.
Reference
The value which the envelope is centered around.
Min/Max
The offset from the reference value to the envelope's initial lower/upper bound.
Add Control Point
Adds a control point at the current frame.
Point
Frame
The frame of the control point.
Min/Max
The offset from the reference value to the envelope's adjusted lower/upper bound
at this frame.
.. index:: F-Curve Modifiers; Cycles Modifier
.. _bpy.types.FModifierCycles:
Cycles Modifier
---------------
Makes the curve repeat itself.
.. note::
The Cycles Modifier can only be the first modifier.
Before/After Mode
No Cycles
Do not repeat the curve before/after the original.
Repeat Motion
Repeats the curve, keeping the values of each copy the same.
Repeat with Offset
Repeats the curve, offsetting each copy vertically so that its first keyframe matches the
previous last keyframe.
Repeat Mirrored
Repeats the curve, flipping every other copy horizontally.
Count
The number of copies to create. A value of 0 means infinite.
Trivially Cyclic Curves
^^^^^^^^^^^^^^^^^^^^^^^
When the *Cycle Mode* for both ends is set to either *Repeat Motion* or
*Repeat with Offset*, and no other options of the modifier are
changed from their defaults, it defines a simple infinite cycle.
This special case receives some additional support from other areas of Blender:
- Automatic Bézier handle placement is aware of the cycle and adjusts to achieve a smooth transition.
- The :ref:`Cycle-Aware Keying <timeline-keying>` option can be enabled to take
the cycle into account when inserting new keyframes.
.. index:: F-Curve Modifiers; Noise Modifier
.. _bpy.types.FModifierNoise:
Noise Modifier
--------------
Modifies the curve with a noise formula.
This is useful for adding subtle or extreme randomness to animated movements,
like camera shake.
Blend Type
:Replace: Adds noise in the range [-0.5, 0.5].
:Add: Adds noise in the range [0, 1].
:Subtract: Subtracts noise in the range [0, 1].
:Multiply: Multiplies by noise in the range [0, 1].
Scale
Changes the horizontal scale of the noise. Higher values make for less dense oscillation.
Strength
Changes the vertical scale of the noise.
Offset
Offsets the noise in time.
Phase
Adjusts the random seed of the noise.
Depth
Adjusts how detailed the noise function is.
.. index:: F-Curve Modifiers; Limits Modifier
.. _bpy.types.FModifierLimits:
Limits Modifier
---------------
Limits the curve to specific time and value ranges.
Minimum, Maximum X
Removes the original curve data to the left of the minimum frame and to the right of the maximum,
replacing it by :ref:`Constant extrapolation <bpy.ops.graph.extrapolation_type>`.
Minimum, Maximum Y
Clamps the curve values, never letting them go below the minimum or above the maximum.
.. index:: F-Curve Modifiers; Stepped Interpolation Modifier
.. _bpy.types.FModifierStepped:
Stepped Interpolation Modifier
------------------------------
Gives the curve a stepped appearance by sampling it every N frames and making it hold its value
after each sample. In a sense, this lowers the curve's frame rate by letting it change its value
less frequently, producing choppy movement as a result.
Step Size
The number of frames to hold each step.
Offset
The number of frames to offset the sample points.
Start Frame
The frame where to start applying the effect.
End Frame
The frame where to stop applying the effect.
|