我用代码生成了很多个Widget大概有500个,把它存起来,等待需要的时候添加到场景,但是在手机上需要花费3秒钟左右的时间,我不清楚这个时间是花费在哪里的,最后发现是添加到场景的时候调用addchild,方法,它会调用节点的onEnter方法
onEnter: function () {
var locListener = this._touchListener;
if (locListener && !locListener._isRegistered() && this._touchEnabled)
cc.eventManager.addListener(locListener,this);
if(!this._usingLayoutComponent)
this.updateSizeAndposition();
cc.Protectednode.prototype.onEnter.call(this);
},
在onEnter方法里面会判断是否使用_usingLayoutComponent,如果没有使用,就调用函数this.updateSizeAndposition();
在这里花费了大量的时间。
只需要调用方法Widget 的setLayoutComponentEnabled(true);
就可以越过这条this.updateSizeAndposition();耗时的函数
总结以上是内存溢出为你收集整理的cocos3.10 html 用代码生成widget ,保存起来,重复添加到场景速度为什么很慢全部内容,希望文章能够帮你解决cocos3.10 html 用代码生成widget ,保存起来,重复添加到场景速度为什么很慢所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)