Page 1 of 1

Re: Disable Texture Repeating?

Posted: Sun Aug 25, 2013 11:33 pm
by Samuel
Are you using a material script or just normal materials?

If your using a material script make sure the scale is set to 1.
For example.

Code: Select all

material NameOfMaterial
{
   technique
   {
      pass
      {
         lighting off
         texture_unit
         {
            texture NameOfTexture.png
            scale 1 1
         }
      }

   }
}