Pixel-Composer/scripts/node_grey_alpha/node_grey_alpha.gml
2024-08-18 11:16:20 +07:00

39 lines
1.1 KiB
Plaintext

function Node_Grey_Alpha(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
name = "Grey to Alpha";
newInput(0, nodeValue_Surface("Surface in", self));
newInput(1, nodeValue_Bool("Replace color", self, true, "Replace output with solid color."));
newInput(2, nodeValue_Color("Color", self, c_white));
newInput(3, nodeValue_Bool("Active", self, true));
active_index = 3;
outputs[0] = nodeValue_Output("Surface out", self, VALUE_TYPE.surface, noone);
input_display_list = [ 3, 0,
["Replace Color", false, 1], 2,
]
attribute_surface_depth();
static step = function() { #region
var _replace = getInputData(1);
inputs[2].setVisible(_replace);
} #endregion
static processData = function(_outSurf, _data, _output_index, _array_index) { #region
var _replace = getInputData(1);
var _color = getInputData(2);
surface_set_shader(_outSurf, sh_grey_alpha);
shader_set_i("replace", _replace);
shader_set_color("color", _color);
draw_surface_safe(_data[0]);
surface_reset_shader();
return _outSurf;
} #endregion
}