2023-11-22 10:21:50 +01:00
|
|
|
function Node_MK_Balls(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
|
2023-11-16 02:49:52 +01:00
|
|
|
name = "Pixel Cloud";
|
|
|
|
|
|
|
|
inputs[| 0] = nodeValue("Surface in", self, JUNCTION_CONNECT.input, VALUE_TYPE.surface, 0);
|
2023-11-18 11:49:25 +01:00
|
|
|
|
2023-11-18 03:47:11 +01:00
|
|
|
input_display_list = [ ];
|
2023-11-16 02:49:52 +01:00
|
|
|
|
|
|
|
outputs[| 0] = nodeValue("Surface out", self, JUNCTION_CONNECT.output, VALUE_TYPE.surface, noone);
|
|
|
|
|
|
|
|
attribute_surface_depth();
|
|
|
|
|
|
|
|
static processData = function(_outSurf, _data, _output_index, _array_index) {
|
2023-11-18 03:47:11 +01:00
|
|
|
var _sed = _data[0];
|
2023-11-16 02:49:52 +01:00
|
|
|
return _outSurf;
|
|
|
|
}
|
|
|
|
}
|