mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-01-16 18:29:15 -05:00
This commit imports the C# engine code and game files, excluding C++ source code. [Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
16 lines
361 B
C#
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
|
|
}
|