2023-02-28 09:43:01 +01:00
|
|
|
function Node_VFX_Variable(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
|
2023-12-03 05:02:04 +01:00
|
|
|
name = "VFX Variable";
|
2023-02-14 02:48:33 +01:00
|
|
|
color = COLORS.node_blend_vfx;
|
|
|
|
icon = THEME.vfx;
|
|
|
|
node_draw_icon = s_node_vfx_variable;
|
2024-05-02 11:05:02 +02:00
|
|
|
setDimension(96, 48);
|
2023-02-14 02:48:33 +01:00
|
|
|
|
2023-12-22 08:42:02 +01:00
|
|
|
manual_ungroupable = false;
|
|
|
|
|
2023-02-14 02:48:33 +01:00
|
|
|
|
|
|
|
inputs[| 0] = nodeValue("Particles", self, JUNCTION_CONNECT.input, VALUE_TYPE.particle, -1 )
|
|
|
|
.setVisible(true, true);
|
|
|
|
|
|
|
|
input_display_list = [ 0 ];
|
|
|
|
|
|
|
|
outputs[| 0] = nodeValue("Positions", self, JUNCTION_CONNECT.output, VALUE_TYPE.float, [] )
|
2023-10-28 15:28:47 +02:00
|
|
|
.setDisplay(VALUE_DISPLAY.none)
|
2023-03-13 10:45:56 +01:00
|
|
|
.setVisible(false);
|
2023-02-14 02:48:33 +01:00
|
|
|
|
|
|
|
outputs[| 1] = nodeValue("Scales", self, JUNCTION_CONNECT.output, VALUE_TYPE.float, [] )
|
2023-10-28 15:28:47 +02:00
|
|
|
.setDisplay(VALUE_DISPLAY.none)
|
2023-03-13 10:45:56 +01:00
|
|
|
.setVisible(false);
|
2023-02-14 02:48:33 +01:00
|
|
|
|
2023-03-13 10:45:56 +01:00
|
|
|
outputs[| 2] = nodeValue("Rotations", self, JUNCTION_CONNECT.output, VALUE_TYPE.float, 0 )
|
2023-10-28 15:28:47 +02:00
|
|
|
.setDisplay(VALUE_DISPLAY.none)
|
2023-03-13 10:45:56 +01:00
|
|
|
.setVisible(false);
|
2023-02-14 02:48:33 +01:00
|
|
|
|
2023-03-13 10:45:56 +01:00
|
|
|
outputs[| 3] = nodeValue("Blending", self, JUNCTION_CONNECT.output, VALUE_TYPE.color, 0 )
|
2023-10-28 15:28:47 +02:00
|
|
|
.setDisplay(VALUE_DISPLAY.none)
|
2023-03-13 10:45:56 +01:00
|
|
|
.setVisible(false);
|
2023-02-14 02:48:33 +01:00
|
|
|
|
2023-03-13 10:45:56 +01:00
|
|
|
outputs[| 4] = nodeValue("Alpha", self, JUNCTION_CONNECT.output, VALUE_TYPE.float, 0 )
|
2023-10-28 15:28:47 +02:00
|
|
|
.setDisplay(VALUE_DISPLAY.none)
|
2023-03-13 10:45:56 +01:00
|
|
|
.setVisible(false);
|
2023-02-14 02:48:33 +01:00
|
|
|
|
2023-03-13 10:45:56 +01:00
|
|
|
outputs[| 5] = nodeValue("Life", self, JUNCTION_CONNECT.output, VALUE_TYPE.float, 0 )
|
2023-10-28 15:28:47 +02:00
|
|
|
.setDisplay(VALUE_DISPLAY.none)
|
2023-03-13 10:45:56 +01:00
|
|
|
.setVisible(false);
|
2023-02-14 02:48:33 +01:00
|
|
|
|
2023-03-13 10:45:56 +01:00
|
|
|
outputs[| 6] = nodeValue("Max life", self, JUNCTION_CONNECT.output, VALUE_TYPE.float, 0 )
|
2023-10-28 15:28:47 +02:00
|
|
|
.setDisplay(VALUE_DISPLAY.none)
|
2023-03-13 10:45:56 +01:00
|
|
|
.setVisible(false);
|
|
|
|
|
|
|
|
outputs[| 7] = nodeValue("Surface", self, JUNCTION_CONNECT.output, VALUE_TYPE.surface, noone )
|
2023-10-28 15:28:47 +02:00
|
|
|
.setDisplay(VALUE_DISPLAY.none)
|
2023-03-13 10:45:56 +01:00
|
|
|
.setVisible(false);
|
|
|
|
|
|
|
|
outputs[| 8] = nodeValue("Velocity", self, JUNCTION_CONNECT.output, VALUE_TYPE.float, [] )
|
2023-10-28 15:28:47 +02:00
|
|
|
.setDisplay(VALUE_DISPLAY.none)
|
2023-03-13 10:45:56 +01:00
|
|
|
.setVisible(false);
|
2023-02-14 02:48:33 +01:00
|
|
|
|
2023-10-27 15:42:17 +02:00
|
|
|
outputs[| 9] = nodeValue("Seed", self, JUNCTION_CONNECT.output, VALUE_TYPE.float, 0 )
|
2023-10-28 15:28:47 +02:00
|
|
|
.setDisplay(VALUE_DISPLAY.none)
|
2023-10-27 15:42:17 +02:00
|
|
|
.setVisible(false);
|
|
|
|
|
2023-10-09 16:07:33 +02:00
|
|
|
static update = function(frame = CURRENT_FRAME) {
|
2023-10-02 08:57:44 +02:00
|
|
|
var parts = getInputData(0);
|
2023-02-14 02:48:33 +01:00
|
|
|
if(!is_array(parts)) return;
|
|
|
|
|
|
|
|
var _val = [];
|
|
|
|
|
2023-03-13 10:45:56 +01:00
|
|
|
for( var i = 0; i < ds_list_size(outputs); i++ )
|
|
|
|
_val[i] = array_create(array_length(parts));
|
2023-02-14 02:48:33 +01:00
|
|
|
|
2023-07-25 20:12:40 +02:00
|
|
|
for( var i = 0, n = array_length(parts); i < n; i++ ) {
|
2023-02-14 02:48:33 +01:00
|
|
|
var part = parts[i];
|
|
|
|
|
2023-03-13 10:45:56 +01:00
|
|
|
if(outputs[| 0].visible) _val[0][i] = [part.x, part.y];
|
|
|
|
if(outputs[| 1].visible) _val[1][i] = [part.scx, part.scy];
|
|
|
|
if(outputs[| 2].visible) _val[2][i] = part.rot;
|
|
|
|
if(outputs[| 3].visible) _val[3][i] = part.blend;
|
|
|
|
if(outputs[| 4].visible) _val[4][i] = part.alp;
|
|
|
|
if(outputs[| 5].visible) _val[5][i] = part.life;
|
|
|
|
if(outputs[| 6].visible) _val[6][i] = part.life_total;
|
|
|
|
if(outputs[| 7].visible) _val[7][i] = part.surf;
|
2023-10-27 15:42:17 +02:00
|
|
|
if(outputs[| 8].visible) _val[8][i] = [part.speedx, part.speedy];
|
|
|
|
if(outputs[| 9].visible) _val[9][i] = part.seed;
|
2023-02-14 02:48:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
for( var i = 0; i < ds_list_size(outputs); i++ )
|
2023-03-13 10:45:56 +01:00
|
|
|
if(outputs[| i].visible) outputs[| i].setValue(_val[i]);
|
2023-02-14 02:48:33 +01:00
|
|
|
}
|
|
|
|
|
2023-03-05 07:16:44 +01:00
|
|
|
static onDrawNode = function(xx, yy, _mx, _my, _s, _hover, _focus) {
|
2023-02-14 02:48:33 +01:00
|
|
|
var bbox = drawGetBbox(xx, yy, _s);
|
|
|
|
draw_sprite_fit(node_draw_icon, 0, bbox.xc, bbox.yc, bbox.w, bbox.h);
|
|
|
|
}
|
2023-10-09 16:07:33 +02:00
|
|
|
|
|
|
|
getPreviewingNode = VFX_PREVIEW_NODE;
|
2023-02-14 02:48:33 +01:00
|
|
|
}
|