Cleanup
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
function import_txt(path) {
|
function import_txt(path) {
|
||||||
let b = data_get_blob(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));
|
ui_box_show_message(filename, buffer_to_string(b));
|
||||||
data_delete_blob(path);
|
data_delete_blob(path);
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-3
@@ -13,10 +13,8 @@ flags.voxels = !flags.raytrace && !flags.android && !flags.ios;
|
|||||||
flags.with_d3dcompiler = true;
|
flags.with_d3dcompiler = true;
|
||||||
flags.with_nfd = true;
|
flags.with_nfd = true;
|
||||||
flags.with_compress = true;
|
flags.with_compress = true;
|
||||||
flags.with_stb_image_write = true;
|
flags.with_image_write = true;
|
||||||
flags.with_g2 = true;
|
|
||||||
flags.with_iron = true;
|
flags.with_iron = true;
|
||||||
flags.with_ui = true;
|
|
||||||
flags.with_eval = true;
|
flags.with_eval = true;
|
||||||
|
|
||||||
let project = new Project("Base");
|
let project = new Project("Base");
|
||||||
|
|||||||
@@ -3,9 +3,7 @@ let flags = globalThis.flags;
|
|||||||
flags.name = "ArmorPad";
|
flags.name = "ArmorPad";
|
||||||
flags.package = "org.armorpad";
|
flags.package = "org.armorpad";
|
||||||
flags.with_nfd = true;
|
flags.with_nfd = true;
|
||||||
flags.with_g2 = true;
|
|
||||||
flags.with_iron = true;
|
flags.with_iron = true;
|
||||||
flags.with_ui = true;
|
|
||||||
|
|
||||||
let project = new Project("ArmorPad");
|
let project = new Project("ArmorPad");
|
||||||
project.add_tsfiles("sources");
|
project.add_tsfiles("sources");
|
||||||
|
|||||||
Reference in New Issue
Block a user