Skip to content

Instantly share code, notes, and snippets.

@mofukuma
Last active December 16, 2015 02:29
Show Gist options
  • Save mofukuma/5363276 to your computer and use it in GitHub Desktop.
Save mofukuma/5363276 to your computer and use it in GitHub Desktop.
C# Unity(jsonfx使用時)
WWW www = new WWW ("http://mfk.sakura.ne.jp/sblo_files/kumaden/image/transdb.json");
yield www;
var langdb = JsonFx.Json.JsonReader.Deserialize<LangDB>(www.text);
Debug.Log( langdb.JA["FREE to download"] );
//----
[System.Serializable]
public class LangDB
{
public Dictionary<string, Dictionary<string, string>> EN;
public Dictionary<string, Dictionary<string, string>> JA;
//....
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment