skills/modelscope.cn/particles-gpu

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!);
Installs
1
First Seen
Aug 18, 2026
particles-gpu from modelscope.cn