diff --git a/Runtime/Values/BaseValue.cs b/Runtime/Values/BaseValue.cs index 33a2dae..6ea3c5d 100644 --- a/Runtime/Values/BaseValue.cs +++ b/Runtime/Values/BaseValue.cs @@ -60,8 +60,8 @@ protected static T SerializedCopyInEditor(T originalValue) #if UNITY_EDITOR return SerializationHelper.CreateCopy(originalValue); #else - return value; + return originalValue; #endif } } -} \ No newline at end of file +}