Ejemplo n.º 1
0
        /************************************************************************************************************************/

        /// <summary>Modify the current fade to use the specified `curve` to calculate the weight.</summary>
        /// <example>See <see cref="CustomFade"/>.</example>
        /// <remarks>The `curve` should follow the <see cref="OptionalWarning.CustomFadeBounds"/> guideline.</remarks>
        public static void Apply(AnimancerPlayable animancer, AnimationCurve curve)
        => Curve.Acquire(curve).Apply(animancer);
Ejemplo n.º 2
0
 /// <summary>Modify the current fade to use the specified `curve` to calculate the weight.</summary>
 /// <example>See <see cref="CustomFade"/>.</example>
 /// <remarks>The `curve` should follow the <see cref="OptionalWarning.CustomFadeBounds"/> guideline.</remarks>
 public static void Apply(AnimancerState state, AnimationCurve curve)
 => Curve.Acquire(curve).Apply(state);
Ejemplo n.º 3
0
 /// <summary>Modify the current fade to use the specified `curve` to calculate the weight.</summary>
 /// <example>See <see cref="CustomFade"/>.</example>
 /// <remarks>The `curve` should follow the <see cref="OptionalWarning.CustomFadeBounds"/> guideline.</remarks>
 public static void Apply(AnimancerNode node, AnimationCurve curve)
 => Curve.Acquire(curve).Apply(node);