Add else if

This commit is contained in:
GlitchCode24
2025-02-15 22:47:20 +02:00
committed by GitHub
parent 3bacda4459
commit 99b4f2494c
@@ -551,9 +551,11 @@ Godot Shading language supports the most common types of flow control:
.. code-block:: glsl
// `if` and `else`.
// `if`, `else if` and `else`.
if (cond) {
} else if (cond) {
} else {
}