37 lines
563 B
Markdown
Raw Normal View History

2024-06-26 12:47:43 +08:00
# 相关类
2024-06-20 10:13:28 +08:00
- TsPropActor
- TsIdolPropActor
- TsScenePropActor
2024-06-26 12:47:43 +08:00
- TsPropEffectActor
# MountPoint
GameplayTag中有定义相关Prop的挂载位置标签
- Prop
- MountPoint
- Back
- Body
- Feet
- Head
- HeadBottom
- HeadUp
- Hips
- LeftFoot
- LeftHand
- RightFoot
- RightHand
- Root
对应逻辑TsPropAssetManager.ts中的枚举查找函数为GetMountPointIndexByTagName():
```ts
export const enum MountPointEnum {
    HeadUp,
    Head,
    HeadDown,
    LeftHand,
    RightHand,
    Back,
    Feet,
    Hips
}
```