新:由于我在第30行,现在告诉我时钟没有定义 我一直在为我正在做作业的游戏编写一些代码 工作直到我添加一些音乐代码然后突然缩进级别关闭。 这是代码:
image_x = 0
image_y = 0
while 1:
clock.tick(60)
for event in pygame.event.get():
if event.type == pygame.QUIT:
return
if event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE:
return
如果需要,请询问您是否需要查看整个计划。 这是整个事情,可能会有所帮助:
# This just imports all the Pygame modules
import pygame
class Game(object):
def main(self, screen):
clock = pygame.time.Clock()
#soundObj = pygame,mixer.Sound('The Tonight Show Star Wars The Bee Gees Stayin Alive Shortened.mp3')
#soundObj.play()
#import time
#time.sleep(52)
#class Player(pygame.sprite.Sprite):
# def __init__(self, *groups):
# super(Player, self.__init__(*groups)
#self.image = pygame.image.load('Sprite-01.png')
# self.rect = pygame.rect.Rect((320, 240), self.image.get_size())
#def update(self):
# key = pygame
image = pygame.image.load('Sprite-01.png')
# initialize variables
image_x = 0
image_y = 0
while 1:
clock.tick(60)
for event in pygame.event.get():
if event.type == pygame.QUIT:
return
if event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE:
return
image_x += 0
key = pygame.key.get_pressed()
if key[pygame.K_LEFT]:
image_x -= 10
if key[pygame.K_RIGHT]:
image_x += 10
if key[pygame.K_UP]:
image_y -= 10
if key[pygame.K_DOWN]:
image_y += 10
screen.fill((200, 200, 200))
screen.blit(image, (image_x, image_y))
pygame.display.flip()
if __name__ == '__main__':
pygame.init()
screen = pygame.display.set_mode((640, 480))
pygame.display.set_caption('St.Patrick game')
Game().main(screen)
答案 0 :(得分:2)
这样的程序只会在标题中引发错误:
x = 0
if x == 0:
return
else:
print("No return")
你的缩进级别可能没有关闭,只是Python不允许在函数之外返回语句。
答案 1 :(得分:2)
您不能在函数之外使用return
语句。在您的情况下,您可以使用pygame.quit()
和sys.exit()
来取代它们以退出游戏。
import sys # At the top of the file.
while 1:
clock.tick(60)
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
sys.exit()
if event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE:
pygame.quit()
sys.exit()
答案 2 :(得分:2)
<input type="hidden" value="{{ csrf_token() }}">
是一个特定的语法结构,用于将控制(和一个可选值)从函数返回给调用者。在其他任何地方使用它都没有意义。我怀疑你真正希望实现的是退出你的游戏循环。
这通常通过使用标志来完成,标志是一个在“是”或“否”值之间切换的变量。在您的情况下,您需要一个标志来知道何时退出游戏循环:
return