Pixel-Composer/scripts/node_PCX_var/node_PCX_var.gml
2024-08-08 11:57:51 +07:00

16 lines
473 B
Plaintext

function Node_PCX_var(_x, _y, _group = noone) : Node_PCX(_x, _y, _group) constructor {
name = "Variable";
inputs[0] = nodeValue_Text("Name", self, "");
inputs[1] = nodeValue("Value", self, JUNCTION_CONNECT.input, VALUE_TYPE.any, -1);
outputs[0] = nodeValue_Output("PCX", self, VALUE_TYPE.PCXnode, noone);
static update = function() {
var _name = getInputData(0);
var _val = getInputData(1);
outputs[0].setValue(new __funcTree("=", _name, _val));
}
}