Pixel-Composer/scripts/node_strand_update/node_strand_update.gml

33 lines
988 B
Plaintext
Raw Normal View History

2023-03-19 09:17:39 +01:00
function Node_Strand_Update(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
name = "Strand Update";
2023-03-19 09:17:39 +01:00
color = COLORS.node_blend_strand;
icon = THEME.strandSim;
2024-05-02 12:13:35 +02:00
setDimension(96, 48);;
manual_ungroupable = false;
2023-03-19 09:17:39 +01:00
2024-08-20 10:15:53 +02:00
newInput(0, nodeValue("Strand", self, CONNECT_TYPE.input, VALUE_TYPE.strands, noone))
2023-03-19 09:17:39 +01:00
.setVisible(true, true);
2024-08-18 09:13:41 +02:00
newInput(1, nodeValue_Int("Step", self, 4))
2023-03-19 09:17:39 +01:00
2024-09-04 03:57:11 +02:00
newOutput(0, nodeValue_Output("Strand", self, VALUE_TYPE.strands, noone));
2023-03-19 09:17:39 +01:00
2023-10-09 16:07:33 +02:00
static update = function(frame = CURRENT_FRAME) {
var _str = getInputData(0);
var _itr = getInputData(1);
2023-03-19 09:17:39 +01:00
if(_str == noone) return;
var __str = _str;
if(!is_array(_str)) __str = [ _str ];
2023-07-25 20:12:40 +02:00
for( var i = 0, n = array_length(__str); i < n; i++ )
2023-03-19 09:17:39 +01:00
__str[i].step(_itr);
2024-08-08 06:57:51 +02:00
outputs[0].setValue(_str);
2023-03-19 09:17:39 +01:00
}
static onDrawNode = function(xx, yy, _mx, _my, _s, _hover, _focus) {
var bbox = drawGetBbox(xx, yy, _s);
draw_sprite_fit(s_node_strandSim_update, 0, bbox.xc, bbox.yc, bbox.w, bbox.h);
}
}