Pixel-Composer/scripts/node_move_point/node_move_point.gml

41 lines
1.2 KiB
Plaintext
Raw Normal View History

2023-04-16 15:26:52 +02:00
function Node_Move_Point(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
name = "Translate Point";
color = COLORS.node_blend_number;
2024-05-02 11:05:02 +02:00
setDimension(96, 48);
2023-04-16 15:26:52 +02:00
2024-08-18 09:13:41 +02:00
newInput(0, nodeValue_Vec2("Point", self, [ 0, 0, ]))
2023-04-16 15:26:52 +02:00
.setVisible(true, true);
2024-08-18 06:16:20 +02:00
newInput(1, nodeValue_Enum_Scroll("Mode", self, 0, [ "XY Shift", "Direction + Distance" ]));
2023-04-16 15:26:52 +02:00
2024-08-18 06:16:20 +02:00
newInput(2, nodeValue_Vec2("Shift", self, [ 0, 0 ]));
2023-04-16 15:26:52 +02:00
2024-08-18 06:16:20 +02:00
newInput(3, nodeValue_Rotation("Direction", self, 0));
2023-04-16 15:26:52 +02:00
2024-08-18 06:16:20 +02:00
newInput(4, nodeValue_Float("Distance", self, 4 ));
2023-04-16 15:26:52 +02:00
2024-09-04 03:57:11 +02:00
newOutput(0, nodeValue_Output("Result", self, VALUE_TYPE.float, [ 0, 0 ]))
2023-04-16 15:26:52 +02:00
.setDisplay(VALUE_DISPLAY.vector);
static step = function() {
var _mode = getInputData(1);
2023-04-16 15:26:52 +02:00
2024-08-08 06:57:51 +02:00
inputs[2].setVisible(_mode == 0);
inputs[3].setVisible(_mode == 1);
inputs[4].setVisible(_mode == 1);
2023-04-16 15:26:52 +02:00
}
2023-08-17 16:56:54 +02:00
static processData = function(_output, _data, _output_index, _array_index = 0) {
2023-04-16 15:26:52 +02:00
var _pnt = _data[0];
var _mode = _data[1];
var _shf = _data[2];
var _dirr = _data[3];
var _diss = _data[4];
if(_mode == 0)
return [ _pnt[0] + _shf[0], _pnt[1] + _shf[1] ];
else if(_mode == 1)
return [ _pnt[0] + lengthdir_x(_diss, _dirr), _pnt[1] + lengthdir_y(_diss, _dirr) ];
}
}