在[重复]条件下清除屏幕上的对象和图像

Clearing objects and images from screen under a condition [duplicate]

提问人:Yuurei 提问时间:11/10/2023 最后编辑:Yuurei 更新时间:11/10/2023 访问量:37

问:

我想在特定条件下从屏幕上清除“游戏开始”下的所有对象和图像。我该怎么做?

代码如下:

# game loop
run = True
while run:

    # start condition
    key = pygame.key.get_pressed()
    if key [pygame.K_x]:
        start_key_pressed = True
        mixer.music.play()
        pygame.mixer.music.play(-1)

    # game start
    if start_key_pressed:
        screen.blit (bg, (0, 0))
        player.update()
        kivotos.draw()
        obstacle.update()
            
        # condition example
        if main_menu_btn.draw():

任何形式的帮助将不胜感激。

Python 对象 pygame

评论


答: 暂无答案