This library provides RLV command processing and ease of use for checking current RLV permissions and restrictions
63 lines
1.1 KiB
C#
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
|
|
}
|
|
}
|