Maintenance in progress: we are indexing a large batch of new skills. Some pages may load slowly or briefly show no results. Nothing is lost, and everything is back to normal within the hour.

Phaser

Phaser.js 2D game development skill for web games, arcade physics, and web deployment.

majiayu000 b99cfdd 2 files · 1.6 KB Updated 567 repo stars

File contents

Phaser Skill

Phaser.js 2D game development for web.

Overview

This skill provides capabilities for creating 2D web games using Phaser.js.

Capabilities

  • Configure game scenes
  • Implement arcade physics
  • Handle sprites and animations
  • Set up input systems
  • Deploy to web

Usage Patterns

class GameScene extends Phaser.Scene {
    preload() {
        this.load.image('player', 'assets/player.png');
    }
    create() {
        this.player = this.physics.add.sprite(100, 100, 'player');
    }
}

References

majiayu000/claude-skill-registry-data/tree/main/gaming/phaser commit b99cfddb60

Frequently asked questions

npx skillmds add majiayu000/phaser