Pixel-Composer/scripts/node_strand_break/node_strand_break.gml

34 lines
1.1 KiB
Plaintext
Raw Normal View History

2023-03-19 09:17:39 +01:00
function Node_Strand_Break(_x, _y, _group = noone) : _Node_Strand_Affector(_x, _y, _group) constructor {
name = "Strand Break";
2023-03-19 09:17:39 +01:00
color = COLORS.node_blend_strand;
icon = THEME.strandSim;
w = 96;
manual_ungroupable = false;
2023-03-19 09:17:39 +01:00
inputs[| input_fix_len + 0] = nodeValue("Chance", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 1)
.setDisplay(VALUE_DISPLAY.slider);
2023-03-19 09:17:39 +01:00
2023-03-28 06:58:28 +02:00
inputs[| input_fix_len + 1] = nodeValue("Seed", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, irandom_range(100000, 999999));
2023-03-19 09:17:39 +01:00
array_push(input_display_list,
["Break", false], input_fix_len + 0, input_fix_len + 1
);
2023-10-09 16:07:33 +02:00
static update = function(frame = CURRENT_FRAME) {
var _cha = getInputData(input_fix_len + 0);
var _sed = getInputData(input_fix_len + 1);
2023-03-19 09:17:39 +01:00
STRAND_EFFECTOR_PRE
if(_sed && random1D(h.id) < _cha * mulp)
h.free = true;
else if(!_sed && random(1) < _cha * mulp)
h.free = true;
STRAND_EFFECTOR_POST
}
static onDrawNode = function(xx, yy, _mx, _my, _s, _hover, _focus) {
var bbox = drawGetBbox(xx, yy, _s);
draw_sprite_fit(s_node_strandSim_break, 0, bbox.xc, bbox.yc, bbox.w, bbox.h);
}
}