Pixel-Composer/scripts/__node_template/__node_template.gml
2023-10-18 19:58:55 +07:00

13 lines
365 B
Plaintext

function Node_Template(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
name = "";
inputs[| 0] = nodeValue("", self, JUNCTION_CONNECT.input, VALUE_TYPE.surface, 0);
outputs[| 0] = nodeValue("", self, JUNCTION_CONNECT.output, VALUE_TYPE.surface, 0);
input_display_list = [ 0 ];
static step = function() {}
static update = function() {}
}