-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Description
It looks like there might be a typo in BaseValue.SerializedCopyInEditor() - perhaps return value should be return originalValue?
Here's the relevant compilation error:
Library\PackageCache\[email protected]\Runtime\Values\BaseValue.cs(63,20): error CS0103: The name 'value' does not exist in the current context
Here's the affected section of code in BaseValue.cs:
protected static T SerializedCopyInEditor<T>(T originalValue)
{
#if UNITY_EDITOR
return SerializationHelper.CreateCopy(originalValue);
#else
return value;
#endif
}
Walter-Hulsebos, gbegher, szunami, CharlieHess and j-schoch
Metadata
Metadata
Assignees
Labels
No labels
