Pixel-Composer/scripts/path_parser/path_parser.gml
2024-05-16 15:37:44 +07:00

24 lines
490 B
Plaintext

function __path_get(path) {
INLINE
if(directory_exists(path)) return path;
if(file_exists_empty(path)) return path;
var local_path = $"{filename_dir(PROJECT.path)}/{path}";
if(file_exists_empty(local_path))
return local_path;
return "";
}
function path_get(path) {
INLINE
if(!is_array(path)) return __path_get(path);
var _res = array_create(array_length(path));
for( var i = 0, n = array_length(path); i < n; i++ )
_res[i] = __path_get(path[i]);
return _res;
}