2022-07-15 11:02:17 -04:00

18 lines
391 B
C#

namespace AssetRipper.Core.Classes.Camera
{
/// <summary>
/// Enumerates which axis to use when expressing the value for the field of view
/// </summary>
public enum FieldOfViewAxis
{
/// <summary>
/// Specifies the field of view as vertical
/// </summary>
Vertical = 0,
/// <summary>
/// Specifies the field of view as horizontal
/// </summary>
Horizontal = 1,
}
}