2023-03-07 14:29:47 +01:00
|
|
|
function __Node_Base(x, y) constructor {
|
|
|
|
self.x = x;
|
|
|
|
self.y = y;
|
|
|
|
|
2023-05-03 21:42:17 +02:00
|
|
|
display_name = "";
|
2023-03-07 14:29:47 +01:00
|
|
|
inputs = ds_list_create();
|
|
|
|
outputs = ds_list_create();
|
2023-10-15 15:04:42 +02:00
|
|
|
input_value_map = {};
|
2023-03-07 14:29:47 +01:00
|
|
|
|
2023-10-12 12:25:38 +02:00
|
|
|
active_index = -1;
|
|
|
|
preview_index = 0;
|
|
|
|
anim_priority = -999;
|
2023-03-07 14:29:47 +01:00
|
|
|
|
|
|
|
static step = function() {}
|
2023-10-09 16:07:33 +02:00
|
|
|
static update = function(frame = CURRENT_FRAME) {}
|
2023-03-07 14:29:47 +01:00
|
|
|
|
|
|
|
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) {}
|
|
|
|
}
|