Pixel-Composer/scripts/node_shard_noise/node_shard_noise.gml

57 lines
2.0 KiB
Plaintext
Raw Normal View History

2023-11-22 15:25:36 +01:00
function Node_Shard_Noise(_x, _y, _group = noone) : Node_Shader_Generator(_x, _y, _group) constructor {
name = "Shard Noise";
shader = sh_noise_shard;
inputs[| 1] = nodeValue_Vector("Position", self, [ 0, 0 ])
2023-11-22 15:25:36 +01:00
.setUnitRef(function(index) { return getDimension(index); });
addShaderProp(SHADER_UNIFORM.float, "position");
inputs[| 2] = nodeValue_Vector("Scale", self, [ 4, 4 ])
2023-12-23 12:59:21 +01:00
.setMappable(6);
2023-11-22 15:25:36 +01:00
addShaderProp(SHADER_UNIFORM.float, "scale");
inputs[| 3] = nodeValue_Float("Seed", self, seed_random(6))
2024-06-08 06:31:21 +02:00
.setDisplay(VALUE_DISPLAY._default, { side_button : button(function() { randomize(); inputs[| 3].setValue(seed_random(6)); }).setIcon(THEME.icon_random, 0, COLORS._main_icon) });
2023-11-22 15:25:36 +01:00
addShaderProp(SHADER_UNIFORM.float, "seed");
inputs[| 4] = nodeValue_Float("Sharpness", self, 1)
2023-12-23 12:59:21 +01:00
.setDisplay(VALUE_DISPLAY.slider, { range: [ 0, 2, 0.01 ] })
.setMappable(7);
2023-11-22 15:25:36 +01:00
addShaderProp(SHADER_UNIFORM.float, "sharpness");
inputs[| 5] = nodeValue_Float("Progress", self, 0)
2023-12-23 12:59:21 +01:00
.setMappable(8);
addShaderProp(SHADER_UNIFORM.float, "progress")
2023-11-22 15:25:36 +01:00
2023-12-23 12:59:21 +01:00
//////////////////////////////////////////////////////////////////////////////////
inputs[| 6] = nodeValueMap("Scale map", self); addShaderProp();
inputs[| 7] = nodeValueMap("Sharpness map", self); addShaderProp();
inputs[| 8] = nodeValueMap("Progress map", self); addShaderProp();
//////////////////////////////////////////////////////////////////////////////////
2024-08-07 11:48:39 +02:00
inputs[| 9] = nodeValue_Rotation("Rotation", self, 0);
2024-03-31 05:36:11 +02:00
addShaderProp(SHADER_UNIFORM.float, "rotation");
2023-11-22 15:25:36 +01:00
input_display_list = [
["Output", true], 0, 3,
2024-03-31 05:36:11 +02:00
["Noise", false], 1, 9, 2, 6, 5, 8, 4, 7,
2023-11-22 15:25:36 +01:00
];
2023-12-23 12:59:21 +01:00
2024-03-31 05:36:11 +02:00
static drawOverlay = function(hover, active, _x, _y, _s, _mx, _my, _snx, _sny) {
2024-07-02 12:18:32 +02:00
var _hov = false;
var hv = inputs[| 1].drawOverlay(hover, active, _x, _y, _s, _mx, _my, _snx, _sny); _hov |= hv;
return _hov;
2024-03-31 05:36:11 +02:00
}
2023-12-23 12:59:21 +01:00
static step = function() {
inputs[| 2].mappableStep();
inputs[| 4].mappableStep();
inputs[| 5].mappableStep();
}
2023-11-22 15:25:36 +01:00
}