particles-gpu

Installation
SKILL.md

GPU Particles

Render massive particle counts (10k-1M+) efficiently using GPU instancing and custom shaders.

Quick Start

import { useRef, useMemo } from 'react';
import { useFrame } from '@react-three/fiber';
import * as THREE from 'three';

function Particles({ count = 10000 }) {
  const points = useRef<THREE.Points>(null!);
Related skills

More from bbeierle12/skill-mcp-claude

Installs
122
GitHub Stars
8
First Seen
Jan 23, 2026