Pixel-Composer/scripts/node_terminal_trigger/node_terminal_trigger.gml

14 lines
426 B
Text
Raw Normal View History

2024-02-11 19:22:20 +07:00
function Node_Terminal_Trigger(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
name = "Terminal Trigger";
2024-03-28 20:18:02 +07:00
setDimension(96, 32 + 24 * 1);
2024-02-11 19:22:20 +07:00
draw_padding = 8;
2024-09-04 08:57:11 +07:00
newOutput(0, nodeValue_Output("Terminal", self, VALUE_TYPE.trigger, false ));
2024-02-11 19:22:20 +07:00
static onDrawNode = function(xx, yy, _mx, _my, _s, _hover, _focus) {
var bbox = drawGetBbox(xx, yy, _s);
draw_sprite_bbox(s_node_terminal_trigger, 0, bbox);
}
}