phaser-movement-testing
Installation
SKILL.md
Phaser Movement Testing
Overview
Standardize Phaser movement testing patterns. Phaser uses continuous key state checking, not discrete events.
Key Input Pattern
Phaser requires keydown/keyup pattern, not single press events
Pattern:
keydown ArrowRight
sleep 0.5
keyup ArrowRight
Why: Phaser checks key state continuously in update() loop, not on single events.