Pixel-Composer/scripts/__node/__node.gml
2023-05-03 21:42:17 +02:00

27 lines
613 B
Plaintext

function __Node_Base(x, y) constructor {
self.x = x;
self.y = y;
display_name = "";
inputs = ds_list_create();
outputs = ds_list_create();
preview_index = 0;
anim_show = true;
anim_priority = -999;
static step = function() {}
static update = function(frame = ANIMATOR.current_frame) {}
static valueUpdate = function(index) {}
static triggerRender = function() {}
static onValidate = function() {}
static onDestroy = function() {}
static clearCache = function() {}
static clearCacheForward = function() {}
static serialize = function() {}
static deserialize = function(_map) {}
}