我在这个pixijs游戏的最后添加了一个分数。 我在这里有标准参数 - 但是设计要求在字母周围有一个外部亮点有没有办法做到这一点? http://www.goodboydigital.com/pixijs/docs/classes/Text.html
this.txtRankingOverall = new PIXI.Text("" + GameControl.score, {
font: "120px FSJoeyLtIt",
fill: "#ffffff",
align: "center"
});
我在尝试匹配字体时遇到问题 - 它需要是斜体
this.txtRankingToday = new PIXI.Text("46", {
font: "italic 120px FSJoeyLtIt",
fill: "#ffffff",
align: "center",
style: "light"
});