详解gamere (三) text

gamere是我自己写的库,封装了下pygame,开发小游戏很好用。
下载:

pip install gamere==1.3.1 -i https://pypi.org/project/

使用gamere.Text创建一个文字对象:

Text(font,
     window: Window,
     size=16,
     text='',
     color=(0, 0, 0),
     antialias=True,
     x=0,
     y=0)
名称意义类型
font字体文件路径(支持ttfotfttc等)str
window文字显示的窗口gamere.Window
size字体大小int
color字体颜色Tuple[int, int, int]
antialias是否抗锯齿bool
x文字显示X坐标int
y文字显示Y坐标int

例如:

import gamere

gamere.init()  # init pygame.font

def render():  # 定义窗口更新回调
    text.update()

window = gamere.Window(title='显示文字的gamere窗口', size=(400, 400))
text = gamere.Text('game-font.ttf', window, size=30, text='gamere.Text组件',
                   color=gamere.white)   # 创建Text对象
window.loop(render=render)   # 主循环

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值