Vertex Lit

Vertex Lit

  Vertex Lit path generally renders each object in one pass, with lighting from all lights calculated at object vertices.

  It's the fastest rendering path and has widest hardware support (however, keep in mind: it does not work on consoles).

  Since all lighting is calculated at vertex level, this rendering path does not support most of per-pixel effects:

    1)shadows

    2)normal mapping

    3)light cookies

    4)highly detailed specular highlights

参考:file://localhost/Applications/Unity/Unity.app/Contents/Documentation/Documentation/Components/RenderTech-VertexLit.html

原文地址:https://www.cnblogs.com/tekkaman/p/3870270.html