import { useRef, useState } from "react"; import { useFrame } from "@react-three/fiber"; import { Box as NativeBox } from "@react-three/drei"; export default function Box(props) { const mesh = useRef(); const [hovered, setHover] = useState(false); const [active, setActive] = useState(false); useFrame(() => (mesh.current.rotation.x = mesh.current.rotation.y += 0.01)); return ( setActive(!active)} onPointerOver={() => setHover(true)} onPointerOut={() => setHover(false)} > ); }