phaser-gamedev

Organize Phaser 3 games into scene-based architecture with physics and asset guidance.

Updated Feb 12, 2026
One-click install
npx skills add https://github.com/DalvinCodes/ai-skills --skill phaser-gamedev-dalvincodes
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: phaser-gamedev
Source: https://github.com/DalvinCodes/ai-skills/tree/main/phaser-gamedev
Command: npx skills add https://github.com/DalvinCodes/ai-skills --skill phaser-gamedev-dalvincodes

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Organizes Phaser 3 game development into scalable, scene-based architecture.

Core Features & Use Cases

  • Scene-first architecture guidance for organizing games into Boot, Menu, Game, and UI overlay scenes.
  • Guidance on physics choices (Arcade, Matter, or None), asset loading, input handling, and debugging/optimization patterns like pooling and culling.
  • References and patterns to accelerate production, including tilemaps, animations, and scene transitions.

Quick Start

Launch a Phaser project with a BootScene to preload assets, then move to Menu and Game scenes, using an overlay UI scene for HUD.

Frequently Asked Questions about phaser-gamedev

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I structure a Phaser 3 game project for scalability?

Structure your Phaser 3 game using scene-based architecture by separating Boot, Menu, Game, and UI overlay scenes to organize loading and logic for maintainability.

What is scene architecture in Phaser 3 game development?

Scene architecture in Phaser 3 organizes game flow into discrete states like Boot for asset loading, Menu for navigation, and Game scenes, plus UI overlays for HUD, keeping logic modular.

How do I choose between Arcade and Matter physics in Phaser 3?

Choose between Arcade and Matter physics by evaluating game needs: Arcade suits simple collision detection, while Matter handles complex body simulations, or use no physics for UI-heavy games.

What is the best way to optimize Phaser 3 game performance?

Optimize Phaser 3 game performance by applying object pooling for reusable entities, implementing tilemap culling, and structuring asset loading pipelines efficiently across Boot scenes.

Does this Phaser 3 architecture support tilemaps and animations?

Yes, this Phaser 3 architecture supports tilemaps and animations through provided references and patterns that accelerate production, including scene transitions and asset loading pipelines.

When should I use a UI overlay scene in Phaser 3?

Use a UI overlay scene in Phaser 3 when you need a persistent HUD displayed above active gameplay, allowing the Game scene to handle mechanics while the overlay manages interface elements.