diff --git a/tutorials/shaders/making_trees.rst b/tutorials/shaders/making_trees.rst index aa1594554..f416ee3f0 100644 --- a/tutorials/shaders/making_trees.rst +++ b/tutorials/shaders/making_trees.rst @@ -77,7 +77,7 @@ Finally, all that's left is the fragment shader: ALPHA = albedo_tex.a; METALLIC = 0.0; ROUGHNESS = 1.0; - TRANSMISSION = transmission.rgb; + SSS_TRANSMITTANCE_COLOR = transmission.rgba; } And this is pretty much it.