pygame.init()
display_width = 800
display_height = 600
display = pygame.display.set_mode((display_width, display_height))
pygame.display.set_caption('RUN,DINO')
usr_width = 60
usr_height = 100
usr_x = display_width // 3
usr_y = display_height - usr_height - 100
def run_game():
game = True
while game:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
quit()
display.fill((255,255,255))
pygame.draw.rect(display,(247, 240, 22),(usr_x, usr_y, usr_widht, usr_height))
pygame.display.update()
run_game()
помогите плиз
сама ошибка:file “C:\Users\Game\AppData\Local\Programs\Python\Python38-32\змейка.py”, line 28, in run_game
pygame.draw.rect(display,(247, 240, 22),(usr_x, usr_y, usr_widht, usr_height))
NameError: name ‘usr_widht’ is not defined
ребят, все не надо я разобрался
Ну так почему б не поделиться как решил проблему, Через сколько времени увидел что usr_widht это не usr_width?