mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-14 14:33:53 +01:00
25 lines
622 B
Plaintext
25 lines
622 B
Plaintext
function Node_Print(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
|
|
name = "Print";
|
|
setDimension(96, 32 + 24 * 1);
|
|
|
|
draw_padding = 8;
|
|
|
|
newInput(0, nodeValue_Bool("Active", self, true));
|
|
|
|
newInput(1, nodeValue_Text("Text", self, ""));
|
|
|
|
static update = function() {
|
|
var act = getInputData(0);
|
|
var txt = getInputData(1);
|
|
|
|
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);
|
|
|
|
draw_set_text(f_p0, fa_center, fa_center, COLORS._main_text);
|
|
draw_text_bbox(bbox, txt);
|
|
}
|
|
} |