THREE.InfiniteGridHelper
THREE.InfiniteGridHelper copied to clipboard
infinite checkerboard!
i have that piece of code to generate checkerboard i tried to implement it in your code end up with not movable checkerboard grid
vec2 center = -1.0 + 2.0 * vUv; vec2 uv = floor(center.xy * 600.0); if(mod(uv.x + uv.y, 2.0) > 0.5){ gl_FragColor = vec4(color1, 1.0); }else{ gl_FragColor = vec4(color2, 1.0); }
There will be an update next days that offers more shape options such as inversed grid, checkerboard, rotation or a hexagonal grid.
Thank you waiting for it
@Roxgame95, same here. This is going to be a gamechanger for my app. I can't wait for this to be released.