-
Notifications
You must be signed in to change notification settings - Fork 8
Description
Issue
Levels that scroll horizontally or vertically (level 11 and 18 in normal mode) tend to play at a noticeably lower FPS on lower end hardware, but from what I can tell, the timer is unaffected by this lag. So even though the game becomes impossible to play at full speed, the timer counts as if you were. You can see an example of this on my speedrun. This problem, of course, makes it much harder to speedrun the game on slower computers or while recording.
Solution
The ideal fix would be some form of optimization for scrolling levels. As far as I can tell, the bottleneck seems to be CPU. An easier fix would probably be making the timer dependent on FPS by incrementing an internal timer for each frame and dividing by the target framerate to get the actual time to display.
EDIT: Another option would be to make the game skip frames instead of slowing down, if that's somehow possible. It wouldn't appear to run as well, but it would fix the issue in the context of speedrunning.
I've never used phaser.js so I'm not sure how easy this is to fix, but I would be very grateful if you could implement either of these solutions.