CesiumGS / obj2gltf

Convert OBJ assets to glTF
Apache License 2.0
1.71k stars 307 forks source link

Mipmapping should be on by default #81

Closed erich666 closed 7 years ago

erich666 commented 7 years ago

Mipmapping should be the default for accessing textures, not point sampling, which looks terrible.

I see this in the glTF output:

"samplers": { "sampler": { "magFilter": 9729, "minFilter": 9729,

It should be:

"samplers": { "sampler": { "magFilter": 9729, "minFilter": 9987,