hydra-synth
Version:
base synth for hydra-editor
26 lines (24 loc) • 441 B
JavaScript
// to add: ripple: https://www.shadertoy.com/view/4djGzz
// mask
// convolution
// basic sdf shapes
// repeat
// iq color palletes
import glsl from 'glslify'
export default {
blur: {
type: 'renderpass',
inputs: [
{
type: 'float',
name: 'directionX',
default: 1.0
},{
type: 'float',
name: 'directionY',
default: 0.0
}
],
frag: glsl('./gaussian.frag')
}
}