Pixel-Composer/scripts/node_array_copy/node_array_copy.gml
2024-03-31 10:36:11 +07:00

41 lines
1.1 KiB
Plaintext

function Node_Array_Copy(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
name = "Array Copy";
setDimension(96, 32 + 24);
inputs[| 0] = nodeValue("Array", self, JUNCTION_CONNECT.input, VALUE_TYPE.any, 0)
.setArrayDepth(1)
.setVisible(true, true);
inputs[| 1] = nodeValue("Starting Index", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0);
inputs[| 2] = nodeValue("Size", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 1);
outputs[| 0] = nodeValue("Array", self, JUNCTION_CONNECT.output, VALUE_TYPE.any, 0)
.setArrayDepth(1);
static step = function() {
var _typ = VALUE_TYPE.any;
if(inputs[| 0].value_from != noone) _typ = inputs[| 0].value_from.type;
inputs[| 0].setType(_typ);
outputs[| 0].setType(_typ);
}
static update = function(frame = CURRENT_FRAME) {
var _arr = getInputData(0);
var _ind = getInputData(1);
var _siz = getInputData(2);
if(!is_array(_arr)) return;
var res = [];
for( var i = 0; i < _siz; i++ )
res[i] = array_safe_get_fast(_arr, _ind + i);
outputs[| 0].setValue(res);
}
static onDrawNode = function(xx, yy, _mx, _my, _s, _hover, _focus) {
}
}