We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f3c6ca commit bcfb086Copy full SHA for bcfb086
Assets/com.alelievr.NodeGraphProcessor/Runtime/Utils/SerrializableObject.cs
@@ -76,7 +76,7 @@ public void OnBeforeSerialize()
76
serializedType = value.GetType().AssemblyQualifiedName;
77
78
if (value.GetType().IsPrimitive)
79
- serializedValue = value.ToString();
+ serializedValue = Convert.ToString(value, CultureInfo.InvariantCulture);
80
else if (value is UnityEngine.Object) //type is a unity object
81
{
82
if ((value as UnityEngine.Object) == null)
0 commit comments