0

so I have my basic scene and one object (girl) is not illuminated by light source I did not touched anything it has just a texture as material. Edit: Render engine is cycles the object is imported fbx

enter image description here

enter image description here

Slobodan Vidovic
  • 519
  • 5
  • 13

1 Answers1

3

You are plugging a texture node directly into the output node.

You must plug the texture node into a shader node such as a Principled BSDF first in order to get the color information from the image to the output correctly.

Below would be the correct setup:

enter image description here

See this question for more information on closures.

Side note, you also do not have a camera in the file you provided. Add one and you will be all set :)

enter image description here

Timaroberts
  • 12,395
  • 6
  • 39
  • 73