I’m trying to only display specific bones in a skeletonhelper…
var helper = new THREE.SkeletonHelper( child.skeleton.bones[0] );
scene.add( helper );
helper.bones[6].visible = false;
This however doesn’t work… All bones are visible…
Is there a way to toggle the visibility per bone?