Skip to Content
Unity 2018 Shaders and Effects Cookbook - Third Edition
book

Unity 2018 Shaders and Effects Cookbook - Third Edition

by John P. Doran, Alan Zucconi
June 2018
Intermediate to advanced
392 pages
8h 57m
English
Packt Publishing
Content preview from Unity 2018 Shaders and Effects Cookbook - Third Edition

How to do it...

The Lambertian reflectance can be achieved with the following changes to the shader:

  1. Begin by replacing the shader's Properties block with the following :
Properties {  _MainTex("Texture", 2D) = "white" }
  1. Since we are removing all of the other properties, remove the _Glossiness, _Metallic, and _Color declarations inside of the SubShader section.
  2. Change the #pragma directive of the shader so that, instead of Standard, it uses our custom lighting model:
#pragma surface surf SimpleLambert  
If you try to run the script now, it will complain that it doesn't know what the SimpleLambert lighting model is. We will need to create a function called Lighting + the name that we gave here with instructions on how to light the object, ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Unity 2021 Shaders and Effects Cookbook - Fourth Edition

Unity 2021 Shaders and Effects Cookbook - Fourth Edition

John P. Doran
Unity 2018 Cookbook - Third Edition

Unity 2018 Cookbook - Third Edition

Matt Smith, Chico Queiroz, Jate Wittayabundit
Unity 3D Game Development

Unity 3D Game Development

Anthony Davis, Travis Baptiste, Russell Craig, Ryan Stunkel

Publisher Resources

ISBN: 9781788396233Supplemental Content