mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 20:45:35 +01:00
27 lines
604 B
Plaintext
27 lines
604 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 = 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) {}
|
|
} |