少年修仙传客户端基础资源
client_Wu Xijin
2019-05-15 e47f9fa871936ee22220d7dcb1906a9a1b517779
Assets/Editor/Tool/LuaBuildHelper.cs
@@ -19,7 +19,7 @@
            if (extension == ".lua")
            {
                var to = Path.ChangeExtension(from, ".txt");
                File.Copy(from, to, true);
                File.Move(from, to);
            }
        }
@@ -39,7 +39,8 @@
            var extension = Path.GetExtension(file);
            if (extension == ".txt")
            {
                File.Delete(file);
                var to = Path.ChangeExtension(file, ".lua");
                File.Move(file, to);
            }
        }
    }