This commit is contained in:
luboslenco
2024-09-30 10:31:42 +02:00
parent 11e83a20d8
commit 123dac7823
3 changed files with 2 additions and 6 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
function import_txt(path) {
let b = data_get_blob(path);
let filename = path.split('\\').pop().split('/').pop();
let filename = path.split("\\").pop().split("/").pop();
ui_box_show_message(filename, buffer_to_string(b));
data_delete_blob(path);
}
+1 -3
View File
@@ -13,10 +13,8 @@ flags.voxels = !flags.raytrace && !flags.android && !flags.ios;
flags.with_d3dcompiler = true;
flags.with_nfd = true;
flags.with_compress = true;
flags.with_stb_image_write = true;
flags.with_g2 = true;
flags.with_image_write = true;
flags.with_iron = true;
flags.with_ui = true;
flags.with_eval = true;
let project = new Project("Base");
-2
View File
@@ -3,9 +3,7 @@ let flags = globalThis.flags;
flags.name = "ArmorPad";
flags.package = "org.armorpad";
flags.with_nfd = true;
flags.with_g2 = true;
flags.with_iron = true;
flags.with_ui = true;
let project = new Project("ArmorPad");
project.add_tsfiles("sources");