563 B
Raw Blame History

相关类

  • TsPropActor
  • TsIdolPropActor
  • TsScenePropActor
    • TsPropEffectActor

MountPoint

GameplayTag中有定义相关Prop的挂载位置标签

  • Prop
    • MountPoint
      • Back
      • Body
      • Feet
      • Head
      • HeadBottom
      • HeadUp
      • Hips
      • LeftFoot
      • LeftHand
      • RightFoot
      • RightHand
      • Root

对应逻辑TsPropAssetManager.ts中的枚举查找函数为GetMountPointIndexByTagName():

export const enum MountPointEnum {
    HeadUp,
    Head,
    HeadDown,
    LeftHand,
    RightHand,
    Back,
    Feet,
    Hips
}