threejs-animation

Installation
SKILL.md

Three.js Animation

Quick Start

import * as THREE from "three";

// Simple procedural animation
const clock = new THREE.Clock();

function animate() {
  const delta = clock.getDelta();
  const elapsed = clock.getElapsedTime();

  mesh.rotation.y += delta;
  mesh.position.y = Math.sin(elapsed) * 0.5;
Installs
7.2K
GitHub Stars
2.4K
First Seen
Jan 20, 2026
threejs-animation — cloudai-x/threejs-skills