Files
libremetaverse/LibreMetaverse.RLV/RlvAttachmentPoint.cs
nooperation d905210ecf Initial commit of LibreMetaverse.RLV and LibreMetaverse.RLV.Tests.
This library provides RLV command processing and ease of use for checking current RLV permissions and restrictions
2025-08-17 19:55:33 -04:00

63 lines
1.1 KiB
C#

namespace LibreMetaverse.RLV
{
public enum RlvAttachmentPoint
{
Default,
Chest,
Skull,
LeftShoulder,
RightShoulder,
LeftHand,
RightHand,
LeftFoot,
RightFoot,
Spine,
Pelvis,
Mouth,
Chin,
LeftEar,
RightEar,
LeftEyeball,
RightEyeball,
Nose,
RightUpperArm,
RightForearm,
LeftUpperArm,
LeftForearm,
RightHip,
RightUpperLeg,
RightLowerLeg,
LeftHip,
LeftUpperLeg,
LeftLowerLeg,
Stomach,
LeftPec,
RightPec,
HUDCenter2,
HUDTopRight,
HUDTop,
HUDTopLeft,
HUDCenter,
HUDBottomLeft,
HUDBottom,
HUDBottomRight,
Neck,
Root,
LeftHandRing,
RightHandRing,
TailBase,
TailTip,
LeftWing,
RightWing,
Jaw,
AltLeftEar,
AltRightEar,
AltLeftEye,
AltRightEye,
Tongue,
Groin,
LeftHindFoot,
RightHindFoot
}
}