pygame 没有找到 .tff 文件

pygame not finding .tff file when it is there

我试图在 pygame 中加载字体以呈现一些简单的文本。我尝试导入我下载的字体。字体名为 hack.tff,位于 assets/fonts/.

hack = pygame.font.Font('assets/fonts/hack.tff', 30)

但是,st运行gely,当 运行 代码时,它 returns 一个错误:FileNotFoundError: [Errno 2] No such file or directory.

我 运行 通过 cmd 并打开 .py 文件的代码。 cmd和.py文件在同一个目录下

您可以尝试“./assets/fonts/hack.tff”或完整路径名,例如, os.path.abspath( './assets/fonts/hack.tff' )