Pixel-Composer/scripts/node_noise_wavelet/node_noise_wavelet.gml
2023-12-23 18:59:21 +07:00

48 lines
1.7 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, irandom(99999));
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();
//////////////////////////////////////////////////////////////////////////////////
input_display_list = [
["Output", true], 0, 3,
["Noise", false], 1, 2, 6, 4, 7, 5, 8,
];
static step = function() {
inputs[| 2].mappableStep();
inputs[| 4].mappableStep();
inputs[| 5].mappableStep();
}
}