From a001676da4eb9da23c727f9518ec67fbd733a09f Mon Sep 17 00:00:00 2001 From: BlueRose <378100977@qq.com> Date: Wed, 26 Jun 2024 13:45:49 +0800 Subject: [PATCH] vault backup: 2024-06-26 13:45:49 --- 02-Note/DAWA/ASoul/流程笔记/道具流程.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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