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 956d0ac commit d738655Copy full SHA for d738655
Assets/JCSUnity/Scripts/SaveLoad/JCS_JSONData.cs
@@ -53,7 +53,7 @@ public override void Save<T>(string fullFilePath)
53
54
using (var stream = new FileStream(fullFilePath, FileMode.Create))
55
{
56
- string json = JsonConvert.SerializeObject(this);
+ string json = JsonConvert.SerializeObject(this, Formatting.Indented);
57
byte[] info = new UTF8Encoding(true).GetBytes(json);
58
stream.Write(info, 0, info.Length);
59
}
0 commit comments