自定义字体不在Pygame中工作,自定义字体不显示

发布于 2025-01-24 13:40:10 字数 487 浏览 0 评论 0原文

我尝试使用在Internet上下载的自定义字体,但它不起作用。一切都起作用,但是字体没有变化。我安装了字体,路径正确

def mainmenutext_function():
    global mainmenutext
    global mainmenutext_width
    global mainmenutext_height
    global ROOTwidth
    global ROOTheight

    mainfont = pygame.font.SysFont("fonts/main_font.ttf", int(ROOTwidth/7))
    mainmenutext = mainfont.render('text', False, (0, 0, 0))
    mainmenutext_width = mainmenutext.get_width()
    mainmenutext_height = mainmenutext.get_height()

I tried to use a custom font downloaded on internet but it doesn't work. everything works but the font isn't changing. i installed the font and the path is correct

def mainmenutext_function():
    global mainmenutext
    global mainmenutext_width
    global mainmenutext_height
    global ROOTwidth
    global ROOTheight

    mainfont = pygame.font.SysFont("fonts/main_font.ttf", int(ROOTwidth/7))
    mainmenutext = mainfont.render('text', False, (0, 0, 0))
    mainmenutext_width = mainmenutext.get_width()
    mainmenutext_height = mainmenutext.get_height()

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

败给现实 2025-01-31 13:40:10

我找到了一个解决方案:in mainfont = pygame.font.sysfont(“ fonts/main_font.ttf”,int(rootWidth/7)))

i更换pygame.font.font.sysysfont使用pygame.font.font

I found a solution: in mainfont = pygame.font.SysFont("fonts/main_font.ttf", int(ROOTwidth/7))

I replaced pygame.font.SysFont with pygame.font.Font

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文