Pixel-Composer/scripts/__node_template/__node_template.gml

15 lines
458 B
Plaintext
Raw Normal View History

2023-10-18 14:58:55 +02:00
function Node_Template(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
name = "";
2024-03-14 14:35:19 +01:00
inputs[| 0] = nodeValue("", self, JUNCTION_CONNECT.input, VALUE_TYPE.surface, noone);
2023-10-18 14:58:55 +02:00
2024-03-14 14:35:19 +01:00
outputs[| 0] = nodeValue("", self, JUNCTION_CONNECT.output, VALUE_TYPE.surface, noone);
2023-10-18 14:58:55 +02:00
input_display_list = [ 0 ];
2024-03-14 14:35:19 +01:00
static drawOverlay = function(hover, active, _x, _y, _s, _mx, _my, _snx, _sny) {}
2023-10-18 14:58:55 +02:00
static step = function() {}
static update = function() {}
}