SteamVR_UpdateModes.cs 309 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 //======= 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), } }