Is there a way to hide the central controls of the three.js transform controls and only display the xyz arrows in the controller? I have highlighted the sections of the controller that I want to hide in the image below.
https://i.sstatic.net/eRz80.png
In my search, I came across the documentation mentioning that you can hide the axis individually like this. :
control.showX = false
control.showY = false
control.showZ = false
However, using this code hides the entire axis, whereas I specifically just want to remove the central part of the controls while keeping the axis arrows visible. Despite my efforts on Google, I haven't found anyone with a similar requirement.
Does anyone have a solution for hiding the area marked in red?
Thank you!