2022-12-13 14:11:39 +01:00
|
|
|
function Node_Unicode(_x, _y, _group = -1) : Node_Value_Processor(_x, _y, _group) constructor {
|
2022-01-13 05:24:03 +01:00
|
|
|
name = "Unicode";
|
2022-11-18 03:20:31 +01:00
|
|
|
color = COLORS.node_blend_number;
|
2022-01-13 05:24:03 +01:00
|
|
|
previewable = false;
|
|
|
|
|
|
|
|
w = 96;
|
|
|
|
min_h = 0;
|
|
|
|
|
|
|
|
inputs[| 0] = nodeValue(0, "Unicode", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 64);
|
|
|
|
|
|
|
|
outputs[| 0] = nodeValue(0, "Character", self, JUNCTION_CONNECT.output, VALUE_TYPE.text, 0);
|
|
|
|
|
|
|
|
function process_value_data(_data, index = 0) {
|
|
|
|
return chr(_data[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
doUpdate();
|
|
|
|
|
|
|
|
function onDrawNode(xx, yy, _mx, _my, _s) {
|
2022-11-18 03:20:31 +01:00
|
|
|
draw_set_text(f_h5, fa_center, fa_center, COLORS._main_text);
|
2022-01-13 05:24:03 +01:00
|
|
|
draw_text(xx + w / 2 * _s, yy + 10 + h / 2 * _s, chr(inputs[| 0].getValue()));
|
|
|
|
}
|
|
|
|
}
|