0

我点击这个链接 InternationalFontsTest.java并且我想使用 Bitmapfont koreanFont添加到项目选择框(Scene2d.ui)。谢谢你。

4

1 回答 1

0

与您设置任何样式相同:

com.badlogic.gdx.graphics.g2d.BitmapFont: { 
  default-font: { file: default.fnt } 
  korean-font: { file:koreanfont.fnt }
  },

com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: {
    default: {
        font: default-font, fontColor: white, background: default-select,
        scrollStyle: default,
        listStyle: { font: default-font, selection: default-select-selection }
    }
    korean: {
        font: korean-font, fontColor: white, background: default-select,
        scrollStyle: default,
        listStyle: { font: korean-font, selection: default-select-selection }
    }
},

com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: {
    default: { selection: selection, background: textfield, font: default-font, fontColor: white, cursor: cursor }
    korean: { selection: selection, background: textfield, font: korean-font, fontColor: white, cursor: cursor }
},
}

不知道你将如何创建实际的位图本身,我认为 hiero 不能做到这一点,但我可能是错的。

于 2015-09-29T08:16:19.153 回答