diff options
author | Yuri Roubinsky <chaosus89@gmail.com> | 2022-02-02 21:12:45 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-02 21:12:45 +0300 |
commit | ca42bfb2a5c91a52ea14302aa3bbf7292e387b9b (patch) | |
tree | 1ee02bd3557c14729b5a02f44854ea208517d777 /doc/classes/VisualShaderNodeDerivativeFunc.xml | |
parent | 6ff753675a1c6f86ece68905bdedbf5e81712800 (diff) | |
parent | 59af063636b3e17df488ad0d9e059919aa03fcf1 (diff) |
Merge pull request #57504 from Chaosus/vs_vector2
Diffstat (limited to 'doc/classes/VisualShaderNodeDerivativeFunc.xml')
-rw-r--r-- | doc/classes/VisualShaderNodeDerivativeFunc.xml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/classes/VisualShaderNodeDerivativeFunc.xml b/doc/classes/VisualShaderNodeDerivativeFunc.xml index f7edac8597..704af44d04 100644 --- a/doc/classes/VisualShaderNodeDerivativeFunc.xml +++ b/doc/classes/VisualShaderNodeDerivativeFunc.xml @@ -20,10 +20,13 @@ <constant name="OP_TYPE_SCALAR" value="0" enum="OpType"> A floating-point scalar. </constant> - <constant name="OP_TYPE_VECTOR" value="1" enum="OpType"> + <constant name="OP_TYPE_VECTOR_2D" value="1" enum="OpType"> + A 2D vector type. + </constant> + <constant name="OP_TYPE_VECTOR_3D" value="2" enum="OpType"> A 3D vector type. </constant> - <constant name="OP_TYPE_MAX" value="2" enum="OpType"> + <constant name="OP_TYPE_MAX" value="3" enum="OpType"> Represents the size of the [enum OpType] enum. </constant> <constant name="FUNC_SUM" value="0" enum="Function"> |