mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 20:45:35 +01:00
59 lines
2.3 KiB
Plaintext
59 lines
2.3 KiB
Plaintext
function Node_Wavelet_Noise(_x, _y, _group = noone) : Node_Shader_Generator(_x, _y, _group) constructor {
|
|
name = "Wavelet Noise";
|
|
shader = sh_noise_wavelet;
|
|
|
|
inputs[| 1] = nodeValue("Position", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, [ 0, 0 ])
|
|
.setDisplay(VALUE_DISPLAY.vector)
|
|
.setUnitRef(function(index) { return getDimension(index); });
|
|
addShaderProp(SHADER_UNIFORM.float, "position");
|
|
|
|
inputs[| 2] = nodeValue("Scale", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, [ 4, 4 ])
|
|
.setDisplay(VALUE_DISPLAY.vector)
|
|
.setMappable(6);
|
|
addShaderProp(SHADER_UNIFORM.float, "scale");
|
|
|
|
inputs[| 3] = nodeValue("Seed", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, seed_random(6))
|
|
.setDisplay(VALUE_DISPLAY._default, { side_button : button(function() { randomize(); inputs[| 3].setValue(seed_random(6)); }).setIcon(THEME.icon_random, 0, COLORS._main_icon) });
|
|
addShaderProp(SHADER_UNIFORM.float, "seed");
|
|
|
|
inputs[| 4] = nodeValue("Progress", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 0)
|
|
.setMappable(7)
|
|
addShaderProp(SHADER_UNIFORM.float, "progress");
|
|
|
|
inputs[| 5] = nodeValue("Detail", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 1.24)
|
|
.setDisplay(VALUE_DISPLAY.slider, { range: [ 0, 2, 0.01 ] })
|
|
.setMappable(8);
|
|
addShaderProp(SHADER_UNIFORM.float, "detail");
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
inputs[| 6] = nodeValueMap("Scale map", self); addShaderProp();
|
|
|
|
inputs[| 7] = nodeValueMap("Progress map", self); addShaderProp();
|
|
|
|
inputs[| 8] = nodeValueMap("Detail map", self); addShaderProp();
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
inputs[| 9] = nodeValue("Rotation", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 0)
|
|
.setDisplay(VALUE_DISPLAY.rotation);
|
|
addShaderProp(SHADER_UNIFORM.float, "rotation");
|
|
|
|
input_display_list = [
|
|
["Output", true], 0, 3,
|
|
["Noise", false], 1, 9, 2, 6, 4, 7, 5, 8,
|
|
];
|
|
|
|
static drawOverlay = function(hover, active, _x, _y, _s, _mx, _my, _snx, _sny) {
|
|
var _hov = false;
|
|
var hv = inputs[| 1].drawOverlay(hover, active, _x, _y, _s, _mx, _my, _snx, _sny); _hov |= hv;
|
|
|
|
return _hov;
|
|
}
|
|
|
|
static step = function() {
|
|
inputs[| 2].mappableStep();
|
|
inputs[| 4].mappableStep();
|
|
inputs[| 5].mappableStep();
|
|
}
|
|
} |