12345678910111213141516171819202122232425262728 |
-
- namespace SC.XR.Unity.Module_Keyboard
- {
- public enum KeyboardEnum
- {
- ABC = 0,
- Symbol = 2,
- Number = 3,
- Meme = 4,
- Prompt = 20,
- MorePrompt = 21,
- Language = 22,
- Delete = 23
- }
- public enum KeyboardState
- {
- Cn = 0,
- En = 1
- }
- public enum KeyboardSystemLanguage
- {
- Chinese = 0,
- English = 1
- }
- }
|