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
18
GitHub Stars
4.6K
First Seen
May 31, 2026
r3f-animation — zebbern/claude-code-guide