65 lines
2.0 KiB
TypeScript
65 lines
2.0 KiB
TypeScript
export enum AttachmentPoint
|
|
{
|
|
Default = 0,
|
|
Chest = 1, // FS: Chest
|
|
Skull, // FS: Skull
|
|
LeftShoulder, // FS: Left Shoulder
|
|
RightShoulder, // FS: Right Shoulder
|
|
LeftHand, // FS: Left Hand
|
|
RightHand, // FS: Right Hand
|
|
LeftFoot, // FS: Left Foot
|
|
RightFoot, // FS: Right Root
|
|
Spine, // FS: Spine
|
|
Pelvis, // FS: Pelvis
|
|
Mouth, // FS: Mouth
|
|
Chin, // FS: Chin
|
|
LeftEar, // FS: Left Ear
|
|
RightEar, // FS: Right Ear
|
|
LeftEyeball, // FS: Left Eyeball
|
|
RightEyeball, // FS: Right Eyeball
|
|
Nose, // FS: Nose
|
|
RightUpperArm, // FS: R Upper Arm
|
|
RightForearm, // FS: R Forearm
|
|
LeftUpperArm, // FS: L Upper Arm
|
|
LeftForearm, // FS: L Forearm
|
|
RightHip, // FS: Right Hip
|
|
RightUpperLeg, // FS: R Upper Leg
|
|
RightLowerLeg, // FS: R Lower Leg
|
|
LeftHip, // FS: Left Hip
|
|
LeftUpperLeg, // FS: L Upper Leg
|
|
LeftLowerLeg, // FS: L Lower Leg
|
|
Stomach, // FS: Stomach
|
|
LeftPec, // FS: Left Pec
|
|
RightPec, // FS: Right Pec
|
|
|
|
// Private/HUD attachments
|
|
HUDCenter2, // FS: Center 2
|
|
HUDTopRight, // FS: Top Right
|
|
HUDTop, // FS: Top
|
|
HUDTopLeft, // FS: Top Left
|
|
HUDCenter, // FS: Center
|
|
HUDBottomLeft, // FS: Bottom Left
|
|
HUDBottom, // FS: Bottom
|
|
HUDBottomRight, // FS: Bottom Right
|
|
|
|
// Extras
|
|
Neck, // FS: Neck
|
|
Root = 40, // FS: Avatar Center
|
|
Center = 40,
|
|
LefHandRing1 = 41, // FS: Left Ring Finger
|
|
RightHandRing1 = 42, // FS: Right Ring Finger
|
|
TailBase = 43, // FS: Tail Base
|
|
TailTip = 44, // FS: Tail Tip
|
|
LeftWing = 45, // FS: Left Wing
|
|
RightWing = 46, // FS: Right Wing
|
|
FaceJaw = 47, // FS: Jaw
|
|
FaceLeftEar = 48, // FS: Alt Left Ear
|
|
FaceRightEar = 49, // FS: Alt Right Ear
|
|
FaceLeftEye = 50, // FS: Alt Left Eye
|
|
FaceRightEye = 51, // FS: Alt Right Eye
|
|
FaceTongue = 52, // FS: Tongue
|
|
Groin = 53, // FS: Groin
|
|
HindLeftFoot = 54, // FS: Left Hind Foot
|
|
HindRightFoot = 55 // FS: Right Hind Foot
|
|
}
|