Pixel-Composer/scripts/node_module_test/node_module_test.gml
2024-05-23 15:59:39 +07:00

29 lines
924 B
Plaintext

function Node_Module_SubModule(parent) : NodeModule(parent) constructor {
inputs[| 0] = nodeValue("Module input 0", parent, JUNCTION_CONNECT.input, VALUE_TYPE.surface, noone);
inputs[| 1] = nodeValue("Module input 1", parent, JUNCTION_CONNECT.input, VALUE_TYPE.text, "");
}
function Node_Module_Test(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
name = "Module test";
inputs[| 0] = nodeValue("Static input", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 0);
outputs[| 0] = nodeValue("Output", self, JUNCTION_CONNECT.output, VALUE_TYPE.float, 0);
//input_display_list = [ 0 ];
setDynamicInput(1);
static createNewInput = function() { #region
var index = ds_list_size(inputs);
inputs[| index] = new Node_Module_SubModule(self);
return inputs[| index];
} if(!LOADING && !APPENDING) createNewInput(); #endregion
static step = function() {}
static update = function() {}
}