Python Pygame-按backspace更改精灵颜色

Python Pygame-按backspace更改精灵颜色,python,pygame,Python,Pygame,我正在尝试制作一个游戏,我想让用户能够在按backspace键时更改其精灵的颜色。到目前为止,我画的东西都没有出现在屏幕上,我不知道为什么。欢迎提供详细答案,解释您如何以及为什么更改雪碧的颜色: 这是我的代码: import pygame pygame.init() white = (255, 255, 255) black = (0, 0, 0) red = (255, 0, 0) width = 800 height = 600 FPS = 100 font = pygame.font.

我正在尝试制作一个游戏,我想让用户能够在按backspace键时更改其精灵的颜色。到目前为止,我画的东西都没有出现在屏幕上,我不知道为什么。欢迎提供详细答案,解释您如何以及为什么更改雪碧的颜色: 这是我的代码:

import pygame

pygame.init()

white = (255, 255, 255)
black = (0, 0, 0)
red = (255, 0, 0)
width = 800
height = 600
FPS = 100
font = pygame.font.SysFont(None, 25)

gameDisplay = pygame.display.set_mode((width, height))
pygame.display.set_caption("Second snake game.")
clock = pygame.time.Clock()

def message_to_screen(msg, color):
    screen_text = font.render(msg, True, color)
    gameDisplay.blit(screen_text, [width/2, height/2])

def gameloop():
    exitGame = False
    lead_x = width/2
    lead_y = height/2
    lead_x_change = 0
    lead_y_change = 0
    block_size = 10
    velocity = 0.1
    rectangle = pygame.draw.rect(gameDisplay, black, [lead_x, lead_y, block_size, block_size])

    while not exitGame:
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                exitGame = True
                pygame.quit()
                quit()
            if event.type == pygame.KEYDOWN:
                if event.key == pygame.K_w:
                    lead_y_change += -velocity
                    lead_x_change = 0
                if event.key == pygame.K_s:
                    lead_y_change += velocity
                    lead_x_change = 0
                if event.key == pygame.K_a:
                    lead_x_change += -velocity
                    lead_y_change = 0
                if event.key == pygame.K_d:
                    lead_x_change += velocity
                    lead_y_change = 0
                if event.key == pygame.K_BACKSPACE:
                    rectangle.rect(gameDisplay, black, [lead_x, lead_y, block_size, block_size])
            if event.type == pygame.KEYUP:
                if event.key == pygame.K_a or event.key == pygame.K_d:
                   lead_x_change = 0
                if event.key == pygame.K_w or event.key == pygame.K_s:
                   lead_y_change = 0


    lead_x += lead_x_change
    lead_y += lead_y_change
    gameDisplay.fill(white)
    pygame.display.update()
    clock.tick(FPS)
    gameloop()

首先,将渲染函数按适当的顺序放置,并将它们放置在while循环中:

gameDisplay.fill(white)  # Display fill comes first
pygame.draw.rect(gameDisplay, black, rectangle)  # Then draw your objects
pygame.display.flip()  # Update the screen
然后,正确定义pygame.Rect对象

rectangle = pygame.Rect(lead_x, lead_y, block_size, block_size)
这是您可能正试图找到的(通过我的一些修复):


请在``谢谢,我现在可以看到并移动我画的东西,但我仍然无法更改我画的精灵的颜色!我想在按下backspace后这样做,比如:如果按下backspace:change sprite color(这是我的代码)如果event.key==pygame.K_SPACE:pygame.draw.rect(gameDisplay,红色,[lead_x,lead_y,block_size,block_size]),你自己试试。我想问题与我在哪里更新屏幕有关,因为块出现了,但它会立即从屏幕上更新出来。
import pygame
pygame.init()

# Constants
WHITE = (255, 255, 255)
BLACK = (0, 0, 0)
RED = (255, 0, 0)
WIDTH = 800
HEIGHT = 600
FPS = 100
FONT = pygame.font.SysFont(None, 25)
BLOCK_SIZE = 10
VELOCITY = 10

gameDisplay = pygame.display.set_mode((WIDTH, HEIGHT))
pygame.display.set_caption("Second snake game.")
clock = pygame.time.Clock()

def message_to_screen(msg, color):
    screen_text = font.render(msg, True, color)
    gameDisplay.blit(screen_text, [width/2, height/2])

def gameloop():
    exitGame = False
    x = WIDTH / 2
    y = HEIGHT / 2
    rectangle = pygame.Rect(x, y, BLOCK_SIZE, BLOCK_SIZE)
    rectangle_color = BLACK

    while not exitGame:
        clock.tick(FPS)

        # Pygame events
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                exitGame = True
                pygame.quit()
                quit()

            if event.type == pygame.KEYUP:
                if event.key == pygame.K_w:
                    y -= VELOCITY
                if event.key == pygame.K_s:
                    y += VELOCITY
                if event.key == pygame.K_a:
                    x -= VELOCITY
                if event.key == pygame.K_d:
                    x += VELOCITY
                if event.key == pygame.K_BACKSPACE:
                    rectangle_color = RED if rectangle_color == BLACK else BLACK

        # Update rect coords 
        rectangle = pygame.Rect(x, y, BLOCK_SIZE, BLOCK_SIZE)

        # Render everything
        gameDisplay.fill(WHITE)
        pygame.draw.rect(gameDisplay, rectangle_color, rectangle)
        pygame.display.flip()

gameloop()