Hello, I’m working with Three.js and facing a specific issue with animation targeting. I’m trying to animate a model by referencing a specific root using action = this.mixer.clipAction( e, this.modelContainer.getObjectByName("body_lower") );
. However, I encounter an error when the animation track targets a child node that isn’t a direct descendant of the specified root. The error message is:
Character.ts:238 THREE.PropertyBinding: No target node found for track: leg_lowerR002.scale.
This seems to be happening because the root I provided isn’t the parent of the node being animated. Additionally, this issue is causing problems with the action.fadeOut()
method not functioning correctly.
Has anyone encountered this issue before, and could you suggest any modifications to correctly reference the node or restructure the parent-child relationship for the animation to work properly? Any help or guidance would be greatly appreciated!