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
788
GitHub Stars
95
First Seen
Jan 20, 2026
r3f-animation — enzed/r3f-skills