• This project
    • Loading...
  • Sign in

2021-1-capstone-design1 / JSH_Project1

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • JSH_Project1
  • ..
  • Input
  • SteamVR_UpdateModes.cs
  • 김유현's avatar
    VR 매핑 및 걷는 부분 추가 · 8af0b624
    8af0b624
    김유현 authored 2021-06-01 19:27:55 +0900
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),
    }
}