We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Environment:
pygame-ce 2.5.0 (SDL 2.30.3, Python 3.12.1)
Current behavior:
The bug manifests when 2 conditions are met :
The bug consists of a rectangle that appears in front of the first rectangle.
Test code
from pygame import * from time import sleep init() _window = display.set_mode((960,540), 16) for x in range(100): x = x%20 _window.fill((0,0,0)) draw.rect(_window, (200,200,200), [50,50,100,20], x, 1) draw.rect(_window, (200,200,200), [180,50,100,20], 17, x) draw.rect(_window, (200,200,200), [50,200,100,50], 17, x) draw.rect(_window, (200,200,200), [180,200,100,35], 17, x) draw.rect(_window, (200,200,200), [50,350,100,35], x, 1) display.update() sleep(0.1)
The text was updated successfully, but these errors were encountered:
I feel like this issue is similar to this problem : #2285
Sorry, something went wrong.
No branches or pull requests
Environment:
Current behavior:
The bug manifests when 2 conditions are met :
The bug consists of a rectangle that appears in front of the first rectangle.
Test code
The text was updated successfully, but these errors were encountered: