diff options
Diffstat (limited to 'flowy/src/motion/debug.wgsl')
-rw-r--r-- | flowy/src/motion/debug.wgsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flowy/src/motion/debug.wgsl b/flowy/src/motion/debug.wgsl index 3e740f6..7da5c57 100644 --- a/flowy/src/motion/debug.wgsl +++ b/flowy/src/motion/debug.wgsl @@ -25,7 +25,7 @@ struct BlockOffset { for (var x = 0; x < params.block_size.x; x++) { for (var y = 0; y < params.block_size.y; y++) { let base = uv + vec2(x, y); - let col = vec4(colormap_vec(vec2<f32>(bl.offset) * 0.05),1.); + let col = vec4(colormap_vec(vec2<f32>(bl.offset) * 0.08),1.); textureStore(out, base, col); } } |