mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-13 05:53:53 +01:00
10 lines
195 B
Plaintext
10 lines
195 B
Plaintext
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;
|
|
} |