Pixel-Composer/scripts/path_parser/path_parser.gml

11 lines
211 B
Plaintext
Raw Normal View History

2022-01-13 05:24:03 +01:00
function try_get_path(path) {
if(!file_exists(path)) {
var local_path = filename_dir(CURRENT_PATH) + "\\" + path;
if(file_exists(local_path))
return local_path;
else
return -1;
}
return path;
}