Files
Convention-Unity-Demo/Assets/Plugins/CW/LeanTransition/Required/Scripts/LeanTiming.cs

14 lines
361 B
C#
Raw Normal View History

2025-09-25 19:04:05 +08:00
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
}
}