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

Adding extrusion maps

This technique can actually be improved even further. We can add an extra texture (or use the alpha channel of the main one) to indicate the amount of extrusion. This allows for much better control over which parts are raised or lowered. The following code shows you how it is possible to achieve such an effect (the main difference from what we've done before is in bold):

Shader "CookbookShaders/Chapter06/Normal Extrusion Map" {  Properties  {    _MainTex("Texture", 2D) = "white" {}    _ExtrusionTex("Extrusion map", 2D) = "white" {}  _ Amount("Extrusion Amount", Range(-0.0001, 0.0001)) = 0  }  SubShader  {    Tags{ "RenderType" = "Opaque" }    CGPROGRAM    #pragma surface surf Standard vertex:vert    struct Input     {      float2 uv_MainTex;    }; float ...
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