码迷,mamicode.com
首页 > 编程语言 > 详细

第一个Python游戏窗口

时间:2018-06-14 01:02:19      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:circle   eve   not   mod   date()   spl   event   tar   while   

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

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游戏窗口

标签:circle   eve   not   mod   date()   spl   event   tar   while   

原文地址:https://www.cnblogs.com/swordenchanter/p/9180618.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!