Unity/Csharp/Ini
提供: 初心者エンジニアの簡易メモ
Ini読み込みサンプル
プラグインを使わないタイプ
http://tech.hikware.com/article/20170817a.html
iniファイル呼び出し
string configPath = System.IO.Directory.GetCurrentDirectory() + Const.CONFIG_PATH; if (!System.IO.File.Exists(configPath)) { Debug.LogError("not file"); return; } IniFileReader reader = new IniFileReader(configPath); reader.SetSection("section1"); if (value == null) { Debug.LogError("key=null"); return; } string path = reader.GetValue("key1");