diff --git a/.github/ProjectRoot/vpm-manifest-2022.json b/.github/ProjectRoot/vpm-manifest-2022.json index 29f05d5d..3414a604 100644 --- a/.github/ProjectRoot/vpm-manifest-2022.json +++ b/.github/ProjectRoot/vpm-manifest-2022.json @@ -4,7 +4,7 @@ "version": "3.7.4" }, "nadena.dev.ndmf": { - "version": "1.7.0-beta.0" + "version": "1.7.0-rc.2" } }, "locked": { @@ -19,7 +19,7 @@ "dependencies": {} }, "nadena.dev.ndmf": { - "version": "1.7.0-beta.0" + "version": "1.7.0-rc.2" } } } \ No newline at end of file diff --git a/CHANGELOG-PRERELEASE-jp.md b/CHANGELOG-PRERELEASE-jp.md index 5f348413..f099295c 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 - [#1530] `MA Menu Item`の自動パラメーター機能も、オブジェクトのパスに基づいて名前を割り当てるようになりました。 diff --git a/CHANGELOG-PRERELEASE.md b/CHANGELOG-PRERELEASE.md index c215cd47..00e2b169 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 - [#1530] `MA Menu Item` auto parameters now also assign names based on object paths 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)); diff --git a/package.json b/package.json index 5c6b2f54..6990d11f 100644 --- a/package.json +++ b/package.json @@ -16,6 +16,6 @@ }, "vpmDependencies": { "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" } }