37 lines
563 B
Markdown
37 lines
563 B
Markdown
# 相关类
|
||
- TsPropActor
|
||
- TsIdolPropActor
|
||
- TsScenePropActor
|
||
- 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
|
||
}
|
||
```
|