[LayaAir 1.0]渲染性能实例问题
https://ldc.layabox.com/doc/?nav=zh-js-3-2-2
从以上找到实例, 这代代码不能跑。我看sprite里面没有addChild 应该怎么做的呢?Sprite 不可以addChild.
从以上找到实例, 这代代码不能跑。我看sprite里面没有addChild 应该怎么做的呢?Sprite 不可以addChild.
Laya.init(550,400,Laya.WebGL);
Laya.Stat.show();
var textBox = new Laya.Sprite();
for(var i=0;i<10000;i++){
txt=new Text();
txt.text=(Math.random()*100).toFixed(0);
txt.color="#CCCCCC";
txt.x=Math.random()*550;
txt.y=Math.random()*400;
textBox.addChild(txt);
}
Laya.stage.addChild(textBox);
没有找到相关结果
已邀请:
1 个回复
bpmf_d
赞同来自: 123黄
for (var i = 0; i < 10000; i++) {
var txt:Laya.Text = new Laya.Text();
txt.text = (Math.random() * 100).toFixed(0);
txt.color = "#CCCCCC";
txt.x = Math.random() * 550;
txt.y = Math.random() * 400;
textBox.addChild(txt);
}
Laya.stage.addChild(textBox);
ts可以这么写