Wikiprompt
Talk

Three.js Particle Dodge-em-up with Repulsion

From Wikiprompt, the free prompt encyclopedia

loshu2000
Contributed byloshu2000Source

Apr 23, 2026

Three.js Particle Dodge-em-up with Repulsion A technical prompt for building an interactive particle system in Three.js with mouse repulsion and glow effects.

Prompt ContentSave

Create a Three.js scene featuring a Points system with 15,000 particles. Use a custom ShaderMaterial for a glow effect. Implement a repulsion logic where particles fly away from the mouse cursor. JavaScript // Core repulsion math let dist = particlePos.distanceTo(mousePos); if (dist < 5) { direct...

Sign in to see the full prompt

Sign In to Continue

Usage

This prompt is designed for use with coding. Copy the prompt content above and paste it into your preferred AI tool.

For best results, you may customize the placeholders (indicated by square brackets or capital letters) with your specific requirements.

References

Categories:coding| prompts.chat| three-js| particle-system

Talk