diff --git a/02-Note/DAWA/ASoul/流程笔记/道具流程.md b/02-Note/DAWA/ASoul/流程笔记/道具流程.md index 46870b5..fa2744d 100644 --- a/02-Note/DAWA/ASoul/流程笔记/道具流程.md +++ b/02-Note/DAWA/ASoul/流程笔记/道具流程.md @@ -34,3 +34,17 @@ export const enum MountPointEnum {     Hips } ``` + +TsIdolPropManagerComponent.ts +AttachAllProp() => AttachProp() + +TsPropAssetManager.ts +```ts +static GetMountPointName(Tag: UE.GameplayTag): string { + if (Tag.TagName.startsWith('Prop.MountPoint')) { + let res = Tag.TagName.split('.') + return res[res.length - 1] + } + return '' +} +``` \ No newline at end of file