码迷,mamicode.com
首页 > 其他好文 > 详细

pygame学习之打印文本

时间:2016-12-04 00:32:36      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:key   set   exti   down   world   text   bsp   quit   update   

 1 import pygame
 2 from pygame.locals import *
 3 white = 255, 255, 255
 4 blue = 0, 0, 200
 5 pygame.init()
 6 screen = pygame.display.set_mode((600, 500))
 7 myfont = pygame.font.Font(None, 70)
 8 textImage = myfont.render("HELLO WORLD", True, white)
 9 while True:
10     for event in pygame.event.get():
11         if event.type in (QUIT, KEYDOWN):
12             exit()
13     screen.fill(blue)
14     screen.blit(textImage, (100, 100))
15     pygame.display.update()

 

pygame学习之打印文本

标签:key   set   exti   down   world   text   bsp   quit   update   

原文地址:http://www.cnblogs.com/mazhong/p/6129837.html

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