click 1.3 screen shot, (sorry popup)
click 1.2 shot
1.2 mipmap was changed smooth. it works good. thx.
but 1.3 mipmap is changed so unnatural. mipmap changing line is really unnatural.
I think 1.3 mipmap level changing has real problem.
I found 1.3 d3d9 mipmap problem!
I found 1.3 d3d9 mipmap problem!
Last edited by lordcool on Wed Mar 21, 2007 5:56 am, edited 4 times in total.
That is because the default texture filtering options changed. The documentation in SMaterial.h said that bilinear filtering was to be on and trilinear and anisotropic filtering were off by default. The constructor of SMaterial was not setting the defaults as the documentation indicated. It was setting all of the filtering options to true, which enabled anisotropic filtering, and that makes the texturing look more correct.
You can see the diff here. If you want the terrain to look the same, you might try setting the EMF_TRILINEAR_FILTER and EMF_ANISOTROPIC_FILTER material flags to true for the terrain node.
Travis
You can see the diff here. If you want the terrain to look the same, you might try setting the EMF_TRILINEAR_FILTER and EMF_ANISOTROPIC_FILTER material flags to true for the terrain node.
Travis