Class TrailEffectBase
Base class for TrailEffect
Assembly: ChocDino.UIFX.dllβ
[RequireComponent(typeof(Graphic))]
[HelpURL("https://www.chocdino.com/products/uifx/")]
public abstract class TrailEffectBase : UIBehaviour, IMeshModifier
Inheritance: System.Object
-> UnityEngine.Object
-> UnityEngine.Component
-> UnityEngine.Behaviour
-> UnityEngine.MonoBehaviour
-> UnityEngine.EventSystems.UIBehaviour
Derived:
ChocDino.UIFX.TrailEffect, ChocDino.UIFX.TrailEffectTMP
Implements:
UnityEngine.UI.IMeshModifier
Propertiesβ
LayerCountβ
The number of trail layers
public int LayerCount { get; set; }
DampingFrontβ
The rate at which the front of the trail catches up with the movement. Higher value results in a less laggy trail. Default value is 50, range is [0..250].
public float DampingFront { get; set; }
DampingBackβ
The rate at which the back of the trail catches up with the movement. Higher value results in a less laggy trail. Default value is 50, range is [0..250].
public float DampingBack { get; set; }
AlphaCurveβ
Optional curve to control transparency. Transparency can also be controlled by the gradient property, but having this secondary control is useful when the gradient is animated but you still want apply a static transparency falloff.
public AnimationCurve AlphaCurve { get; set; }
VertexModifierSourceβ
Which vertex modifiers affect are used to calculate the vertex modifier effect. TranformAndVertex is the most expensive.
public VertexModifierSource VertexModifierSource { get; set; }
Gradientβ
The gradient colors used by the trail
public Gradient Gradient { get; set; }
GradientOffsetβ
The offset applied to the gradient. The gradient will wrap using mirrored repeating.
public float GradientOffset { get; set; }
GradientScaleβ
The scaling applied to the gradient. The gradient will wrap using mirrored repeating.
public float GradientScale { get; set; }
GradientOffsetSpeedβ
The animation speed for the offset property of the gradient. Allows easy simple scrolling animation without scripting. Set to zero for no animation.
public float GradientOffsetSpeed { get; set; }
ShowTrailOnlyβ
Only show the trail, hide the original UI Graphic
public bool ShowTrailOnly { get; set; }
BlendModeβ
Which color blending mode to use to mix the original vertex colors with the gradient colors
public BlendMode BlendMode { get; set; }
StrengthModeβ
The mode to use for fading out the trail when strength is less than 1.0
public TrailStrengthMode StrengthMode { get; set; }
Strengthβ
The strength of the effect. Range [0..1]
public float Strength { get; set; }
GraphicComponentβ
protected Graphic GraphicComponent { get; }
IgnoreTimeScaleβ
If Time scale is ignored then Time.unscaledDeltaTime will be used for updating animation
public static bool IgnoreTimeScale { get; set; }
DeltaTimeβ
protected static float DeltaTime { get; }
Implementsβ
UnityEngine.UI.IMeshModifier