particles-physics

Installation
SKILL.md

Particle Physics

Apply forces, fields, and constraints to create dynamic particle motion.

Quick Start

// Simple gravity + velocity
useFrame((_, delta) => {
  for (let i = 0; i < count; i++) {
    // Apply gravity
    velocities[i * 3 + 1] -= 9.8 * delta;
Related skills

More from bbeierle12/skill-mcp-claude

Installs
93
GitHub Stars
8
First Seen
Jan 23, 2026