egret.sys.TextNode
Posted 了不起的js
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了egret.sys.TextNode相关的知识,希望对你有一定的参考价值。
class Test extends egret.Shape{
protected textNode:egret.sys.TextNode;
constructor(){
this.width = this.height = 500;
this.textNode = new ...();
leg group = new egret.sys.GroupNode();
group.addNode(this.graphics.$renderNode);
group.addNode(this.textNode);
this.$renderNode = groupNode;
let node = this.textNode;
node.width = node.height = 500;
node.x = node.y = 0;
}
$render():void
{
this.textNode.drawText(100,100,"鬼",{size:100,textColor:0xff00000});
}
}
以上是关于egret.sys.TextNode的主要内容,如果未能解决你的问题,请参考以下文章