mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-13 05:53:53 +01:00
24 lines
726 B
Plaintext
24 lines
726 B
Plaintext
function Node_PCX_Condition(_x, _y, _group = noone) : Node_PCX(_x, _y, _group) constructor {
|
|
name = "Condition";
|
|
|
|
newInput(0, nodeValue("Condition", self, CONNECT_TYPE.input, VALUE_TYPE.PCXnode, noone));
|
|
|
|
newInput(1, nodeValue("True", self, CONNECT_TYPE.input, VALUE_TYPE.PCXnode, noone));
|
|
|
|
newInput(2, nodeValue("False", self, CONNECT_TYPE.input, VALUE_TYPE.PCXnode, noone));
|
|
|
|
newOutput(0, nodeValue_Output("PCX", self, VALUE_TYPE.PCXnode, noone));
|
|
|
|
static update = function() {
|
|
var _cond = getInputData(0);
|
|
var _true = getInputData(1);
|
|
var _fals = getInputData(2);
|
|
|
|
var _fn = new __funcIf();
|
|
_fn.condition = _cond;
|
|
_fn.if_true = _true;
|
|
_fn.if_false = _fals;
|
|
|
|
outputs[0].setValue(_fn);
|
|
}
|
|
} |