What problem does it solve? Phaser 4 game developers need accurate guidance on creating and manipulating Sprite and Image game objects, including the component mixin system, factory methods, and breaking changes from Phaser 3 such as the removal of setTintFill. ## Core Features & Use Cases - Factory Methods: Covers this.add.sprite and this.add.image signatures, parameters, and internal initialization sequences. - Component Mixin Reference: Documents Transform, Alpha, Tint, Origin, Depth, Flip, Size, TextureCrop, ScrollFactor, BlendMode, and Visible components with properties and chainable methods. - Specialized Objects: Explains NineSlice, TileSprite, Blitter, and Video game objects for UI panels, parallax backgrounds, batched rendering, and video playback. - Use Case: When building a Phaser 4 platformer, use this Skill to correctly position a player sprite, apply tints for damage feedback, flip it based on movement direction, and manage render order with depth. ## Quick Start Ask how to create a sprite in Phaser 4, set its texture frame, tint, alpha, origin, and depth, and chain visual operations in a Scene's create method.