summaryrefslogtreecommitdiff
path: root/doc/classes/VisualShaderNodeSwitch.xml
diff options
context:
space:
mode:
authorYuri Roubinsky <chaosus89@gmail.com>2022-02-02 21:12:45 +0300
committerGitHub <noreply@github.com>2022-02-02 21:12:45 +0300
commitca42bfb2a5c91a52ea14302aa3bbf7292e387b9b (patch)
tree1ee02bd3557c14729b5a02f44854ea208517d777 /doc/classes/VisualShaderNodeSwitch.xml
parent6ff753675a1c6f86ece68905bdedbf5e81712800 (diff)
parent59af063636b3e17df488ad0d9e059919aa03fcf1 (diff)
Merge pull request #57504 from Chaosus/vs_vector2
Diffstat (limited to 'doc/classes/VisualShaderNodeSwitch.xml')
-rw-r--r--doc/classes/VisualShaderNodeSwitch.xml13
1 files changed, 8 insertions, 5 deletions
diff --git a/doc/classes/VisualShaderNodeSwitch.xml b/doc/classes/VisualShaderNodeSwitch.xml
index 921092cd07..71888ec2c3 100644
--- a/doc/classes/VisualShaderNodeSwitch.xml
+++ b/doc/classes/VisualShaderNodeSwitch.xml
@@ -20,16 +20,19 @@
<constant name="OP_TYPE_INT" value="1" enum="OpType">
An integer scalar.
</constant>
- <constant name="OP_TYPE_VECTOR" value="2" enum="OpType">
- A vector type.
+ <constant name="OP_TYPE_VECTOR_2D" value="2" enum="OpType">
+ A 2D vector type.
</constant>
- <constant name="OP_TYPE_BOOLEAN" value="3" enum="OpType">
+ <constant name="OP_TYPE_VECTOR_3D" value="3" enum="OpType">
+ A 3D vector type.
+ </constant>
+ <constant name="OP_TYPE_BOOLEAN" value="4" enum="OpType">
A boolean type.
</constant>
- <constant name="OP_TYPE_TRANSFORM" value="4" enum="OpType">
+ <constant name="OP_TYPE_TRANSFORM" value="5" enum="OpType">
A transform type.
</constant>
- <constant name="OP_TYPE_MAX" value="5" enum="OpType">
+ <constant name="OP_TYPE_MAX" value="6" enum="OpType">
Represents the size of the [enum OpType] enum.
</constant>
</constants>