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