I've been working on a project in React Three Fiber using this codesandbox for practice.
My query regarding the demo is about setting a wider initial zoom in OrbitControls
to view more small stars. Can anyone help with this?
Below is the code snippet where I believe the zoom values need to be passed:
<OrbitControls
enableZoom={true}
enablePan={true}
enableRotate={true}
/>
I've been searching through the official documentation to figure out the correct configuration for OrbitControls
to set the initial zoom level.