mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-14 06:23:55 +01:00
13 lines
365 B
Plaintext
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() {}
|
|
} |