Pixel-Composer/scripts/__node_template/__node_template.gml
2024-09-04 08:57:11 +07:00

15 lines
395 B
Plaintext

function Node_Template(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
name = "";
newInput(0, nodeValue_Surface("", self));
newOutput(0, nodeValue_Output("", self, VALUE_TYPE.surface, noone));
input_display_list = [ 0 ];
static drawOverlay = function(hover, active, _x, _y, _s, _mx, _my, _snx, _sny) {}
static step = function() {}
static update = function() {}
}