You've reached a page on the Ren'Py wiki. Due to massive spam, the wiki hasn't been updated in over 5 years, and much of the information here is very out of date. We've kept it because some of it is of historic interest, but all the information relevant to modern versions of Ren'Py has been moved elsewhere.
Some places to look are:
Please do not create new links to this page.
init:
$ style.default.font = "font.ttf"
如果字体名是中文,代码要稍稍变动一下:
init:
$ style.default.font = u"黑体.ttf"
如上所示,要在前面加一个前缀u,表明是统一码(unicode),这样程序才能正确识别。
##4 将extra目录中的east_asian.rpy复制到游戏目录。