-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Activity opens to black canvas #21
Comments
I was never able to reproduce it, Tried with starting it through ring as well. @Dimi20cen @sourabhaa Can you please check if you can reproduce it. |
It opens normally for me, tested on sugar live-build, pygame 1.9.4.post1. |
I'm running pygame 2.5.0 and this is what happens; Screencast.from.2023-09-06.13-44-59.webmHaven't taken a close look though. |
I've update to pygame 2.4.0 and the issue of black canvas is present. @jriyyya, I would suggest updating to a newer version of pygame to be able to reproduce the issue. Removing
from the |
Seems we'll need to reconsider our use of |
From what I understand those lines are not doing anything. Hopefully I dont miss something. Openned PR #22 |
VIDEORESIZE event is triggered on activity startup, which is handled by calling pygame.display.set_mode(). This returns an empty Surface object completely discarding the previous state of screen. * Call draw functions after resizing to populate the newly returned empty surface with game elements, * Initialize pygame mixer.
VIDEORESIZE event is triggered on activity startup, which is handled by calling pygame.display.set_mode(). This returns an empty Surface object completely discarding the previous state of screen. * Call draw functions after resizing to populate the newly returned empty surface with game elements, * Initialize pygame mixer.
Activity currently opens to a black canvas.
The text was updated successfully, but these errors were encountered: