From d3ae37c3cf7b4f9f902c886331da68202b608c09 Mon Sep 17 00:00:00 2001 From: bd_ Date: Sun, 16 Feb 2025 16:54:44 -0800 Subject: [PATCH] fix: RCs can't be used in conjunction with custom animations Closes: #1440 --- .../ReactiveObjectAnalyzer.LocateReactions.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Editor/ReactiveObjects/AnimationGeneration/ReactiveObjectAnalyzer.LocateReactions.cs b/Editor/ReactiveObjects/AnimationGeneration/ReactiveObjectAnalyzer.LocateReactions.cs index 2f804945..01e12505 100644 --- a/Editor/ReactiveObjects/AnimationGeneration/ReactiveObjectAnalyzer.LocateReactions.cs +++ b/Editor/ReactiveObjects/AnimationGeneration/ReactiveObjectAnalyzer.LocateReactions.cs @@ -250,11 +250,6 @@ namespace nadena.dev.modular_avatar.core.editor { info = new AnimatedProperty(key, currentValue); shapeKeys[key] = info; - - // Add initial state - var agk = new ReactionRule(key, value); - agk.Value = currentValue; - info.actionGroups.Add(agk); } var action = ObjectRule(key, changer, value);