Better default position for SnapshotEditor's camera

This commit is contained in:
Aria Minaei 2021-08-08 10:25:11 +02:00
parent 3cb3bbc92c
commit 7bc23d19e6

View file

@ -14,13 +14,13 @@ import {useThree} from '@react-three/fiber'
const camConf = types.compound({ const camConf = types.compound({
transform: types.compound({ transform: types.compound({
position: types.compound({ position: types.compound({
x: types.number(0), x: types.number(10),
y: types.number(10), y: types.number(10),
z: types.number(0), z: types.number(0),
}), }),
target: types.compound({ target: types.compound({
x: types.number(0), x: types.number(0),
y: types.number(10), y: types.number(0),
z: types.number(0), z: types.number(0),
}), }),
}), }),
@ -68,7 +68,7 @@ export default function useSnapshotEditorCamera(
const node = ( const node = (
<> <>
<PerspectiveCamera makeDefault ref={camRef} position={[0, 10, 0]} /> <PerspectiveCamera makeDefault ref={camRef} position={[0, 102, 0]} />
<OrbitControls <OrbitControls
makeDefault makeDefault
ref={orbitControlsRef} ref={orbitControlsRef}