Pixel-Composer/scripts/__node/__node.gml

24 lines
551 B
Plaintext
Raw Normal View History

2023-03-07 14:29:47 +01:00
function __Node_Base(x, y) constructor {
self.x = x;
self.y = y;
inputs = ds_list_create();
outputs = ds_list_create();
preview_index = 0;
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) {}
}