Procházet zdrojové kódy

Fix compile error in advanced_postprocessing.rst

tetrapod00 před 1 rokem
rodič
revize
3d9ca63b15
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  1. 2 0
      tutorials/shaders/advanced_postprocessing.rst

+ 2 - 0
tutorials/shaders/advanced_postprocessing.rst

@@ -46,6 +46,8 @@ and sets the vertex position directly.
 .. code-block:: glsl
 
   shader_type spatial;
+  // Prevent the quad from being affected by lighting and fog. This also improves performance.
+  render_mode unshaded, fog_disabled;
 
   void vertex() {
     POSITION = vec4(VERTEX, 1.0);