在livewires模块中首次编程,如何为我的可执行游戏制作一个起始页?

时间:2010-12-16 03:40:42

标签: python livewires

我希望我的游戏首先进入标题幻灯片并在角色死亡时返回到幻灯片(它是小行星克隆),任何帮助都会非常感激。

1 个答案:

答案 0 :(得分:0)

查看pygame模块。有许多tutorials可以帮助您快速运行。

来自“{3}}”Python游戏编程“(第一篇教程)的示例:

import pygame, sys,os
from pygame.locals import * 

pygame.init() 

window = pygame.display.set_mode((468, 60)) 
pygame.display.set_caption('Monkey Fever') 
screen = pygame.display.get_surface() 

monkey_head_file_name = os.path.join("data","chimp.bmp")

monkey_surface = pygame.image.load(monkey_head_file_name)

screen.blit(monkey_surface, (0,0)) 
pygame.display.flip() 

def input(events): 
   for event in events: 
      if event.type == QUIT: 
         sys.exit(0) 
      else: 
         print event 

while True: 
   input(pygame.event.get())