Pixel-Composer/scripts/node_pb_layer/node_pb_layer.gml

25 lines
701 B
Plaintext
Raw Normal View History

2023-07-21 12:40:20 +02:00
function Node_PB_Layer(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
name = "PB Layer";
icon = THEME.pixel_builder;
w = 128;
h = 128;
min_h = h;
inputs[| 0] = nodeValue("Layer", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0 );
outputs[| 0] = nodeValue("pBox", self, JUNCTION_CONNECT.output, VALUE_TYPE.pbBox, noone );
static update = function() {}
2023-08-17 16:56:54 +02:00
static getPreviewValues = function() { return group.outputs[| 0].getValue(); }
2023-07-21 12:40:20 +02:00
static onDrawNode = function(xx, yy, _mx, _my, _s, _hover, _focus) {
var bbox = drawGetBbox(xx, yy, _s)
.toSquare()
.pad(8);
draw_set_color(c_white);
draw_rectangle_border(bbox.x0, bbox.y0, bbox.x1, bbox.y1, 2);
}
}