From 078a01175c05ae2d0581b433f1c2cee238d128b7 Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <t1341870251@163.com>
Date: 星期五, 19 四月 2024 10:00:44 +0800
Subject: [PATCH] #
---
src/pages/base.jsx | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/src/pages/base.jsx b/src/pages/base.jsx
index 59a35bc..9d147e5 100644
--- a/src/pages/base.jsx
+++ b/src/pages/base.jsx
@@ -3,17 +3,18 @@
import { OrbitControls } from '@react-three/drei'
import { Environment, Sky } from '@react-three/drei'
import Help from '@/components/help'
+import Lights from '@/components/light'
+import Camera from '@/components/camera'
const Base = (props) => {
return (
<div style={{ height: '100%', width: '100%' }}>
<Canvas>
- <ambientLight intensity={Math.PI / 2} />
- <spotLight position={[10, 10, 10]} angle={0.15} penumbra={1} decay={0} intensity={Math.PI} />
- <pointLight position={[-10, -10, -10]} decay={0} intensity={Math.PI} />
+ <Lights />
+ <Camera />
+ <Sky distance={450000} sunPosition={[0, 1, 0]} inclination={0} azimuth={0.25} />
<Box position={[0, 0, 0]} />
<OrbitControls />
- <Sky distance={450000} sunPosition={[0, 1, 0]} inclination={0} azimuth={0.25} />
<Environment background preset="warehouse" />
<Help />
</Canvas>
@@ -35,7 +36,7 @@
onClick={(event) => click(!clicked)}
onPointerOver={(event) => (event.stopPropagation(), hover(true))}
onPointerOut={(event) => hover(false)}>
- <boxGeometry args={[1, 1, 1]} />
+ <boxGeometry args={[10, 10, 10]} />
<meshStandardMaterial color={hovered ? 'hotpink' : 'orange'} />
</mesh>
)
--
Gitblit v1.9.1