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); } } }