Files
UltimateFishing2020/Assets/Scripts/Assembly-CSharp/UnityEngine/AzureSky/AzureTimeSystem.cs
2026-03-04 10:03:45 +08:00

11 lines
306 B
C#

namespace UnityEngine.AzureSky
{
public enum AzureTimeSystem
{
[Tooltip("This option sets a simple rotation for the sun and moon transforms. Best for performance.")]
Simple = 0,
[Tooltip("This option sets a realistic astronomical coordinate for the sun and moon transforms.")]
Realistic = 1
}
}