sprites-and-images

Create and manipulate Phaser 4 Sprites and Images with unified textures, frames, and visual properties.

Updated Apr 25, 2026
One-click install
npx skills add https://github.com/dzyamik/furry-match3 --skill sprites-and-images-dzyamik
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: sprites-and-images
Source: https://github.com/dzyamik/furry-match3/tree/main/.claude/skills/sprites-and-images
Command: npx skills add https://github.com/dzyamik/furry-match3 --skill sprites-and-images-dzyamik

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Creating and manipulating Phaser 4 Sprites and Images quickly and consistently, reducing boilerplate and errors when working with textures, frames, and common visual operations.

Core Features & Use Cases

  • Factory methods for creating Sprites and Images in scenes
  • Texture and frame management with setTexture and setFrame
  • Shared component mixin system enabling consistent position, scale, rotation, tint, flip, alpha, origin, and depth handling
  • Use case: build a player character, UI element, or animated background with reliable object behavior

Quick Start

Create a sprite with a texture and adjust its basic properties in a scene's create() method.

Frequently Asked Questions about sprites-and-images

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

FAQPage Schema
How do I create and manipulate Phaser 4 sprites and images in a game scene?

You can create Phaser 4 sprites and images using factory methods within a scene, then manipulate their position, scale, rotation, tint, and depth through a unified API for reliable game object behavior.

What is the difference between sprites and images when managing textures in Phaser 4?

Both sprites and images support texture and frame management via setTexture and setFrame, but sprites typically handle animation, while images are ideal for static UI elements and backgrounds.

How do I change the texture and frame of a game object in Phaser 4?

Change a game object's texture and frame in Phaser 4 by calling the setTexture and setFrame methods, allowing dynamic visual updates for characters and UI elements during gameplay.

Can I apply shared visual properties like tint, alpha, and origin to multiple Phaser game objects?

Yes, a shared component mixin system enables consistent application of visual properties including tint, alpha, origin, flip, scale, rotation, and depth handling across multiple Phaser sprites and images.

Does this Phaser sprite and image API require external dependencies or component libraries?

No, this Skill operates without external dependencies, utilizing standard Phaser API references to handle visual operations and game object creation directly within your scenes.

What is the best way to reduce boilerplate when setting up visual operations for Phaser game objects?

Using unified factory methods for sprites and images reduces boilerplate and errors by providing a consistent API for standard visual operations like positioning, scaling, and texture management.