我刚开始游戏与pygame的蟒蛇发展,我有以下代码:
bif="main_background.jpg"
mif="player_head.png"
import pygame, sys
from pygame.locals import *
pygame.init()
screen=pygame.display.set_mode((640,360),0,64)
background=pygame.image.load(bif).convert()
mouse_c=pygame.image.load(mif).convert_alpha()
while True:
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
sys.exit()
screen.blit(background, (0,0))
x,y = pygame.mouse.get_pos()
x -= mouse_c.get_width()/2
y -= mouse_c.get_height()/2
screen.blir(mouse_c,(x,y))
pygame.display.update()
我得到在Python以下错误:
Traceback (most recent call last):
File "C:/Users/Eier/Documents/Code Developments/pygame.py", line 4, in <module>
import pygame, sys
File "C:/Users/Eier/Documents/Code Developments\pygame.py", line 5, in <module>
from pygame.locals import *
ImportError: No module named locals
>>>
如果有人知道如何让蟒蛇发现pygame的请回复。
谢谢 :)