Pixel-Composer/scripts/node_lerp/node_lerp.gml
2022-01-17 14:52:51 +07:00

33 lines
1.1 KiB
Plaintext

function Node_create_Lerp(_x, _y) {
var node = new Node_Lerp(_x, _y);
ds_list_add(PANEL_GRAPH.nodes_list, node);
return node;
}
function Node_Lerp(_x, _y) : Node_Value_Processor(_x, _y) constructor {
name = "Lerp";
color = c_ui_cyan;
previewable = false;
w = 96;
min_h = 0;
inputs[| 0] = nodeValue(1, "a", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 0);
inputs[| 1] = nodeValue(2, "b", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 0);
inputs[| 2] = nodeValue(3, "Progress", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 0)
.setDisplay(VALUE_DISPLAY.slider_range, [0, 1, .01]);
outputs[| 0] = nodeValue(0, "Result", self, JUNCTION_CONNECT.output, VALUE_TYPE.float, 0);
function process_value_data(_data, index = 0) {
return lerp(_data[0], _data[1], _data[2]);
}
function onDrawNode(xx, yy, _mx, _my, _s) {
draw_set_text(f_h5, fa_center, fa_center, c_white);
var str = "lerp";
var _ss = min((w - 8) * _s / string_width(str), (h - 8) * _s / string_height(str));
draw_text_transformed(xx + w / 2 * _s, yy + 10 + h / 2 * _s, str, _ss, _ss, 0);
}
}