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

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);
}
}