Array nodes, increase max shape to 1024

This commit is contained in:
MakhamDev 2022-01-19 11:26:59 +07:00
parent 084b1afb5a
commit 68c9d3a909
2 changed files with 17 additions and 391 deletions

File diff suppressed because one or more lines are too long

View file

@ -4,7 +4,7 @@ function NEW() {
room_restart();
gc_collect();
CURRENT_PATH = "";
setPath("");
}
function clearNodes() {
@ -46,6 +46,10 @@ function save_serialize() {
}
function SET_PATH(path) {
if(path == "") {
READONLY = false;
window_set_caption("Pixel Composer");
} else {
if(READONLY)
window_set_caption("[READ ONLY] " + filename_name(path) + " - Pixel Composer");
else {
@ -58,6 +62,7 @@ function SET_PATH(path) {
}
window_set_caption(filename_name(path) + " - Pixel Composer");
}
}
CURRENT_PATH = path;
}