mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-14 14:33:53 +01:00
15 lines
458 B
Plaintext
15 lines
458 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, noone);
|
|
|
|
outputs[| 0] = nodeValue("", self, JUNCTION_CONNECT.output, 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() {}
|
|
} |