コード例 #1
0
        public void Command(Dictionary <string, string> command)
        {
            var fileName   = command["image"];
            var objectName = command["name"];

            var obj = Array.Find <GameObject>(GameObject.FindGameObjectsWithTag("Layer"), item => item.name == objectName);

            obj.GetComponent <Layer>().UpdateTexture(TextureresourceManager.Load(fileName));
        }
コード例 #2
0
        public void PreCommand(Dictionary <string, string> command)
        {
            var fileName = command["image"];

            TextureresourceManager.Load(fileName);
        }