native.systemFont

类型 常量
native.*
修订 发行版 2024.3703
关键字 native、fonts、systemFont
另请参阅 native.systemFontBold

概览

display.newText()native.newTextField()native.newTextBox() 和各种 小组件 默认使用的原生系统字体。

示例

local text = display.newText( "Hello World!", 0, 0, native.systemFont, 12 )
text:setFillColor( 1, 0, 0 )