2024-01-12 05:03:35 +01:00
|
|
|
function Node_Offset(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
|
|
|
|
name = "Offset";
|
|
|
|
|
2024-08-18 06:16:20 +02:00
|
|
|
newInput(0, nodeValue_Surface("Surface in", self));
|
2024-01-12 05:03:35 +01:00
|
|
|
|
2024-08-18 09:13:41 +02:00
|
|
|
newInput(1, nodeValue_Float("X Offset", self, 0.5))
|
2024-01-12 05:03:35 +01:00
|
|
|
.setDisplay(VALUE_DISPLAY.slider);
|
|
|
|
|
2024-08-18 09:13:41 +02:00
|
|
|
newInput(2, nodeValue_Float("Y Offset", self, 0.5))
|
2024-01-12 05:03:35 +01:00
|
|
|
.setDisplay(VALUE_DISPLAY.slider);
|
|
|
|
|
2024-08-18 06:16:20 +02:00
|
|
|
newInput(3, nodeValue_Bool("Active", self, true));
|
2024-01-12 05:03:35 +01:00
|
|
|
active_index = 3;
|
|
|
|
|
|
|
|
input_display_list = [ 3,
|
|
|
|
["Surfaces", true], 0,
|
|
|
|
["Offset", false], 1, 2,
|
|
|
|
]
|
|
|
|
|
2024-08-08 06:57:51 +02:00
|
|
|
outputs[0] = nodeValue_Output("Surface out", self, VALUE_TYPE.surface, noone);
|
2024-01-12 05:03:35 +01:00
|
|
|
|
|
|
|
attribute_surface_depth();
|
|
|
|
|
|
|
|
static processData = function(_outSurf, _data, _output_index, _array_index) {
|
|
|
|
|
|
|
|
surface_set_shader(_outSurf, sh_offset);
|
|
|
|
shader_set_f("offset", _data[1], _data[2]);
|
|
|
|
|
|
|
|
draw_surface_safe(_data[0]);
|
|
|
|
surface_reset_shader();
|
|
|
|
|
|
|
|
return _outSurf;
|
|
|
|
}
|
|
|
|
}
|