17 lines
367 B
C#
17 lines
367 B
C#
namespace Valve.VR
|
|
{
|
|
public enum ChaperoneCalibrationState
|
|
{
|
|
OK = 1,
|
|
Warning = 100,
|
|
Warning_BaseStationMayHaveMoved = 101,
|
|
Warning_BaseStationRemoved = 102,
|
|
Warning_SeatedBoundsInvalid = 103,
|
|
Error = 200,
|
|
Error_BaseStationUninitialized = 201,
|
|
Error_BaseStationConflict = 202,
|
|
Error_PlayAreaInvalid = 203,
|
|
Error_CollisionBoundsInvalid = 204
|
|
}
|
|
}
|