Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

THREE.js repeat wrapping texture in shader

I want to repeat wrapping texture in THREE.js shader.

The original texture image is:

enter image description here

I want it to repeat 4x4 times which will looks like:

enter image description here

But with the following code, it turns out to be:

enter image description here

Vertex shader:

varying vec2 vUv;

uniform float textRepeat;

void main()
{    
    // passing texture to fragment shader
    vUv = uv * textRepeat;

    gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0);
}

Fragment shader:

varying vec2 vUv;

uniform sampler2D texture;

void main() {
    // add origianl texture
    gl_FragColor = texture2D(texture, vUv);
}

uniforms in a JavaScript file, in which textureRepeat gives the times need to be repeated:

uniforms: {
    texture: {
        type: 't', 
        value: THREE.ImageUtils.loadTexture('image/box.jpg')
    },
    textRepeat: {
        type: 'f',
        value: 8
    }
}

Could anyone tell me what's going wrong here?

like image 272
Ovilia Avatar asked Dec 21 '22 08:12

Ovilia


1 Answers

By default, textures have "Clamp To Edge" wrapping mode, which means u or v over 1 will still be 1 instead of wrapping back to 0.

To fix this, you need to set the wrapping mode of your texture to "Repeat", which happens like this:

uniforms.texture.value.wrapS = uniforms.texture.value.wrapT = THREE.RepeatWrapping

like image 113
Tapio Avatar answered Jan 04 '23 23:01

Tapio