Pixel-Composer/scripts/node_terminal_trigger/node_terminal_trigger.gml

15 lines
447 B
Plaintext
Raw Normal View History

2024-02-11 13:22:20 +01:00
function Node_Terminal_Trigger(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
name = "Terminal Trigger";
w = 96;
min_h = 32 + 24 * 1;
draw_padding = 8;
outputs[| 0] = nodeValue("Terminal", self, JUNCTION_CONNECT.output, VALUE_TYPE.trigger, noone);
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);
}
}