예제 #1
0
    public void SaveToFile()
    {
        Dictionary <string, KeyCode[]> dic = new Dictionary <string, KeyCode[]>();

        foreach (var item in Bindings)
        {
            dic.Add(item.Name, item.Keys);
        }
        GameIO.ObjectToResource(dic, GameIO.DefaultInputPath);
        Debug.Log(string.Format("Saved {0} inputs to '{1}'", Bindings.Count, GameIO.FullResourcePath(GameIO.DefaultInputPath)));
    }