1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-12 13:20:55 +00:00

-WIP Exporter to Godot 3.0, only text scenes (no .scn) and still kind of buggy

This commit is contained in:
Juan Linietsky
2017-02-12 22:52:02 -03:00
parent 6abe141579
commit ebb7d2cdb7
17 changed files with 2398 additions and 69 deletions

View File

@@ -178,9 +178,9 @@ Error DirAccess::make_dir_recursive(String p_dir) {
for(int i=0;i<subdirs.size();i++) {
curpath=curpath.plus_file(subdirs[i]);
Error err = make_dir(curpath);
if (err != OK && err != ERR_ALREADY_EXISTS) {
ERR_FAIL_V(err);
}
}