1234567891011121314151617181920 |
- namespace Rokid.UXR.Interaction
- {
- /// <summary>
- /// Describes the orientation in which the cylinder will be used.
- /// </summary>
- public enum CylinderOrientation
- {
- /// <summary>
- /// Cylinder is used in a vertical orientation
- /// </summary>
- Vertical,
- /// <summary>
- /// Cylinder is used in a horizontal orientation
- /// </summary>
- Horizontal,
- }
- }
|