We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d6a035 commit 66d95a0Copy full SHA for 66d95a0
src/nodes/core/NodeFunctionInput.js
@@ -8,7 +8,7 @@ class NodeFunctionInput {
8
*
9
* @param {String} type - The input type.
10
* @param {String} name - The input name.
11
- * @param {Number?} [count=null] - TODO (only relevant for GLSL).
+ * @param {Number?} [count=null] - If the input is an Array, count will be the length.
12
* @param {('in'|'out'|'inout')} [qualifier=''] - The parameter qualifier (only relevant for GLSL).
13
* @param {Boolean} [isConst=false] - Whether the input uses a const qualifier or not (only relevant for GLSL).
14
*/
@@ -29,7 +29,7 @@ class NodeFunctionInput {
29
this.name = name;
30
31
/**
32
- * TODO (only relevant for GLSL).
+ * If the input is an Array, count will be the length.
33
34
* @type {Number?}
35
* @default null
0 commit comments