Fix blend import path

This commit is contained in:
luboslenco
2025-07-30 12:34:31 +02:00
parent 6d79d0c267
commit e8acccd50c
+2 -6
View File
@@ -31,14 +31,10 @@ function import_blend_mesh_run(path: string, replace_existing: bool = true) {
return;
}
let save: string;
let save: string = "tmp.obj";
if (path_is_protected()) {
save = iron_internal_save_path();
save = iron_internal_save_path() + save;
}
else {
save = path_data();
}
save += "tmp.obj";
///if arm_windows
path = string_replace_all(path, "\\", "\\\\");