Can i use webgl texture with three.js?

ex)

const texture = gl.createTexture()

const material = new MeshBasicMaterial({map: texture})

Thank you.

No, that does not work. Using raw WebGL textures is not supported.

1 Like

I see, thanks. :smiling_face_with_tear: