Pixel-Composer/scripts/node_lerp/node_lerp.gml

27 lines
1016 B
Plaintext
Raw Normal View History

2023-02-28 09:43:01 +01:00
function Node_Lerp(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
name = "Lerp";
2022-11-18 03:20:31 +01:00
color = COLORS.node_blend_number;
previewable = false;
w = 96;
2023-02-14 05:32:32 +01:00
inputs[| 0] = nodeValue("a", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 0);
inputs[| 1] = nodeValue("b", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 0);
inputs[| 2] = nodeValue("Progress", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 0)
.setDisplay(VALUE_DISPLAY.slider_range, [0, 1, .01]);
2023-02-14 05:32:32 +01:00
outputs[| 0] = nodeValue("Result", self, JUNCTION_CONNECT.output, VALUE_TYPE.float, 0);
2023-08-17 16:56:54 +02:00
static processData = function(_output, _data, _output_index, _array_index = 0) {
return lerp(_data[0], _data[1], _data[2]);
}
2023-03-05 07:16:44 +01:00
static onDrawNode = function(xx, yy, _mx, _my, _s, _hover, _focus) {
2022-11-18 03:20:31 +01:00
draw_set_text(f_h5, fa_center, fa_center, COLORS._main_text);
var str = "lerp";
2023-01-04 02:30:04 +01:00
var bbox = drawGetBbox(xx, yy, _s);
var ss = string_scale(str, bbox.w, bbox.h);
draw_text_transformed(bbox.xc, bbox.yc, str, ss, ss, 0);
}
}