loading-assets

Load and manage Phaser 4 assets with this.load methods and preload sequencing.

Updated Apr 22, 2026
One-click install
npx skills add https://github.com/arnaudruffin/dvx-phaser-game --skill loading-assets-arnaudruffin
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: loading-assets
Source: https://github.com/arnaudruffin/dvx-phaser-game/tree/main/.agents/skills/loading-assets
Command: npx skills add https://github.com/arnaudruffin/dvx-phaser-game --skill loading-assets-arnaudruffin

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Loading assets for Phaser 4 scenes can be error-prone and repetitive; this Skill centralizes and documents how to use the Loader to manage images, spritesheets, atlases, audio, JSON, tilemaps, bitmap fonts, and more.

Core Features & Use Cases

  • Comprehensive asset types supported by the Phaser Loader, including images, spritesheets, atlases, audio, JSON data, tilemaps, and fonts
  • Clear preload sequencing and progress tracking to ensure assets are ready before scene start
  • Real-world scenario: preload a level with background textures, enemies sprites, UI fonts, and map data

Quick Start

Preload assets in your Phaser 4 scene by queuing each asset with this.load and ensure the scene starts after loading completes.

Frequently Asked Questions about loading-assets

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

FAQPage Schema
How do I preload spritesheets and tilemaps in Phaser 4?

Preload spritesheets and tilemaps in Phaser 4 by queuing each file with this.load methods inside the scene preload function, guaranteeing all map and image data is ready before scene execution starts.

What is the best way to track asset loading progress in Phaser 4?

Track asset loading progress in Phaser 4 by utilizing built-in Loader progress events to monitor the download status of images, audio, and JSON data queued during the preload sequence.

Can I load audio and bitmap fonts at runtime instead of during preload in Phaser?

Yes, you can load audio and bitmap fonts at runtime in Phaser. The Loader supports both preload sequencing and on-demand runtime loading scenarios to manage assets whenever required.

How do I ensure Phaser 4 assets are fully loaded before scene start?

Ensure Phaser 4 assets are fully loaded before scene start by implementing a defined preload workflow with this.load methods, relying on the Loader to guarantee all queued files complete.

Does the Phaser Loader support texture atlases and JSON data?

Yes, the Phaser Loader supports comprehensive asset types including texture atlases and JSON data, centralizing the management of diverse game files into a single loading pipeline.