boB 21a16e637f Revert "retire Steam VR"
This reverts commit f627f1e1c3e7c010a70ba1eacfb7b3aab85ffd43.
2021-11-11 16:51:51 -05:00

14 lines
309 B
C#

//======= Copyright (c) Valve Corporation, All rights reserved. ===============
namespace Valve.VR
{
public enum SteamVR_UpdateModes
{
Nothing = (1 << 0),
OnUpdate = (1 << 1),
OnFixedUpdate = (1 << 2),
OnPreCull = (1 << 3),
OnLateUpdate = (1 << 4),
}
}