Files
sbox-public/engine/Sandbox.Engine/Systems/Input/VR/MotionRange.cs
s&box team 71f266059a Open source release
This commit imports the C# engine code and game files, excluding C++ source code.

[Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
2025-11-24 09:05:18 +00:00

16 lines
361 B
C#

namespace Sandbox.VR;
[Expose]
public enum MotionRange
{
/// <summary>
/// The default motion range. Provides hand poses that either estimate or fully represent the user's hand.
/// </summary>
Hand,
/// <summary>
/// Provides hand poses that estimate how the user's hand wraps around a controller, if they're using one.
/// </summary>
Controller
}