0

I am making a game in SpriteKit and I am using a texture atlas for all of my textures. I am using the setting

  • Scale Factors: Single Vector

Xcode is giving me a warning for this TextureAtlas :

Template rendering is not supported in texture atlases.

I am unsure what this means

AtomProgrammer
  • 327
  • 2
  • 13

1 Answers1

1

In your assets folder, one of your textures is marked Render As:Template Image. Texture atlases do not support this render mode, so you need to change it back to Default

Knight0fDragon
  • 16,609
  • 2
  • 23
  • 44