What problem does it solve? When building games with Phaser 4, developers need accurate guidance on creating and controlling Sprite and Image game objects, including which factory methods to call, how the component mixin system works, and which APIs changed from Phaser 3. ## Core Features & Use Cases - Factory Methods: Covers this.add.sprite and this.add.image signatures, parameters, and return types for placing game objects in a Scene. - Component Mixin Reference: Documents Transform, Alpha, Tint, Origin, Depth, Flip, Size, TextureCrop, and other components with their 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: While building a platformer, you need to flip the player sprite horizontally, tint it red on damage, and layer it above the background using depth, all with correct Phaser 4 syntax. ## Quick Start Ask the AI to create a Phaser 4 sprite at position 100, 200 with the player texture, scaled to 2x and tinted red.