mirror of
https://github.com/Cardidi/dotween-upm-fork.git
synced 2025-12-20 17:26:03 +08:00
52 lines
1.3 KiB
C#
52 lines
1.3 KiB
C#
// 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,
|
|
/// <summary>
|
|
/// Don't assign this! It's assigned automatically when creating 0 duration tweens
|
|
/// </summary>
|
|
INTERNAL_Zero,
|
|
/// <summary>
|
|
/// Don't assign this! It's assigned automatically when setting the ease to an AnimationCurve or to a custom ease function
|
|
/// </summary>
|
|
INTERNAL_Custom
|
|
}
|
|
} |