diff --git a/Runtime/Core/Animation/UISizeDelta.cs b/Runtime/Core/Animation/UISizeDelta.cs index 8355bdb..ab87327 100644 --- a/Runtime/Core/Animation/UISizeDelta.cs +++ b/Runtime/Core/Animation/UISizeDelta.cs @@ -31,6 +31,11 @@ namespace AlicizaX.AnimationFlow.Runtime target.sizeDelta = from; } + if (Condition()) + { + target.sizeDelta = to; + } + enterValue = target.sizeDelta; } @@ -58,6 +63,5 @@ namespace AlicizaX.AnimationFlow.Runtime { return target != null ? target.name : null; } - } }