Kirka Io Texture -

// Fragment shader snippet for Kirka-style texture lookup vec2 clampedUV = clamp(vUv, 0.01, 0.99); vec4 color = texture2D(uTextureAtlas, clampedUV); if (color.a < 0.1) discard; // skip transparent gutters