2022-11-25 19:18:21 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Assets.AR
|
|
|
|
|
|
{
|
2023-01-31 18:22:15 +08:00
|
|
|
|
public enum ARGameObjectType
|
2022-11-25 19:18:21 +08:00
|
|
|
|
{
|
|
|
|
|
|
Sign,
|
|
|
|
|
|
Box,
|
|
|
|
|
|
Sphere,
|
|
|
|
|
|
SplitGate,
|
|
|
|
|
|
FinishGate,
|
|
|
|
|
|
Bariccade,
|
|
|
|
|
|
Custom,
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-01-31 18:22:15 +08:00
|
|
|
|
public enum CameraDistance
|
2022-11-25 19:18:21 +08:00
|
|
|
|
{
|
|
|
|
|
|
FirstPerson,
|
|
|
|
|
|
Near,
|
|
|
|
|
|
Middle,
|
|
|
|
|
|
Far,
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-01-31 18:22:15 +08:00
|
|
|
|
public enum VideoPlayMode
|
2022-11-25 19:18:21 +08:00
|
|
|
|
{
|
|
|
|
|
|
Front,
|
|
|
|
|
|
AutoPanorama,
|
|
|
|
|
|
Rear,
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|