We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Seems it's working now?
import React from 'react' import { Canvas } from '@react-three/fiber/native' import { OrbitControls } from '@react-three/drei/native' const Plane: React.FC = () => { return ( <mesh rotation={[0, 0, 0]} position={[0, 0, 0]}> <planeGeometry args={[1.8, 3.2]} /> <meshStandardMaterial color='lightblue' /> </mesh> ) } const App3D: React.FC = () => { return ( <Canvas> <OrbitControls /> <ambientLight intensity={1} /> <pointLight position={[0, 0, 1]} intensity={1.5} /> <Plane /> </Canvas> ) } export default App3D
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Seems it's working now?
The text was updated successfully, but these errors were encountered: