diff --git a/02-Note/DAWA/ASoul/流程笔记/道具流程.md b/02-Note/DAWA/ASoul/流程笔记/道具流程.md index b31468c..46870b5 100644 --- a/02-Note/DAWA/ASoul/流程笔记/道具流程.md +++ b/02-Note/DAWA/ASoul/流程笔记/道具流程.md @@ -1,4 +1,36 @@ +# 相关类 - TsPropActor - TsIdolPropActor - TsScenePropActor - - TsPropEffectActor \ No newline at end of file + - 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 +} +```