赞 | 18 |
VIP | 145 |
好人卡 | 9 |
积分 | 31 |
经验 | 42088 |
最后登录 | 2022-9-6 |
在线时间 | 920 小时 |
Lv3.寻梦者
- 梦石
- 1
- 星屑
- 2078
- 在线时间
- 920 小时
- 注册时间
- 2012-10-18
- 帖子
- 428
|
惊现骑空士,顺手写个,只要角色战斗图文件名里加个"!"就行了,今天古战,你咕了吗
- Sprite_Actor.prototype.updateBitmap = function() {
- Sprite_Battler.prototype.updateBitmap.call(this);
- var name = this._actor.battlerName();
- if (this._battlerName !== name) {
- this._canMotion = ImageManager.isObjectCharacter(name)
- this._battlerName = name;
- this._mainSprite.bitmap = ImageManager.loadSvActor(name);
- }
- };
- var Sprite_Actor_Stop_Motion_updateFrame = Sprite_Actor.prototype.updateFrame
- Sprite_Actor.prototype.updateFrame = function() {
- if (this._canMotion) return;
- Sprite_Actor_Stop_Motion_updateFrame.call(this);
- };
复制代码 |
评分
-
查看全部评分
|