// Author: Daniele Giardini - http://www.demigiant.com
// Created: 2014/06/30 19:20
// License Copyright (c) Daniele Giardini.
// This work is subject to the terms at http://dotween.demigiant.com/license.php
#pragma warning disable 1591
namespace DG.Tweening
{
public enum Ease
{
Unset, // Used to let TweenParams know that the ease was not set and apply it differently if used on Tweeners or Sequences
Linear,
InSine,
OutSine,
InOutSine,
InQuad,
OutQuad,
InOutQuad,
InCubic,
OutCubic,
InOutCubic,
InQuart,
OutQuart,
InOutQuart,
InQuint,
OutQuint,
InOutQuint,
InExpo,
OutExpo,
InOutExpo,
InCirc,
OutCirc,
InOutCirc,
InElastic,
OutElastic,
InOutElastic,
InBack,
OutBack,
InOutBack,
InBounce,
OutBounce,
InOutBounce,
///
/// Don't assign this! It's assigned automatically when creating 0 duration tweens
///
INTERNAL_Zero,
///
/// Don't assign this! It's assigned automatically when setting the ease to an AnimationCurve or to a custom ease function
///
INTERNAL_Custom
}
}