Я новый пользователь переполнения стека, и моя проблема в том, что если я выполню код, он выдаст мне ошибку, ошибка говорит:
DISPLAYSURF.blit((catImg, dogImg), (catx, caty, dogx, dogy))
TypeError: аргумент 1 должен быть pygame.Surface,не кортеж
как мне решить эту проблему?Ваш ответ будет высоко оценен!Спасибо.:)
Я пытаюсь гуглить, но их ответ отличается от моего.
import pygame, sys
from pygame.locals import *
pygame.init()
FPS = 30
fpsClock = pygame.time.Clock()
DISPLAYSURF = pygame.display.set_mode((500, 500), 0, 32)
pygame.display.set_caption('Cat and Dog running.')
WHITE = (255, 255, 255)
catImg = pygame.image.load('cat.png')
dogImg = pygame.image.load('dog.png')
catx = 50
caty = 50
dogx = 25
dogy = 25
direction = 'right'
running = True
while running:
DISPLAYSURF.fill(WHITE)
if direction == 'right':
catx += 5
dogx += 5
if catx == 250 and dogx == 250:
direction = 'down'
elif direction == 'down':
caty += 5
dogy += 5
if caty == 225 and dogy == 225:
direction = 'left'
elif direction == 'left':
catx -= 5
dogx -= 5
if catx == 10 and dogx == 10:
direction = 'up'
elif direction == 'up':
caty -= 5
dogy -= 5
if caty == 10 and dogy == 10:
direction = 'right'
DISPLAYSURF.blit((catImg, dogImg), (catx, caty, dogx, dogy))
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
sys.exit()
pygame.display.update()
fpsClock.tick(FPS)