box3helper when initialized has a lineBasicMaterial
after replacing the material with
box3helper .material = new THREE.LineDashedMaterial( {
color: 0xffffff,
linewidth: 1,
scale: 1,
dashSize: 3,
gapSize: 1,
} );
the line is visible but there’s no dashes, and i can’t do computeLineDistances as it’s not a THREE.lineSegments object
is there any way to have dashed bounding box helper ?
the box3 values will be getting updated on translate or rotate action , so the helper needs to react to this change