diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-02-07 12:50:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-07 12:50:44 +0100 |
commit | bfb75d107c91fc36c07b917a12de715b6b107ef9 (patch) | |
tree | 5f25deb142f992f03eef687b3673f6134752ed21 /doc/classes/VisualShaderNodeParticleRandomness.xml | |
parent | b02460266065413957eae3de34f9aef49c5a72f1 (diff) | |
parent | a6e280c5de51fd8c3b5d1ab1161fd5ee58f1e6be (diff) |
Merge pull request #57741 from Chaosus/vs_fixes
Diffstat (limited to 'doc/classes/VisualShaderNodeParticleRandomness.xml')
-rw-r--r-- | doc/classes/VisualShaderNodeParticleRandomness.xml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/doc/classes/VisualShaderNodeParticleRandomness.xml b/doc/classes/VisualShaderNodeParticleRandomness.xml index 2dec41105c..880208b136 100644 --- a/doc/classes/VisualShaderNodeParticleRandomness.xml +++ b/doc/classes/VisualShaderNodeParticleRandomness.xml @@ -8,14 +8,20 @@ </tutorials> <members> <member name="op_type" type="int" setter="set_op_type" getter="get_op_type" enum="VisualShaderNodeParticleRandomness.OpType" default="0"> + A type of operands and returned value. </member> </members> <constants> <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_MAX" value="2" enum="OpType"> + <constant name="OP_TYPE_VECTOR_3D" value="2" enum="OpType"> + A 3D vector type. + </constant> + <constant name="OP_TYPE_MAX" value="3" enum="OpType"> Represents the size of the [enum OpType] enum. </constant> </constants> |