promptsandmore.com

Click. Tweak. Observe. Understand.

What Is Prompts & More?

Prompts & More is an interactive procedural systems playground for game developers. It features live visual demos of algorithms like Perlin noise, Voronoi diagrams, cellular automata, L-systems, Wave Function Collapse, and agent-based simulations.

What "Prompts" Means Here

In this context, "prompts" refers to system prompts — starting conditions and parameters for procedural algorithms, not AI text prompts. Each visualizer lets you adjust parameters (prompts) and immediately see how the algorithm responds.

All code is shared and open. Every visualizer includes a "Show Code" button that exports the current state as runnable JavaScript code. You can take this code and:

The code is designed to be clear and educational, making it easy to understand and adapt to your specific game engine or framework. Whether you're using Unity, Godot, PICO-8, or any other engine listed on our tools page, you can take these algorithms and implement them in your project.

Who This Is For

What Makes This Different

Algorithms Covered

The site includes interactive visualizers for:

Use Cases

How to Use This Site

  1. Browse categories on the homepage to find algorithms you're interested in
  2. Click any category to open an interactive visualizer
  3. Adjust parameters using sliders and toggles to see how the algorithm responds
  4. Click "Show Code" to export the current state as runnable JavaScript code
  5. Read the explanations below each visualizer to understand failure modes, scaling behavior, and related algorithms

Technical Details

All visualizers run entirely client-side using vanilla JavaScript, HTML5 Canvas, and WebGL (Three.js for 3D demos). No backend, no build step, no dependencies beyond what's included. The code is modular ES6 modules that can be easily adapted to any game engine or framework.

Philosophy

This site emphasizes algorithms over content — understanding how systems work, not just what they produce. It favors systems over scripts — emergent behavior from simple rules. It prioritizes interactive over descriptive — touch parameters, see results immediately. And it values visualization over abstraction — see algorithms in action.