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!);