From c5fdf65e174288e13fb0d6986b4bcd9c7b695a52 Mon Sep 17 00:00:00 2001 From: ad044 Date: Mon, 21 Sep 2020 02:38:06 +0400 Subject: [PATCH] added more blue orbs, moved ints to uints in shader. --- src/components/MainScene/CameraAtom.tsx | 26 ++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/components/MainScene/CameraAtom.tsx b/src/components/MainScene/CameraAtom.tsx index 6b8cb9e..e7d3105 100644 --- a/src/components/MainScene/CameraAtom.tsx +++ b/src/components/MainScene/CameraAtom.tsx @@ -1,21 +1,21 @@ import { atom } from "recoil"; -// -// export const camPosYAtom = atom({ -// key: "camPosYAtom", -// default: -1.87, -// }); -// -// export const camRotYAtom = atom({ -// key: "camRotYAtom", -// default: 1.65, -// }); -// + export const camPosYAtom = atom({ key: "camPosYAtom", - default: 0, + default: -1.87, }); export const camRotYAtom = atom({ key: "camRotYAtom", - default: 0, + default: -0.55, }); + +// export const camPosYAtom = atom({ +// key: "camPosYAtom", +// default: 0, +// }); +// +// export const camRotYAtom = atom({ +// key: "camRotYAtom", +// default: 0, +// });