Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. public bool GetOculusGripButtonDown() // gamesweplayed wus here
  2. {
  3. if (noSteamVRFallbackCamera)
  4. {
  5. return Input.GetMouseButtonDown(0);
  6. }
  7. else if (controller != null)
  8. {
  9. return c.GetPressDown(grip);
  10. }
  11.  
  12. return false;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement