2023-10-18 19:58:55 +07:00
|
|
|
function Node_Template(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
|
|
|
|
name = "";
|
|
|
|
|
2024-08-18 11:16:20 +07:00
|
|
|
newInput(0, nodeValue_Surface("", self));
|
2023-10-18 19:58:55 +07:00
|
|
|
|
2024-09-04 08:57:11 +07:00
|
|
|
newOutput(0, nodeValue_Output("", self, VALUE_TYPE.surface, noone));
|
2023-10-18 19:58:55 +07:00
|
|
|
|
|
|
|
input_display_list = [ 0 ];
|
|
|
|
|
2024-03-14 20:35:19 +07:00
|
|
|
static drawOverlay = function(hover, active, _x, _y, _s, _mx, _my, _snx, _sny) {}
|
2023-11-08 20:37:51 +07:00
|
|
|
|
2023-10-18 19:58:55 +07:00
|
|
|
static step = function() {}
|
|
|
|
|
|
|
|
static update = function() {}
|
|
|
|
}
|