コード例 #1
0
        private static void ColorSettingsExport()
        {
            string path = EditorUtility.SaveFilePanel("Export", "", TagsManager.savingFileName, "bytes");

            if (path == null || path == "")
            {
                return;
            }
            TagsManager.Save(path);
            Debug.Log("Export successfully");
        }