Consider a Shader Graph that outputs a color using a Color node set to (1, 0, 0, 1) connected directly to the Base Color input of the Master Node. What color will the shader render on the object?
Remember the RGBA color format where (1, 0, 0, 1) means full red, no green or blue, and fully opaque.
The Color node set to (1, 0, 0, 1) means full red color with full opacity. Connecting it to the Base Color input makes the object render solid red.
In Shader Graph, what kind of value does the Time node output and how is it commonly used?
Think about how you can make a shader change smoothly as time passes.
The Time node outputs the elapsed time in seconds since the shader started. This value is useful for creating animations or effects that evolve continuously.
Given a Shader Graph where a Vector1 node with value 0 is connected to the Metallic input and a Color node set to white (1,1,1,1) is connected to the Base Color, but the object appears black. What is the most likely cause?
Check the alpha channel of the color input and how transparency affects rendering.
If the alpha channel of the Color node is 0, the object becomes fully transparent and may appear black depending on the rendering setup.
You want to blend Color A and Color B using a Mask node that outputs values between 0 and 1. Which node connection correctly produces the blended color?
Think about how linear interpolation (Lerp) works to blend between two values based on a factor.
The Lerp node blends between two inputs based on a third input (T) that acts as a blend factor from 0 to 1. This is the standard way to blend colors using a mask.
You want to create a pulsing glow effect on an object’s emission color that smoothly changes brightness over time. Which node setup achieves this effect?
Think about how sine waves create smooth oscillations over time.
The Sine node applied to the Time node output creates a smooth oscillation between -1 and 1. Multiplying this by the base emission color and connecting to Emission input creates a pulsing glow effect.