Pixel-Composer/scripts/node_print/node_print.gml

25 lines
699 B
Plaintext
Raw Normal View History

2023-06-01 10:45:02 +02:00
function Node_Print(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
2024-02-11 13:22:20 +01:00
name = "Print";
2024-03-28 14:18:02 +01:00
setDimension(96, 32 + 24 * 1);
2024-02-11 13:22:20 +01:00
2023-06-01 10:45:02 +02:00
draw_padding = 8;
inputs[| 0] = nodeValue("Active", self, JUNCTION_CONNECT.input, VALUE_TYPE.boolean, true);
inputs[| 1] = nodeValue("Text", self, JUNCTION_CONNECT.input, VALUE_TYPE.text, "");
static update = function() {
var act = getInputData(0);
var txt = getInputData(1);
2023-06-01 10:45:02 +02:00
if(act) noti_status(txt);
}
static onDrawNode = function(xx, yy, _mx, _my, _s, _hover, _focus) {
var bbox = drawGetBbox(xx, yy, _s);
var txt = getInputData(1);
2023-06-01 10:45:02 +02:00
draw_set_text(f_p0, fa_center, fa_center, COLORS._main_text);
draw_text_bbox(bbox, txt);
}
}