35 lines
512 B
C#
35 lines
512 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Assets.AR
|
|
{
|
|
public enum ARObjectType
|
|
{
|
|
Sign,
|
|
Box,
|
|
Sphere,
|
|
SplitGate,
|
|
FinishGate,
|
|
Bariccade,
|
|
Custom,
|
|
}
|
|
|
|
public enum RiderCameraDistance
|
|
{
|
|
FirstPerson,
|
|
Near,
|
|
Middle,
|
|
Far,
|
|
}
|
|
|
|
public enum VideoControlMode
|
|
{
|
|
Front,
|
|
AutoPanorama,
|
|
Rear,
|
|
}
|
|
}
|