mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-01-26 04:48:17 +01:00
Array nodes, increase max shape to 1024
This commit is contained in:
parent
084b1afb5a
commit
68c9d3a909
2 changed files with 17 additions and 391 deletions
File diff suppressed because one or more lines are too long
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue