Home Unreal Engine

Object goes blurry at certain distances?

My object has two materials on it, one material with its textures looks good from whatever distance, you can see the two round things at the top, those look fine always.

for some reason, the materail on the main door goes blurry after i pull the camera back just a little. Ive never had this happen in unreal. almost always ill notice some bluring at a FAR distance on textures (wish i could prevent that no matter what) but nothing like this object. Ive read make sure the package is fully loaded, its fully loaded. i have no idea why this is still happening. anyone have any ideas?

12-23-2010%2011-34-05%20AM.png

Replies

  • Gilgamesh
    Offline / Send Message
    Gilgamesh polycounter lvl 12
    Only thing I can think of is that the different textures are in two different texturegroups.
  • Oniram
    Offline / Send Message
    Oniram polycounter lvl 17
    ive run into that usually when loading a package and getting ready to start working. one thing i usually do is refresh the textures by just double clicking on the texture in the content browser, and that helps.. can get kind of annoying if its happening to a lot of objects.
  • Mypeople
    different texture groups? can i get more details on what you mean gilga?
  • tharle
    Offline / Send Message
    tharle polycounter lvl 9
    have you checked your mip map settings? the last setting in the texture properties window is "Mip Gen Settings". If you change this from "From Texture Group" to "No Mipmaps" then your texture will always be at the resolution you imported it at.

    tharle

    edit: just trying something similar on one of my scenes and try changing the LOD group from world to UI too. You can see in the texture info box (at the top of the texture properties window) what size it was imported at and what size it's displayed ("max in-game" not "displayed" confusingly.)
  • Mypeople
    Thanks tharle, that did it, i still have NO idea why this is happening, maybe a bug? no idea. so if i'm mostly using udk to showcase artwork, should i always turn the nomipmapp setting you think?
  • JordanW
    Offline / Send Message
    JordanW polycounter lvl 19
    Be careful, while using no-mipmaps will show the resolution you imported it will also ...not generate mip maps, which will cause texture aliasing at distances and is also a performance loss.
  • tharle
    Offline / Send Message
    tharle polycounter lvl 9
    its not a bug - basically the software is automatically reducing the resolution that the image is displayed at so as to improve performance. the mipmap settings control the lower res maps that are created and the LOD group controls where they are used (i think!)

    if it's just for displaying work then you should have it off all the time but, like JordanW says, it will create performance issues if you were using it in a game.

    tharle
  • JordanW
    Offline / Send Message
    JordanW polycounter lvl 19
    tharle wrote: »
    if it's just for displaying work then you should have it off all the time but,
    tharle

    No, this will make your textures look like shit, here's a comparison between no-mips and mips, the one without mips has sparkling colors which look bad in stills and look REALLY bad in motion. In motion every pixel is constantly changing colors a big amount and causes flickering.

    noMIPS.jpg

    In my test I only disabled mips for the base diffuse and normal, it's blending like 6 textures so some of the negative effects are diminished.
    Notice I'm not even that far away from the model, this will happen even more at grazing angles and further distances.

    If you want to show your textures at the highest quality just set their LODGroup to Cinematic and/or defer compression while you take your screenshots.

    <edit>
    it also sounds like a bug if your door is rendering that blurry up close, try placing it in a sample level and see if it still happens. Is this a static mesh or mover? try converting.
  • Numerator
    MIP maps should always be enabled, however you can control when they are swapped in with a bias. You can also use better filtering algorithms than the box filter to get less blurry MIP images.
Sign In or Register to comment.