KSKeyCode.cs 572 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace SC.XR.Unity.Module_InputSystem.InputDeviceGC.KS {
  7. public enum KSKeyCode {
  8. A = 306,
  9. B = 307,
  10. LjoystickKey = 303,
  11. LFunction = 300,
  12. LHallInside = 500,
  13. LHallForward = 501,
  14. LTrigger = 304,
  15. X = 301,
  16. Y = 302,
  17. RjoystickKey = 308,
  18. RFunction = 305,
  19. RHallInside = 600,
  20. RHallForward = 601,
  21. RTrigger = 309,
  22. OTHER = -1
  23. }
  24. }