PERHAPS A GIFT VOUCHER FOR MUM?: MOTHER'S DAY

Close Notification

Your cart does not contain any items

Physically Based Shader Development for Unity 2017

Develop Custom Lighting Systems

Claudia Doppioslash

$168.95   $134.76

Paperback

Not in-store but you can order this
How long will it take?

QTY:

English
APress
06 December 2017
Benefit from the latest rendering tech developments, currently covered only in papers and talks from Siggraph, in a way any developer or technical artist using Unity can take advantage of. This book starts by introducing how shader programming works in general, the common principles of different platforms (OpenGL, Vulkan, and DirectX), and the shading languages Unity uses: Cg, GLSL, and ShaderLab. Physically Based Shader Development for Unity 2017 discusses artistic choices, presenting various techniques (such as translucency and subsurface scattering) and BRDFs (Oren-Nayar, Cook-Torrance, and Ashikhmin-Shirley), and what they can be used for. Finally you’ll cover the importance of optimizing your code by developing approximations, which achieve similar end results, but are computationally cheaper. By the end of your journey you’ll be able to develop the look of your game or Unity-rendered animated short so that it looks both unique and impressively realistic, thanks to your own custom lighting system.

What You Will Learn   

Master shader programming 

Gain all you need to know about physically based shading

Take almost full control of the shader subsystem

Discover what you can achieve with that control

Implement a custom physically based lighting system and examine the logic behind every choice

Who This Book Is For   Most game developers (both indie and AA) that use Unity and technical artists who are responsible for the final look of a game.

By:  
Imprint:   APress
Country of Publication:   United States
Edition:   1st ed.
Dimensions:   Height: 254mm,  Width: 178mm, 
Weight:   4.946kg
ISBN:   9781484233085
ISBN 10:   1484233085
Pages:   232
Publication Date:  
Audience:   Professional and scholarly ,  Undergraduate
Format:   Paperback
Publisher's Status:   Active
Chapter 1:  How Shader Development Works Chapter Description: It will give an overview on the common basics of Shader Development, knowledge that they’ll be able to reuse for any platform (OpenGL, DirectX, Vulkan). Shading is a dataflow process in one direction: vertices, textures and shaders enter, and colors in a framebuffer exit, at the other end. Chapter 2:  Your first Unity Shader We’ll create a basic project in Unity, with a simple Shader, so the reader can put in practice what she just learned, and get started with the ShaderLab system. Chapter 3: Your first Lighting Unity shader We extend the shader from the last chapter, adding Diffuse and Specular lighting, but not using Physically Based principles yet, so the reader can learn on shorter, simpler shaders first, and also understand how shading has evolved in time. Chapter 4: What is Physically Based Shading? We cover the basics of Physically Based Shading, using pictures and graphs, as well. We mention, and give some intuition for, the necessary math formulas which we’ll explain further in a following chapter, where we implement the principles. Chapter 5: Your first Physically Based Shader We implement a custom physically based shader, modifying the example from chapter 2. We explain what properties it needs to have to be properly PBS, and how we can lose them, if we’re not careful. Chapter 6: Your first Image Effect We implement Depth of Field as an Image Effect, which helps improve our scene’s realism, and introduces principles that can be reused for any Image Effect. Chapter 7: HDR, Tone Mapping and Color Grading Using HDR is a necessary prerequisite of PBS, but an HDR buffer needs a tone mapping effect to be rendered to our screens correctly. A tone mapping Image Effect can be used to artistic ends as well, to imitate the look of film stock. Color Grading can also be implemented as an image effect. In this chapter we’ll consolidate all our image effects in as few shader passes as possible, and we’ll explain how that helps rendering performance. Chapter 8: The Ethology of BRDFs “Bidirectional Reflectance Distribution Functions” are models of how light behaves on a surface. There are many such models, and each is particularly effective at reproducing different types of surfaces. We’ll give an overview of the most used ones. Chapter 9: The Implementation of BRDFs We’re going to implement a few different BRDFs that we presented in the last chapter, and show how they behave differently, and are appropriate for different types of surfaces. We’re still going to keep the shader basic, not hooking into the Unity subsystems, except for shadows and directional lights. (This subject may require more than one chapter) Chapter 10: Approximate your BRDFs Even the most beautiful shader is useless, if it doesn’t run fast enough. We’ll introduce the art of using approximations to make your shaders faster, without sacrificing too much quality. Chapter 11: How the Standard Shader works We’re going to discuss the BRDF choices made in the Unity Standard Shader, and how they obtain performance, and ease-of-use for the artist. Chapter 12: The Unity Standard Shader Subsystems, and What They Can Do for You Overview of the features you can add to your shader system, if you make the effort of interfacing with the Unity shader code: Global Illumination, Shadows, Image Effects, Reflection Probes. Chapter 13: Hooking into the Unity Shader Subsystems The Unity Shader Subsystems code is mostly undocumented, and changes every few version. But still you need to interface to it to achieve best result in shorter time. In this chapter we’ll cover how to attack this problem, so you can update your code even if the hooks change. (This subject may require more than one chapter) Chapter 14: Reflections and Cube Maps Reflections and indirect light are the trickiest part of implementing a BRDF. In this chapter we’ll introduce the problems, and show some solutions. We’ll also give a list of tools that can be used or modified to bake properly filtered cubemaps for the BRDF  of your choice. Chapter 15: Making Shaders Artists Will Use We’re going to discuss the need to balance control, with how complex the settings can get. Too much complexity and unexplained controls make a shader unintuitive for the artists, and they’ll end up not using it, or cargo-culting it, squandering your efforts. Chapter 16: Code Complexity and Ubershaders Shader lighting systems can get very complex, as reading the Unity Standard Shader can attest. We’ll introduce ways of coping with the complexity which commonly used in the industry, and what they entail in terms of compile times, and iteration speed in Unity. Chapter 17: When Shading Goes Wrong, Check The Models Often a sloppy model can squander all of your efforts. This is a list of possible causes to check, if your shader is mysteriously failing on one or more of your models. Chapter 18: Resources to Keep Up with the Bleeding Edge, and How to Read Them The Game Industry never stops. Every year developers flock to GDC and Siggraph to catch up on the bleeding edge of the tech. We’ll cover where to find and how to read up-to-date, dense technical material.

A Game Developer, Functional Programmer, and Speaker at various programming conferences, Claudia Doppioslash writes about Graphics Programming in Unity and in Rust and about Functional Programming. She’s been programming for many years now: starting from mobile development for iOS and Android, she went on to Game Development, spending most of her time developing custom shader lighting systems for Unity. Now she’s applying Functional Programming to the front-end, with Elm, Purescript and Haskell. She is a moderately Smug Lisp Weenie, and she hasn’t given up making Functional Programming useful for Game Development yet.

See Also