mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-11 04:54:06 +01:00
34 lines
1.0 KiB
Plaintext
34 lines
1.0 KiB
Plaintext
function Node_String_Join(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
|
|
name = "Join Text";
|
|
previewable = false;
|
|
|
|
w = 96;
|
|
|
|
inputs[| 0] = nodeValue("Text array", self, JUNCTION_CONNECT.input, VALUE_TYPE.text, [])
|
|
.setVisible(true, true);
|
|
|
|
inputs[| 1] = nodeValue("Divider", self, JUNCTION_CONNECT.input, VALUE_TYPE.text, "")
|
|
.rejectArray();
|
|
inputs[| 1].editWidget.format = TEXT_AREA_FORMAT.delimiter;
|
|
|
|
outputs[| 0] = nodeValue("Text", self, JUNCTION_CONNECT.output, VALUE_TYPE.text, "");
|
|
|
|
static update = function() {
|
|
var _arr = inputs[| 0].getValue();
|
|
var _div = inputs[| 1].getValue();
|
|
var str = "";
|
|
|
|
for( var i = 0, n = array_length(_arr); i < n; i++ )
|
|
str += (i? _div : "") + string(_arr[i]);
|
|
|
|
outputs[| 0].setValue(str);
|
|
}
|
|
|
|
static onDrawNode = function(xx, yy, _mx, _my, _s, _hover, _focus) {
|
|
var str = outputs[| 0].getValue();
|
|
var bbox = drawGetBbox(xx, yy, _s);
|
|
|
|
draw_set_text(f_h5, fa_center, fa_center, COLORS._main_text);
|
|
draw_text_bbox(bbox, str);
|
|
}
|
|
} |