2024-01-07 12:18:20 +01:00
|
|
|
function Node_MK_Flame(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
|
|
|
|
name = "MK Flame";
|
|
|
|
update_on_frame = true;
|
|
|
|
|
2024-08-07 11:48:39 +02:00
|
|
|
inputs[| 0] = nodeValue_Dimension(self);
|
2024-01-07 12:18:20 +01:00
|
|
|
|
2024-08-07 11:48:39 +02:00
|
|
|
inputs[| 1] = nodeValue_Rotation("Direction", self, 45);
|
2024-01-07 12:18:20 +01:00
|
|
|
|
|
|
|
input_display_list = [ new Inspector_Sprite(s_MKFX), 0,
|
|
|
|
["Shape", false], 1,
|
|
|
|
];
|
|
|
|
|
2024-08-07 13:20:45 +02:00
|
|
|
outputs[| 0] = nodeValue_Output("Surface out", self, VALUE_TYPE.surface, noone);
|
2024-01-07 12:18:20 +01:00
|
|
|
|
|
|
|
static step = function() { #region
|
|
|
|
|
|
|
|
} #endregion
|
|
|
|
|
|
|
|
static processData = function(_outSurf, _data, _output_index, _array_index) { #region
|
|
|
|
var _dim = _data[0];
|
|
|
|
var _dirr = _data[1];
|
|
|
|
|
|
|
|
_outSurf = surface_verify(_outSurf, _dim[0], _dim[1]);
|
|
|
|
|
|
|
|
surface_set_target(_outSurf);
|
|
|
|
DRAW_CLEAR
|
|
|
|
|
|
|
|
|
|
|
|
surface_reset_target();
|
|
|
|
|
|
|
|
return _outSurf;
|
|
|
|
} #endregion
|
|
|
|
}
|