第一个Python游戏窗口

Posted 天使冰王

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第一个Python游戏窗口相关的知识,希望对你有一定的参考价值。

不废话,撸起袖子就是干。

import pygame
import sys
pygame.init();
caption=pygame.display.set_caption("Python App");
screen=pygame.display.set_mode([640, 480]);
obj = pygame.image.load("avatar.png").convert_alpha();
isQuit=False;
while not isQuit:
 for event in pygame.event.get():
  if event.type == pygame.QUIT:
   isQuit=True;
  screen.blit(obj, [100, 10]);
  pygame.draw.rect(screen, [255,0,0], [150,10,20,40], 0);
  pygame.draw.circle(screen, [0,0,0], [20, 50], 200, 10);
  
  pygame.display.update()
  screen.fill([255, 255, 255])
pygame.quit();
sys.exit();

 

以上是关于第一个Python游戏窗口的主要内容,如果未能解决你的问题,请参考以下文章

趣学Python之弹球游戏第一阶段

猜数字小游戏

Python游戏引擎开发:创建窗口以及重绘界面

《Python多人游戏项目实战》第一节 简单的方块移动

用python的TK模块实现猜成语游戏(附源码)

《Python多人游戏项目实战》第一节 简单的方块移动