KeyboardEnum.cs 444 B

12345678910111213141516171819202122232425262728
  1. 
  2. namespace SC.XR.Unity.Module_Keyboard
  3. {
  4. public enum KeyboardEnum
  5. {
  6. ABC = 0,
  7. Symbol = 2,
  8. Number = 3,
  9. Meme = 4,
  10. Prompt = 20,
  11. MorePrompt = 21,
  12. Language = 22,
  13. Delete = 23
  14. }
  15. public enum KeyboardState
  16. {
  17. Cn = 0,
  18. En = 1
  19. }
  20. public enum KeyboardSystemLanguage
  21. {
  22. Chinese = 0,
  23. English = 1
  24. }
  25. }