使用场景图的明亮脚本。我想更改没有字体节点的默认字体的大小。我使用了“ SmallestBoldSystemFont”字体。看起来是大字体,然后是实际所需的大小。
<PosterGrid
id = "example"
basePosterSize="[150,150]"
itemSpacing="[27,27]"
caption1NumLines="2"
caption1Font = "font:SmallestBoldSystemFont"
numColumns="10"
numRows="1" />
答案 0 :(得分:3)
您会看到in docs caption1Font 字段接受 Font对象,因此您必须创建一个对象并仅设置该字体的角色:>
<PosterGrid
id = "example"
basePosterSize="[150,150]"
itemSpacing="[27,27]"
caption1NumLines="2"
numColumns="10"
numRows="1">
<Font role="caption1Font" size="15" uri="font:SmallestBoldSystemFont"/>
</PosterGrid>
答案 1 :(得分:0)