pygbag icon indicating copy to clipboard operation
pygbag copied to clipboard

Fix Bug on iOS Devices: "Ready to Start!" Screen Unresponsive

Open Dor-sketch opened this issue 1 year ago • 1 comments

Fixes Issue #138 where the "Ready to Start!" screen is unresponsive on iOS devices. Updated the waiting loop in custom_site() in the template HTML files.

Changes Made:

  • Modified the waiting loop in custom_site() to improve event handling on iOS devices.

Testing:

  • Tested on one iOS device; further testing needed on other devices.

Dor-sketch avatar Jul 08 '24 11:07 Dor-sketch

Thanks, fix indeed works for iOS but it relies on pygame, so it is only valid for "default.tmpl". For the other templates pygame is either not loaded, or must not init canvas contexts. So a javascript solution would have to be used there because browser don't allow to change contexts at runtime.

Also in its present form i fear it would defeat the chrome media-user-engagement learning process which allow often played games to start music automatically without a click. I would prefer is a way with detection that device is iOS and apply the fix only in that case.

pmp-p avatar Jul 11 '24 06:07 pmp-p