namespace GTweens.Enums
{
///
/// Specifies different modes for resetting the values of a tween animation.
///
public enum ResetMode
{
///
/// Resets the values to their initial state, as they were when the tween animation started.
///
InitialValues,
///
/// Resets the values by using the difference between initial and final values, effectively incrementing the new initial and final values.
///
IncrementalValues,
///
/// Each time reverses the animation initial and final values, in a ping-pong fashion.
///
PingPong,
///
/// Leaves the values unchanged, maintaining their current state.
///
CurrentValues,
}
}