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 0655025 commit 765dbf7Copy full SHA for 765dbf7
JSONSerializerPackage/Assets/Code/JSONTester.cs
@@ -27,11 +27,13 @@ public void WriteExample()
27
{
28
JSON writeJSON = new JSON();
29
30
- writeJSON.AddBool("myBool", false);
+ writeJSON.AddBool("myBool", true);
31
writeJSON.AddInt("myInt", 987);
32
writeJSON.AddFloat("myFloat", 654.321f);
33
writeJSON.AddString("myStr", "What's up, World!");
34
35
+ writeJSON.SetBool("myBool", false);
36
+
37
writeJSON.WriteToFile(writeFile);
38
}
39
0 commit comments