赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 0 |
最后登录 | 2024-5-2 |
在线时间 | 4 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 51
- 在线时间
- 4 小时
- 注册时间
- 2024-3-27
- 帖子
- 3
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
createClockSprite(){
if(this.clockBitmap.isReady()){//1
this._clockSprite=new Sprite(this.clockBitmap);
this._clockSprite.x=(Graphics.boxWidth-this._clockSprite.width)/2;
this._clockSprite.y=0;
this.centerPoint=new Point(this._clockSprite.x+258,
this._clockSprite.y+282);
this.addChild(this._clockSprite);
//console.dir(this._clockSprite);
this.createHourSprite();
this.createMinSprite();
}else{//2
this.clockBitmap.addLoadListener(()=> this.createClockSprite());
//console.log('error');
}
}
当我第一次进入创建精灵方法时,如果图片已经好了直接进入if//1,精灵就会不显示,如果没好进入else//2,使用监听器重新创建精灵,精灵就能显示出来。为什么呢? |
|