mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-13 05:53:53 +01:00
32 lines
938 B
Plaintext
32 lines
938 B
Plaintext
function Node_String_Merge(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
|
|
name = "Combine Text";
|
|
|
|
setDimension(96, 48);
|
|
|
|
outputs[| 0] = nodeValue("Text", self, JUNCTION_CONNECT.output, VALUE_TYPE.text, "");
|
|
|
|
static createNewInput = function() {
|
|
var index = ds_list_size(inputs);
|
|
|
|
inputs[| index] = nodeValue("Text", self, JUNCTION_CONNECT.input, VALUE_TYPE.text, "" )
|
|
.setVisible(true, true);
|
|
|
|
return inputs[| index];
|
|
} setDynamicInput(1, true, VALUE_TYPE.text);
|
|
|
|
static processData = function(_output, _data, _index = 0) {
|
|
var _str = "";
|
|
for( var i = 0, n = array_length(_data); i < n; i++ )
|
|
_str += _data[i];
|
|
|
|
return _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_sdf, fa_center, fa_center, COLORS._main_text);
|
|
draw_text_bbox(bbox, _str);
|
|
}
|
|
} |