Skip to content

Commit 66d95a0

Browse files
authored
Update NodeFunctionInput.js (#30020)
1 parent 5d6a035 commit 66d95a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/nodes/core/NodeFunctionInput.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class NodeFunctionInput {
88
*
99
* @param {String} type - The input type.
1010
* @param {String} name - The input name.
11-
* @param {Number?} [count=null] - TODO (only relevant for GLSL).
11+
* @param {Number?} [count=null] - If the input is an Array, count will be the length.
1212
* @param {('in'|'out'|'inout')} [qualifier=''] - The parameter qualifier (only relevant for GLSL).
1313
* @param {Boolean} [isConst=false] - Whether the input uses a const qualifier or not (only relevant for GLSL).
1414
*/
@@ -29,7 +29,7 @@ class NodeFunctionInput {
2929
this.name = name;
3030

3131
/**
32-
* TODO (only relevant for GLSL).
32+
* If the input is an Array, count will be the length.
3333
*
3434
* @type {Number?}
3535
* @default null

0 commit comments

Comments
 (0)