mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-26 15:06:22 +01:00
10 lines
No EOL
207 B
Text
10 lines
No EOL
207 B
Text
function try_get_path(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 -1;
|
|
} |