Unlit\Texture shader doc?

I was using this Unlit\Texture shader, it was build in with Unity4.3.4.
I suppose this shader lighting was off, only display texture color, it work like this way.
But is there any doc?

I couldn’t find at Unity - Manual: Legacy Shaders

already found in download http://unity3d.com/unity/download/archive.
the Unlit\Texture shader in file “Unlit-Normal.shader” it’s strange the shader have different name.

1 Like

The unlit shaders are pure vertex/fragment shaders in which you will need to handle the lighting yourself. When you google how to add lighting to your own vertex/fragment shaders, plenty of results will show up.

As for the naming, the file name of the shader is not the same as the name that will show up in the editor, this name is defined in the shader with:

Shader "Unlit/Texture"

Which is the opening of your shader at the top of the file.

I agree. Since there can only be one shader per file (I think), it would make sense if the name came from the file/folder structure.