I'm using 2.0.0-dev.28 and when I click an atom, it zooms the atom and animate the zooming. How can I turn this off?
You can use stage.mouseControls.remove('clickPick-left')
Worked! Thanks, @ppillot
removing 'clickPick-left' also removes click signals. Is it possible to only remove the centering of the picked atom?
if the NGL object is available in the scope of your call to this function, you can use stage.mouseControls.remove('clickPick-left', NGL.MouseActions.movePick)
Most helpful comment
if the NGL object is available in the scope of your call to this function, you can use
stage.mouseControls.remove('clickPick-left', NGL.MouseActions.movePick)