diff --git a/src/materials/nodes/NodeMaterial.js b/src/materials/nodes/NodeMaterial.js index c498b866c498c5..fb13610027e5cf 100644 --- a/src/materials/nodes/NodeMaterial.js +++ b/src/materials/nodes/NodeMaterial.js @@ -815,7 +815,6 @@ class NodeMaterial extends Material { * Setups the computation of the material's diffuse color. * * @param {NodeBuilder} builder - The current node builder. - * @param {BufferGeometry} geometry - The geometry. */ setupDiffuseColor( builder ) { diff --git a/src/nodes/core/StackNode.js b/src/nodes/core/StackNode.js index 20fe951a359318..b3131f79d063e7 100644 --- a/src/nodes/core/StackNode.js +++ b/src/nodes/core/StackNode.js @@ -233,7 +233,6 @@ class StackNode extends Node { * Represents a `switch` statement in TSL. * * @param {any} expression - Represents the expression. - * @param {Function} method - TSL code which is executed if the condition evaluates to `true`. * @return {StackNode} A reference to this stack node. */ Switch( expression ) { diff --git a/src/nodes/core/VarNode.js b/src/nodes/core/VarNode.js index 62ca51d883346a..2388e31d989de2 100644 --- a/src/nodes/core/VarNode.js +++ b/src/nodes/core/VarNode.js @@ -359,7 +359,6 @@ export const Const = ( node, name = null ) => createVar( node, name, true ).toSt * @tsl * @function * @param {Node} node - The node for which a variable should be created. - * @param {?string} name - The name of the variable in the shader. * @returns {VarNode} */ export const VarIntent = ( node ) => { diff --git a/src/renderers/common/BindGroup.js b/src/renderers/common/BindGroup.js index 6240a4b0e531cf..519133e70dee6a 100644 --- a/src/renderers/common/BindGroup.js +++ b/src/renderers/common/BindGroup.js @@ -14,7 +14,6 @@ class BindGroup { * * @param {string} name - The bind group's name. * @param {Array} bindings - An array of bindings. - * @param {number} index - The group index. */ constructor( name = '', bindings = [] ) {