SamsonGame/Assets/Sources/Lean/Transition/Scripts/LeanTiming.cs

14 lines
361 B
C#

namespace Lean.Transition
{
/// <summary>This enum allows you to control where in the game loop transitions will update.</summary>
public enum LeanTiming
{
UnscaledFixedUpdate = -3,
UnscaledLateUpdate = -2,
UnscaledUpdate = -1,
Default = 0,
Update = 1,
LateUpdate = 2,
FixedUpdate = 3
}
}