HOHCICondition.cs 497 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using UnityEngine;
  3. namespace SchoenLogger.HOHCI
  4. {
  5. [Serializable]
  6. public class HOHCICondition : Condition
  7. {
  8. public enum SteeringType
  9. {
  10. handlebarSteering,
  11. hmdSteering,
  12. leanSteering
  13. }
  14. [SerializeField]
  15. public SteeringType steer;
  16. public HOHCICondition() { }
  17. public HOHCICondition(SteeringType steerType)
  18. {
  19. steer = steerType;
  20. }
  21. }
  22. }