Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Commit

Permalink
Fix pretty json output for Launcher
Browse files Browse the repository at this point in the history
  • Loading branch information
forno committed Dec 12, 2019
1 parent 342f595 commit 9563704
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Scripts/LauncherManagerScript.cs
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ public void saveJSON()
public void makeJSON()
{
//初期設定ファイルを生成
var json = JsonUtility.ToJson(new LauncherConfig());
var json = JsonUtility.ToJson(new LauncherConfig(), true);
//初期設定ファイルを書き込み
File.WriteAllText(jsonPath, json, new UTF8Encoding(false));
}
Expand Down

0 comments on commit 9563704

Please sign in to comment.