CylinderOrientation.cs 434 B

1234567891011121314151617181920
  1. namespace Rokid.UXR.Interaction
  2. {
  3. /// <summary>
  4. /// Describes the orientation in which the cylinder will be used.
  5. /// </summary>
  6. public enum CylinderOrientation
  7. {
  8. /// <summary>
  9. /// Cylinder is used in a vertical orientation
  10. /// </summary>
  11. Vertical,
  12. /// <summary>
  13. /// Cylinder is used in a horizontal orientation
  14. /// </summary>
  15. Horizontal,
  16. }
  17. }