Search Unity

Turn off PVRTC compression?

Discussion in 'iOS and tvOS' started by aerende, Oct 4, 2009.

  1. aerende

    aerende

    Joined:
    Apr 27, 2009
    Posts:
    316
    Does anyone know how to turn off PVRTC compression on a scene?

    I have a material in a scene that I am using with the SpriteUI script for a GUI interface, and whenever the material gets rendered the compression really distorts the material.
     
  2. Eric5h5

    Eric5h5

    Volunteer Moderator Moderator

    Joined:
    Jul 19, 2006
    Posts:
    32,401
    You turn off compression on individual textures, in the texture settings, not per scene.

    --Eric
     
  3. tonyd

    tonyd

    Joined:
    Jun 2, 2009
    Posts:
    1,224
    Select your image in project view, right click, and choose import settings. Change the texture format to one that doesn't use compression.

    I generally use RGBA 32 bit for 2D graphics.
     
  4. aerende

    aerende

    Joined:
    Apr 27, 2009
    Posts:
    316
    Thanks tonyd, that worked perfectly!