I've been messing around with react-three-fiber and really liked the OrbitControls element which lets you control the camera by dragging the mouse around.
My doubt is if there's a way to control the initial position/perspective of the element.
I'm creating a demo and I'm using a a plane to simulate the ground. It looks fine when seen from above but on the default position it becomes invisible, like looking a sheet of paper horizontally.
I tried to mess around with some properties like position and minPolarAngle but couldn't observe any difference. Any one out there could help on this one?
<Canvas>
<OrbitControls position={[10, -40, 0]} /> // 'position' doesn't seem to work
<ambientLight intensity={0.4} />
<Suspense fallback={"...Loading"}>
<Stars />
<Box/>
<Ground />
</Suspense>
</Canvas>