I would like to know more about the Emission in the surface Output.
struct SurfaceOutput {
half3 Albedo;
half3 Normal;
half3 Emission;
half Specular;
half Gloss;
half Alpha;
};
When you write your own SurfaceOutput, you can’t delete the Emission Output. When you write to the Emission output, you have no control over its application.
How is the Emission applied, is it a simple Add ? Is it possible to control its application ?