I downloaded and brought out the object, connected the control using trackballcontrols.
It is necessary for me that, when manipulating with a mouse, an object spun only along the X axis, and all other axes, zoom, object transfer using PCM were disabled.
How to do it? Perhaps in trackballcontrols, you can somehow change the methods for this. Thank!
controls = new THREE.TrackballControls( camera ); controls.rotateSpeed = 10; controls.noZoom = true; controls.noPan = true;