警告:fastgame已经停止维护。请使用
opengame
来代替。
Fastgame是一个帮助你快速构建游戏或简单的GUI界面的python第三方库。
内部封装pygame2复杂的API。
下面是同样在pygame
和fastgame
中显示文字的对比
使用pygame
:
import sys
import pygame as pg
pg.init()
screen = pg.display.set_mode((400, 400))
pg.display.set_caption('Hello World')
font = pg.font.Font(None, 16)
text = font.render('hello world', True, (0, 0, 0))
while True:
screen.blit(text, (0, 0))
for event in pg.event.get():
if event.type == pg.QUIT:
pg.quit()
sys.exit()
pg.display.update()
使用fastgame
:
import fastgame as fg
game = fg.FastGame(title='Hello World', size=(400, 400))
text = fg.Label('hello world')
@game.update
def update():
text.update()
game.mainloop()
github网址: https://github.com/stripepython/fastgame
文档: https://stripepython.github.io/fastgame-document/document.html