pygame
文章平均质量分 67
ephramliu
NWPU硕士
展开
-
【Pygame】在 Pygame 屏幕中添加文字
font = pygame.font.SysFont("freesansbold.ttf", 30) # 30:font sizetext = font.render("content", True, (0,0,0)) # (0,0,0) color of fontself.window.blit(text,(10,10)) # (10,10) rect left top原创 2020-12-18 20:18:12 · 4847 阅读 · 2 评论 -
【Pygame】屏幕图形绘制
Pygame 是 python 的一个好用的仿真库;很多研究生用这个库来构建自己的实验环境;# 导入必要的库import pygame, os, sysfrom pygame.locals import *# 帧率fps = 12# 颜色WHITE = (255,255,255)BLACK = ( 0, 0, 0)RED = (255, 0, 0)GREEN原创 2020-12-01 19:02:29 · 263 阅读 · 0 评论