10 years ago by phi
Is there a way to completely shut off mip mapping? I keep getting those ugly seams (TwoPointFive plugin).
10 years ago by dominic
Yep. Change lib/plugins/twopointfive/renderer/renderer.js, line 101 to
TEXTURE_MIN_FILTER sets the filter used for minification.
You could also write a small plugin to overwrite the
this.gl.texParameteri(this.gl.TEXTURE_2D, this.gl.TEXTURE_MIN_FILTER, this.gl.NEAREST);
TEXTURE_MIN_FILTER sets the filter used for minification.
You could also write a small plugin to overwrite the
.loadTexture()
method if you don't want to modify the twopointfive sources directly. 10 years ago by phi
It works! Thanks for the quick answer.
Page 1 of 1
« first
« previous
next ›
last »