0
我想用Pygame和Python 3.4創建一個小遊戲。 我一直在試圖創建一個角色精靈,但即使有大量的在線教程,我也沒有設法讓我的代碼正常工作。我知道窗戶本身加載的很好,但我不知道爲什麼我會出現錯誤。pygame雪碧沒有屬性繪製
這裏是我的代碼:
import pygame, sys, os
from pygame.locals import *
class player(pygame.sprite.Sprite):
def __init__(self,img):
pygame.sprite.Sprite.__init__(self)
self.image = img
self.rect = self.image.get_rect()
pygame.init()
DISPLAYSURF = pygame.display.set_mode((1000,750))
pygame.display.set_caption('Hello world')
img = pygame.image.load("pixel art\RPGchar.png").convert_alpha()
while True: #game loop
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
sys.exit()
player.draw(DISPLAYSURF)
player.update()
pygame.display.flip()
任何幫助將讓我非常感激。 tnx
非常感謝這是非常有用的 – user3946189 2014-11-21 23:22:35