diff options
author | Yuri Roubinsky <chaosus89@gmail.com> | 2022-02-01 11:32:01 +0300 |
---|---|---|
committer | Yuri Roubinsky <chaosus89@gmail.com> | 2022-02-02 19:59:34 +0300 |
commit | 59af063636b3e17df488ad0d9e059919aa03fcf1 (patch) | |
tree | 4db4a9a8ad184b00a8cab9f1869bad226fe96f14 /doc/classes/VisualShaderNodeSwitch.xml | |
parent | bf12719ccabcea9bf9b274f77511e02581678774 (diff) |
Add support for 2D vector type to visual shaders
Diffstat (limited to 'doc/classes/VisualShaderNodeSwitch.xml')
-rw-r--r-- | doc/classes/VisualShaderNodeSwitch.xml | 13 |
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> |