|
22 | 22 | import com.thinkido.framework.engine.vo.avatar.AvatarPartStatus;
|
23 | 23 | import com.thinkido.framework.engine.vo.avatar.AvatarPlayCallBack;
|
24 | 24 | import com.thinkido.framework.engine.vo.avatar.AvatarPlayCondition;
|
25 |
| - import com.thinkido.framework.engine.vo.avatar.XmlImgData; |
26 | 25 | import com.thinkido.framework.engine.vo.avatar.DynamicPosition.IDynamicPosition;
|
| 26 | + import com.thinkido.framework.engine.vo.avatar.XmlImgData; |
27 | 27 | import com.thinkido.framework.manager.TimerManager;
|
28 | 28 |
|
29 | 29 | import flash.display.BitmapData;
|
|
294 | 294 | this.setStatus(CharStatusType.STAND);
|
295 | 295 | }else if (type == AvatarPartType.WING)
|
296 | 296 | {
|
297 |
| - if ( _currentStatus != CharStatusType.DEATH) |
| 297 | + if ( $status != CharStatusType.DEATH) |
298 | 298 | setStatus( CharStatusType.STAND );
|
299 | 299 | else
|
300 | 300 | setStatus( $status);
|
|
355 | 355 | }
|
356 | 356 | if (this._currentStatus == CharStatusType.DEATH)
|
357 | 357 | {
|
358 |
| -// this._currentLogicAngel = 0; |
359 | 358 | this._only1LogicAngel = false ;
|
360 | 359 | }
|
361 | 360 | if (CharStatusType.isOnly1Repeat(this._currentStatus))
|
362 | 361 | {
|
363 | 362 | this._only1Repeat = true;
|
364 | 363 | }
|
365 |
| -// if (this.type == AvatarPartType.MAGIC_PASS) |
366 |
| -// { |
367 |
| -// this._only1Frame = true; |
368 |
| -// } |
369 | 364 | if (this.type == AvatarPartType.MAGIC_PASS || this.type == AvatarPartType.MAGIC)
|
370 | 365 | {
|
371 | 366 | this._autoRecycle = true;
|
|
400 | 395 | {
|
401 | 396 | _changed = true;
|
402 | 397 | }
|
403 |
| -// if (_tempInView != this.avatar.sceneCharacter.inViewDistance()) |
404 |
| -// { |
405 |
| -// //可见状态发生变化时,也要更新 |
406 |
| -// _changed = true; |
407 |
| -// _tempViewChanged = true; |
408 |
| -// } |
409 | 398 | if (_changed)
|
410 | 399 | {
|
411 |
| - //此处如果加入_tempViewChanged视野的改变优化。当切换场景时,服务端的数据在加载场景完毕之前,由于重设主角 |
412 |
| - //SC的setLogicAngle,此时由于SC的inViewDistance返回的是false,会导致旧图像销毁,但是新的图像不会生产 |
413 |
| - //从而导致切换场景后主角不可见的bug。 |
414 |
| - //BUG的解决办法: |
415 |
| - //1:在加载新场景时,inViewDistance方法始终返回true(暂时用这个) |
416 |
| - //2.在if (_tempInView != this.avatar.sceneCharacter.inViewDistance())逻辑中对oldData.inView也赋值,但是此办法 |
417 |
| - //依然会导致进入场景后如果人物不动时无法看到形象 |
418 |
| - //3.如果场景被dispose后,不进入uninstallAvatarImg逻辑 |
419 |
| -// if (_tempStatus != this._currentStatus || _tempViewChanged) |
420 | 400 | if (_tempStatus != this._currentStatus)
|
421 | 401 | {
|
422 | 402 | this._lastTime = 0;
|
|
677 | 657 | this.cutRect.height = this._drawSourceBitmapData.height;
|
678 | 658 | this._sourcePoint.x = 0;
|
679 | 659 | this._sourcePoint.y = 0;
|
680 |
| - trace("旋转用时:"+(getTimer()-tt)); |
| 660 | +// trace("旋转用时:"+(getTimer()-tt)); |
681 | 661 | }
|
682 | 662 | else if (this._drawMouseOn && this.avatar.sceneCharacter.isMouseOn)//如果为true,加滤镜
|
683 | 663 | {
|
|
1011 | 991 | var bd:BitmapData = this._inMaskDrawSourceBitmapData || this._drawSourceBitmapData;
|
1012 | 992 | if (bd != null)
|
1013 | 993 | {
|
1014 |
| - _color = bd.getPixel32($p.x - this.cutRect.x + this._sourcePoint.x, $p.y - this.cutRect.y + this._sourcePoint.y); |
1015 |
| - if (_color != 0) |
| 994 | + try{ |
| 995 | + _color = bd.getPixel32($p.x - this.cutRect.x + this._sourcePoint.x, $p.y - this.cutRect.y + this._sourcePoint.y); |
| 996 | + }catch(e:Error){ |
| 997 | + trace("what's reason cause error!"); |
| 998 | + } |
| 999 | + if (_color != 0) |
1016 | 1000 | {
|
1017 | 1001 | return true;
|
1018 | 1002 | }
|
|
1121 | 1105 | this._offsetOnMountX = this._avatarParamData.offsetOnMountX;
|
1122 | 1106 | this._offsetOnMountY = this._avatarParamData.offsetOnMountY;
|
1123 | 1107 | this._dynamicPosition = this._avatarParamData.dynamicPosition;
|
| 1108 | + this._currentRotation = this._avatarParamData.rotation ; |
1124 | 1109 | this._sleepTime = this._avatarParamData.sleepTime;
|
1125 | 1110 | this._useSpecilizeXY = this._avatarParamData.useSpecilizeXY;
|
1126 | 1111 | var apcb:AvatarPlayCallBack = this._avatarParamData.playCallBack;
|
|
0 commit comments