mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
18 lines
391 B
C#
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,
|
|
}
|
|
}
|