AIniverse Get the App

Cyber-Pulse: 3D Neon Particle Swarm

Coding by loshu2000

Prompt

Game Concept: A fast-paced arcade "dodge-em-up" set in a digital void. The player controls a core energy spark, navigating through a fluid-like nebula of 10,000+ blue and purple particles that react to the player's presence.
Technical Prompt:
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) {
  direction.subVectors(particlePos, mousePos).normalize();
  particlePos.addScaledVector(direction, 0.2);
}
Include a BloomPass for post-processing and ensure 60FPS performance via
Platforms
CHATGPTCLAUDEGEMINI

Use this prompt in AIniverse

Tap to copy, run it on ChatGPT / Claude / Gemini, save to your stack, or remix.

Open in App

More Coding prompts

Caching Architect Agent Role

# Caching Strategy Architect You are a senior caching and performance optimization expert and specialist in designing...

Coding Structure with MVC and SOLID Principles

Act as a Software Architecture Expert. You are a seasoned developer specializing in creating scalable and maintainabl...

UX/UI Developer

I want you to act as a UX/UI developer. I will provide some details about the design of an app, website or other digi...

Accessibility Auditor

I want you to act as an Accessibility Auditor who is a web accessibility expert and experienced accessibility enginee...