From f48748a05cd19bbb51a4c36c22da6d8f69d6c8f9 Mon Sep 17 00:00:00 2001 From: tetrapod00 <145553014+tetrapod00@users.noreply.github.com> Date: Fri, 16 Aug 2024 12:11:21 -0700 Subject: [PATCH] Fix compile error in advanced_postprocessing.rst --- tutorials/shaders/advanced_postprocessing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/shaders/advanced_postprocessing.rst b/tutorials/shaders/advanced_postprocessing.rst index e06b97e148a..d562e8fd790 100644 --- a/tutorials/shaders/advanced_postprocessing.rst +++ b/tutorials/shaders/advanced_postprocessing.rst @@ -47,7 +47,7 @@ and sets the vertex position in clip space directly. shader_type spatial; // Prevent the quad from being affected by lighting and fog. This also improves performance. - render_mode unshaded, disable_fog; + render_mode unshaded, fog_disabled; void vertex() { POSITION = vec4(VERTEX.xy, 1.0, 1.0);