vault backup: 2024-06-26 13:45:49

This commit is contained in:
BlueRose 2024-06-26 13:45:49 +08:00
parent 3ff92625f5
commit a001676da4

View File

@ -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 ''
}
```