11 lines
306 B
C#
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
|
|
}
|
|
}
|