Better default position for SnapshotEditor's camera
This commit is contained in:
parent
3cb3bbc92c
commit
7bc23d19e6
1 changed files with 3 additions and 3 deletions
|
@ -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}
|
||||||
|
|
Loading…
Reference in a new issue