您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

64 行
1.5 KiB

namespace UniVRM10
{
/// <summary>
/// https://github.com/vrm-c/vrm-specification/blob/master/specification/VRMC_vrm-1.0/humanoid.md
/// </summary>
public enum Vrm10HumanoidBones
{
Hips = 0,
Spine,
Chest,
UpperChest,
Neck,
Head,
LeftEye,
RightEye,
Jaw,
LeftUpperLeg,
LeftLowerLeg,
LeftFoot,
LeftToes,
RightUpperLeg,
RightLowerLeg,
RightFoot,
RightToes,
LeftShoulder,
LeftUpperArm,
LeftLowerArm,
LeftHand,
RightShoulder,
RightUpperArm,
RightLowerArm,
RightHand,
LeftThumbMetacarpal,
LeftThumbProximal,
LeftThumbDistal,
LeftIndexProximal,
LeftIndexIntermediate,
LeftIndexDistal,
LeftMiddleProximal,
LeftMiddleIntermediate,
LeftMiddleDistal,
LeftRingProximal,
LeftRingIntermediate,
LeftRingDistal,
LeftLittleProximal,
LeftLittleIntermediate,
LeftLittleDistal,
RightThumbMetacarpal,
RightThumbProximal,
RightThumbDistal,
RightIndexProximal,
RightIndexIntermediate,
RightIndexDistal,
RightMiddleProximal,
RightMiddleIntermediate,
RightMiddleDistal,
RightRingProximal,
RightRingIntermediate,
RightRingDistal,
RightLittleProximal,
RightLittleIntermediate,
RightLittleDistal,
}
}