From 66d95a00bd641ffe1f72ac93f74b69cf40973b3e Mon Sep 17 00:00:00 2001 From: sunag Date: Tue, 3 Dec 2024 05:52:33 -0300 Subject: [PATCH] Update NodeFunctionInput.js (#30020) --- src/nodes/core/NodeFunctionInput.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nodes/core/NodeFunctionInput.js b/src/nodes/core/NodeFunctionInput.js index e035185a9df06b..3808927af115a8 100644 --- a/src/nodes/core/NodeFunctionInput.js +++ b/src/nodes/core/NodeFunctionInput.js @@ -8,7 +8,7 @@ class NodeFunctionInput { * * @param {String} type - The input type. * @param {String} name - The input name. - * @param {Number?} [count=null] - TODO (only relevant for GLSL). + * @param {Number?} [count=null] - If the input is an Array, count will be the length. * @param {('in'|'out'|'inout')} [qualifier=''] - The parameter qualifier (only relevant for GLSL). * @param {Boolean} [isConst=false] - Whether the input uses a const qualifier or not (only relevant for GLSL). */ @@ -29,7 +29,7 @@ class NodeFunctionInput { this.name = name; /** - * TODO (only relevant for GLSL). + * If the input is an Array, count will be the length. * * @type {Number?} * @default null