r3f-animation

Installation
SKILL.md

React Three Fiber Animation

Quick Start

import { Canvas, useFrame } from '@react-three/fiber'
import { useRef } from 'react'

function RotatingBox() {
  const meshRef = useRef()

  useFrame((state, delta) => {
    meshRef.current.rotation.x += delta
    meshRef.current.rotation.y += delta * 0.5
  })
Installs
2
GitHub Stars
4.2K
First Seen
7 days ago
r3f-animation — zebbern/claude-code-guide