如何在不使用screen.fill((0,0,0)```的情况下清除屏幕?

时间:2020-04-24 02:07:53

标签: python python-3.x pygame window

我正在制作一个游戏,当您触摸墙壁时,必须单击一个矩形才能继续前进。

但是,将显示矩形,但上一个屏幕也会显示。

我不能使用screen.fill((0, 0, 0)),因为在循环中,它将继续运行。 我想删除屏幕(或暂时退出屏幕。这是首选)。

这是我的代码:

import pygame
pygame.init()

clock = pygame.time.Clock()

screen = pygame.display.set_mode((400, 300))
done = False
x = 100

y = 100
#button1 = pygame.draw.rect(screen, (0, 0, 255), (200, 200, 30, 30))

    #if check <= pos - (w/2) and check >= 
pygame.display.set_caption("Auto Maze!")
donk = False
while not done:
    for event in pygame.event.get():

        if event.type == pygame.QUIT:
            done = True

        if event.type == pygame.MOUSEBUTTONDOWN:
            mouse = event.pos
            try:
                assert button1.collidepoint(mouse)
            except AssertionError:
                pass
            except NameError:
                pass
            else:
                donk = True
    pressed = pygame.key.get_pressed()

    if pressed[pygame.K_w]:
        y -= 5
    elif pressed[pygame.K_s]:
        y += 5
    elif pressed[pygame.K_a]:
        x -= 5
    elif pressed[pygame.K_d]:
        x += 5
    screen.fill((0, 0, 0))

    try:
        assert player.colliderect(wall1)
    except AssertionError:
        pass
    except NameError:
        pass
    else:
        death_screen = pygame.display.set_mode((400, 300))
        button1 = pygame.draw.rect(death_screen, (0, 0, 255), (200, 200, 30, 30))
        if donk:
            break


    player = pygame.draw.rect(screen, (0, 255, 0), (x, y, 60, 60))
    wall1 = pygame.draw.rect(screen, (255, 0, 0), (400, 300, -100, -300))

    clock.tick(60)  
    pygame.display.flip()

quit()

提前谢谢!

1 个答案:

答案 0 :(得分:1)

我摆脱了尝试,除了,我认为它可以满足您的要求

player = pygame.draw.rect(screen, (0, 255, 0), (x, y, 60, 60))
wall1 = pygame.draw.rect(screen, (255, 0, 0), (300, 0, 100, 300))    


if player.colliderect(wall1):
    death_screen = pygame.display.set_mode((400, 300))
    button1 = pygame.draw.rect(death_screen, (0, 0, 255), (200, 200, 30, 30))
    if donk:
        break