fix: compatibility issue with lilycalInventory

The early animator cloning logic was dropped in refactoring, put it back.
This commit is contained in:
bd_ 2025-03-30 10:58:36 -07:00
parent b75e74ef84
commit 2333484711
3 changed files with 9 additions and 0 deletions

View File

@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
### Fixed
- [#1531] lylicalInventoryとの互換性問題を修正
### Changed

View File

@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
### Fixed
- [#1531] Fix compatibility issue with lylicalInventory
### Changed

View File

@ -38,6 +38,13 @@ namespace nadena.dev.modular_avatar.core.editor.plugin
Sequence seq = InPhase(BuildPhase.Resolving);
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.Run("Validate configuration",
context => ComponentValidation.ValidateAll(context.AvatarRootObject));