| | |
| | | import { useRef, useState } from 'react' |
| | | import { Canvas, useFrame } from '@react-three/fiber' |
| | | 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' |
| | | import Controls from '../components/ctrl' |
| | | import Buildings from '../components/buidings' |
| | | import TreeGroup from '../components/tree-group' |
| | | import House from '../components/house' |
| | |
| | | > |
| | | <Lights /> |
| | | <Camera /> |
| | | <Controls /> |
| | | <Sky distance={450000} sunPosition={[0, 1, 0]} inclination={0} azimuth={0.25} /> |
| | | {/* <Buildings /> */} |
| | | {/* <TreeGroup /> */} |
| | | {/* <House /> */} |
| | | <Buildings /> |
| | | <TreeGroup /> |
| | | <House /> |
| | | <Warehouse /> |
| | | <OrbitControls /> |
| | | <Environment background preset="night" /> |
| | | <Help /> |
| | | </Canvas> |
| | | {/* <Left /> */} |
| | | <Left /> |
| | | {/* <Right /> */} |
| | | </div> |
| | | |