mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-25 14:36:13 +01:00
10 lines
No EOL
196 B
Text
10 lines
No EOL
196 B
Text
function try_get_path(path) {
|
|
if(file_exists(path))
|
|
return path;
|
|
|
|
var local_path = filename_dir(CURRENT_PATH) + "\\" + path;
|
|
if(file_exists(local_path))
|
|
return local_path;
|
|
|
|
return -1;
|
|
} |