From 2333484711e43cbb3a3f4812c4e38284b92fb8dc Mon Sep 17 00:00:00 2001 From: bd_ Date: Sun, 30 Mar 2025 10:58:36 -0700 Subject: [PATCH] fix: compatibility issue with lilycalInventory The early animator cloning logic was dropped in refactoring, put it back. --- CHANGELOG-PRERELEASE-jp.md | 1 + CHANGELOG-PRERELEASE.md | 1 + Editor/PluginDefinition/PluginDefinition.cs | 7 +++++++ 3 files changed, 9 insertions(+) diff --git a/CHANGELOG-PRERELEASE-jp.md b/CHANGELOG-PRERELEASE-jp.md index 040d37a1..d91fb047 100644 --- a/CHANGELOG-PRERELEASE-jp.md +++ b/CHANGELOG-PRERELEASE-jp.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added ### Fixed +- [#1531] lylicalInventoryとの互換性問題を修正 ### Changed diff --git a/CHANGELOG-PRERELEASE.md b/CHANGELOG-PRERELEASE.md index 10d91175..eeb325be 100644 --- a/CHANGELOG-PRERELEASE.md +++ b/CHANGELOG-PRERELEASE.md @@ -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 diff --git a/Editor/PluginDefinition/PluginDefinition.cs b/Editor/PluginDefinition/PluginDefinition.cs index a4708308..54f9f093 100644 --- a/Editor/PluginDefinition/PluginDefinition.cs +++ b/Editor/PluginDefinition/PluginDefinition.cs @@ -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));