Hide the axis arrow


Could you please guide me on which property can be used to hide the redundant arrows?

post a link to your project online or github repo

this is my code and also console.log(child)


post the full code into a gist https://gist.github.com/

Are you intentionally using transform controls to visualize arrow helpers?

1 Like

You can see my code. createArrowHelpers.tsx · GitHub

yes.
const control = new TransformControls(
worldRef.current!.camera.three,
worldRef.current!.renderer.three.domElement
);

Could you use individual ArrowHelpers or you need the controls functionality? Typically you’d add one instance of TransformControls attaching and detatching to and from the current object needing transformation, I think you may have to modify TransformControls directly to hide this secondary cone on the negative axii

The relative code can be found in the following section of TransformControls you should be able to comment out all CylinderGeometry instances with - 0.3 values…