- Unreal Engine 4 Shaders and Effects Cookbook
- Brais Brenlla Ramos John P. Doran
- 301字
- 2021-06-24 14:12:19
How it works...
Even though we've used masks extensively in this recipe, we haven't had a chance to properly look at how they are set up until now, that is!
In essence, the textures that we've used as masks are images that contain a black and white picture stored in each of the image's RGB channels. As you probably already know, if you were to open up any image in your default photography editing software you would have the chance to take a look at the three individual image channels the picture is composed of the red, green, and blue ones, specifically. There might be an extra one, known as the Alpha, depending on the type of file that you are using.
The composition of those file formats is actually beneficial to us, as we can use the separate channels as masks—just like we did in this recipe. The Lerp node, as we saw, blends between two inputs according to the values that we provide it. Since those values can be anything from 0 to 1, or black to white, that means that we have a perfect match in each of the image's RGB (and possibly Alpha) channels, since they are each a black and white image if taken separately:

In any case, using masks to drive the appearance of a material is often preferable to using multiple materials per mesh. This is because of the way the rendering pipeline works on the background. Without getting too technical, we could say that each new material makes the whole graphic operation more expensive, and even though we won't start noticing the effects until we have lots of different shaders in the scene, this is something that will eventually happen for almost any project bigger than a small example.
- Cocos2d Cross-Platform Game Development Cookbook(Second Edition)
- 一步一步學Spring Boot 2:微服務項目實戰
- Python編程自學手冊
- Java Web程序設計
- Learning ArcGIS Pro
- 程序員修煉之道:通向務實的最高境界(第2版)
- Java Web程序設計任務教程
- Oracle GoldenGate 12c Implementer's Guide
- 并行編程方法與優化實踐
- 零基礎學HTML+CSS
- Go語言從入門到精通
- Python預測分析實戰
- Java 9 with JShell
- Python高性能編程(第2版)
- C#程序開發參考手冊