mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-04-06 04:28:59 +08:00
fix: compatibility issue with lilycalInventory (#1531)
The early animator cloning logic was dropped in refactoring, put it back.
This commit is contained in:
parent
706ce7aa2f
commit
81aed5b798
4
.github/ProjectRoot/vpm-manifest-2022.json
vendored
4
.github/ProjectRoot/vpm-manifest-2022.json
vendored
@ -4,7 +4,7 @@
|
|||||||
"version": "3.7.4"
|
"version": "3.7.4"
|
||||||
},
|
},
|
||||||
"nadena.dev.ndmf": {
|
"nadena.dev.ndmf": {
|
||||||
"version": "1.7.0-beta.0"
|
"version": "1.7.0-rc.2"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
@ -19,7 +19,7 @@
|
|||||||
"dependencies": {}
|
"dependencies": {}
|
||||||
},
|
},
|
||||||
"nadena.dev.ndmf": {
|
"nadena.dev.ndmf": {
|
||||||
"version": "1.7.0-beta.0"
|
"version": "1.7.0-rc.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
### Added
|
### Added
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
- [#1531] lylicalInventoryとの互換性問題を修正
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- [#1530] `MA Menu Item`の自動パラメーター機能も、オブジェクトのパスに基づいて名前を割り当てるようになりました。
|
- [#1530] `MA Menu Item`の自動パラメーター機能も、オブジェクトのパスに基づいて名前を割り当てるようになりました。
|
||||||
|
@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
### Added
|
### Added
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
- [#1531] Fix compatibility issue with lylicalInventory
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- [#1530] `MA Menu Item` auto parameters now also assign names based on object paths
|
- [#1530] `MA Menu Item` auto parameters now also assign names based on object paths
|
||||||
|
@ -38,6 +38,13 @@ namespace nadena.dev.modular_avatar.core.editor.plugin
|
|||||||
Sequence seq = InPhase(BuildPhase.Resolving);
|
Sequence seq = InPhase(BuildPhase.Resolving);
|
||||||
seq.Run(ResolveObjectReferences.Instance);
|
seq.Run(ResolveObjectReferences.Instance);
|
||||||
|
|
||||||
|
// Protect against accidental destructive edits by cloning the input controllers ASAP
|
||||||
|
seq.WithRequiredExtension(typeof(AnimatorServicesContext), s =>
|
||||||
|
{
|
||||||
|
// Just activating the context is enough.
|
||||||
|
s.Run("Clone animators", _ => { });
|
||||||
|
});
|
||||||
|
|
||||||
seq = InPhase(BuildPhase.Transforming);
|
seq = InPhase(BuildPhase.Transforming);
|
||||||
seq.Run("Validate configuration",
|
seq.Run("Validate configuration",
|
||||||
context => ComponentValidation.ValidateAll(context.AvatarRootObject));
|
context => ComponentValidation.ValidateAll(context.AvatarRootObject));
|
||||||
|
@ -16,6 +16,6 @@
|
|||||||
},
|
},
|
||||||
"vpmDependencies": {
|
"vpmDependencies": {
|
||||||
"com.vrchat.avatars": ">=3.7.4",
|
"com.vrchat.avatars": ">=3.7.4",
|
||||||
"nadena.dev.ndmf": ">=1.7.0-rc.0 <2.0.0-a"
|
"nadena.dev.ndmf": ">=1.7.0-rc.2 <2.0.0-a"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user