Guest User

Untitled

a guest
May 21st, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. public static ControlSet GetControls() {
  2. if(Application.isEditor)
  3. return new PcControls();
  4. switch(Application.platform) {
  5. #if !DISABLE_SYSTEM
  6. case RuntimePlatform.WindowsPlayer:
  7. return new PcControls();
  8. case RuntimePlatform.Android:
  9. return new AndroidControls();
  10. #endif
  11. default:
  12. return new DummyControls();
  13. }
  14. }
Add Comment
Please, Sign In to add comment