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 it works...

This might seem like quite a few lines of code, but the concept behind blending is actually quite simple. For the technique to work, we have to employ the built-in lerp() function from the CgFX standard library. This function allows us to pick a value between argument one and argument two using argument three as the blend amount:

Function

Description

lerp(a, b, f )

This involves linear interpolation:

(1 - f )* a + b * f

Here, a and b are matching vector or scalar types. The f parameter can be either a scalar or vector of the same type as a and b.

So, for example, if we wanted to find the mid-value between 1 and 2, we could feed the value 0.5 as the third argument to the lerp() function and it would return ...

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