SteamVR_UpdateModes.cs 309 B

1234567891011121314
  1. //======= Copyright (c) Valve Corporation, All rights reserved. ===============
  2. namespace Valve.VR
  3. {
  4. public enum SteamVR_UpdateModes
  5. {
  6. Nothing = (1 << 0),
  7. OnUpdate = (1 << 1),
  8. OnFixedUpdate = (1 << 2),
  9. OnPreCull = (1 << 3),
  10. OnLateUpdate = (1 << 4),
  11. }
  12. }