forked from Mirrors/RGSX
Suppression des rectangles de fond noir des popups et warnings dans display.py
This commit is contained in:
@@ -13,8 +13,13 @@ OVERLAY.fill((0, 0, 0, 180))
|
|||||||
def init_display():
|
def init_display():
|
||||||
"""Initialise l’écran Pygame."""
|
"""Initialise l’écran Pygame."""
|
||||||
screen = pygame.display.set_mode((0, 0), pygame.FULLSCREEN)
|
screen = pygame.display.set_mode((0, 0), pygame.FULLSCREEN)
|
||||||
|
config.screen_width, config.screen_height = screen.get_size()
|
||||||
|
# Redimensionner l'overlay pour correspondre à la résolution réelle
|
||||||
|
global OVERLAY
|
||||||
|
OVERLAY = pygame.Surface((config.screen_width, config.screen_height), pygame.SRCALPHA)
|
||||||
|
OVERLAY.fill((0, 0, 0, 180))
|
||||||
return screen
|
return screen
|
||||||
|
|
||||||
def draw_gradient(screen, top_color, bottom_color):
|
def draw_gradient(screen, top_color, bottom_color):
|
||||||
"""Dessine un fond dégradé vertical."""
|
"""Dessine un fond dégradé vertical."""
|
||||||
height = screen.get_height()
|
height = screen.get_height()
|
||||||
|
|||||||
Reference in New Issue
Block a user