mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-01-31 09:41:08 -05:00
This commit imports the C# engine code and game files, excluding C++ source code. [Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
32 lines
568 B
C#
32 lines
568 B
C#
namespace Sandbox.VR;
|
|
|
|
public enum VRHandJoint
|
|
{
|
|
Palm = 0,
|
|
Wrist = 1,
|
|
ThumbMetacarpal = 2,
|
|
ThumbProximal = 3,
|
|
ThumbDistal = 4,
|
|
ThumbTip = 5,
|
|
IndexMetacarpal = 6,
|
|
IndexProximal = 7,
|
|
IndexIntermediate = 8,
|
|
IndexDistal = 9,
|
|
IndexTip = 10,
|
|
MiddleMetacarpal = 11,
|
|
MiddleProximal = 12,
|
|
MiddleIntermediate = 13,
|
|
MiddleDistal = 14,
|
|
MiddleTip = 15,
|
|
RingMetacarpal = 16,
|
|
RingProximal = 17,
|
|
RingIntermediate = 18,
|
|
RingDistal = 19,
|
|
RingTip = 20,
|
|
LittleMetacarpal = 21,
|
|
LittleProximal = 22,
|
|
LittleIntermediate = 23,
|
|
LittleDistal = 24,
|
|
LittleTip = 25
|
|
}
|