[LayaAir 1.0]渲染性能实例问题

https://ldc.layabox.com/doc/?nav=zh-js-3-2-2
从以上找到实例, 这代代码不能跑。我看sprite里面没有addChild 应该怎么做的呢?Sprite 不可以addChild.
  1. Laya.init(550,400,Laya.WebGL);
  2. Laya.Stat.show();
  3. var textBox = new Laya.Sprite();
  4. for(var i=0;i<10000;i++){
  5. txt=new Text();
  6. txt.text=(Math.random()*100).toFixed(0);
  7. txt.color="#CCCCCC";
  8. txt.x=Math.random()*550;
  9. txt.y=Math.random()*400;
  10. textBox.addChild(txt);
  11. }
  12. Laya.stage.addChild(textBox);

Screenshot_2019-05-31_at_1.04_.47_PM_.png
已邀请:

bpmf_d

赞同来自: 123黄

var textBox = new Laya.Sprite();
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可以这么写

该问题目前已经被锁定, 无法添加新回复

商务合作
商务合作