What problem does it solve? Phaser 4 game developers often struggle with scheduling time-based events correctly, hitting off-by-one errors with repeat counts, forgetting that Timelines start paused, or misusing timeScale when building slow-motion effects and cutscenes. ## Core Features & Use Cases - TimerEvent Management: Create one-shot delayed calls, finite repeating timers, and infinite loops via the scene Clock with full control over pause, removal, and reset. - Timeline Sequencing: Choreograph cutscenes mixing callbacks, tweens, sounds, property sets, and custom events using absolute (at) or relative (from, in) timing. - Time Control: Apply per-clock and per-event timeScale for slow motion or fast forward, and read precise progress and remaining-time state from any timer. - Use Case: When building a wave spawner that fires every 3 seconds, a delayed scene transition after game over, or a scripted intro cutscene with synchronized tweens and sound effects, this Skill provides the correct API patterns and flags the common pitfalls. ## Quick Start Ask the AI to add a repeating timer or a sequenced cutscene timeline to your Phaser 4 scene using the Clock and Timeline APIs.