0

I have assigned a material with an image texture to this cube (I think) and when viewed in Texture mode I see this

enter image description here

When viewed in Rendered Mode I see this

This suggests I did not properly assign the material but why is it visible in Texture mode ? I know why I get this purple color but the question is why I see this purple color in Rendered Mode and not in Texture mode (this is why this question is not a duplicate imo)

1 Answers1

2

It appears like you have moved the texture after you brought it into blender. You need to relocate the texture. When blender renders it loads the texture from disk (and is unable to find it causing the purple). The material view is using the copy in memory. When the file is saved and reloaded the material view will purple as well.

Striar
  • 1,570
  • 8
  • 18
  • yes but can you explain why the image texture is visible in Texture mode and not in Rendered mode ? –  Jul 20 '16 at 15:17
  • 1
    It is visible in textured view because the texture is still in memory. Texture are stored in memory on image load to improve performance. This means that if the file is moved or adjusted blender doesn't update. You still see the texture. This memory only gets emptied when blender is quit. Rendered mode does not use memory and instead attempts to read from disk, is unable to find the file, and shows as purple. – Striar Jul 20 '16 at 15:25