Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/nodes/accessors/SkinningNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ class SkinningNode extends Node {
}

/**
* Transforms the given vertex normal via skinning.
* Computes the transformed/skinned vertex position of the previous frame.
*
* @param {NodeBuilder} builder - The current node builder.
* @return {Node<vec3>} The skinned position from the previous frame.
Expand All @@ -200,7 +200,8 @@ class SkinningNode extends Node {
}

/**
* Returns `true` if bone matrices from the previous frame are required.
* Returns `true` if bone matrices from the previous frame are required. Relevant
* when computing motion vectors with {@link VelocityNode}.
*
* @param {NodeBuilder} builder - The current node builder.
* @return {boolean} Whether bone matrices from the previous frame are required or not.
Expand Down
Loading