Pixel-Composer/scripts/node_tile/node_tile.gml

15 lines
483 B
Plaintext
Raw Normal View History

function Node_Tile(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
name = "Tile";
2024-08-07 11:48:39 +02:00
inputs[| 0] = nodeValue_Surface("Base texture", self);
2024-08-07 11:48:39 +02:00
inputs[| 1] = nodeValue_Surface("Border texture", self);
2024-03-14 14:35:19 +01:00
outputs[| 0] = nodeValue("", self, JUNCTION_CONNECT.output, VALUE_TYPE.surface, noone);
input_display_list = [ 0 ];
static step = function() {}
static processData = function(_outSurf, _data, _output_index, _array_index = 0) { return _outSurf; }
}