summaryrefslogtreecommitdiff
path: root/doc/classes/VisualShaderNodeDerivativeFunc.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/VisualShaderNodeDerivativeFunc.xml
parent6ff753675a1c6f86ece68905bdedbf5e81712800 (diff)
parent59af063636b3e17df488ad0d9e059919aa03fcf1 (diff)
Merge pull request #57504 from Chaosus/vs_vector2
Diffstat (limited to 'doc/classes/VisualShaderNodeDerivativeFunc.xml')
-rw-r--r--doc/classes/VisualShaderNodeDerivativeFunc.xml7
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">