KITASENJU DESIGN BLOG

memo, html, javascript, unity

Entries from 2022-12-01 to 1 day

fbm

#define OCTAVES 6 float fbm (in vec2 st) { // Initial values float value = 0.0; float amplitud = .5; float frequency = 0.; // // Loop of octaves for (int i = 0; i < OCTAVES; i++) { value += amplitud * noise(st); st *= 2.; amplitud *= .5; }…

"FOOTER"