control.mvc 652 B

1234567891011121314151617181920212223242526272829303132333435
  1. PW_Control/Up up {
  2. isInitial = False
  3. isError = False
  4. name = "ctrl_up"
  5. }
  6. PW_Control/Down down {
  7. isInitial = False
  8. isError = False
  9. name = "ctrl_down"
  10. }
  11. PW_Control/Neutral neutral {
  12. isInitial = True
  13. isError = True
  14. name = "ctrl_neutral"
  15. }
  16. PW_Control/UpPressed (down, neutral) {
  17. objDetected = "*"
  18. }
  19. PW_Control/UpPressed (neutral, up) {
  20. objDetected = "N"
  21. }
  22. PW_Control/DownPressed (up, neutral) {
  23. objDetected = "*"
  24. }
  25. PW_Control/DownPressed (neutral, down) {
  26. objDetected = "*"
  27. }
  28. PW_Control/NonePressed (up, neutral) {
  29. objDetected = "*"
  30. }
  31. PW_Control/NonePressed (down, neutral) {
  32. objDetected = "*"
  33. }