赞 | 28 |
VIP | 0 |
好人卡 | 0 |
积分 | 77 |
经验 | 0 |
最后登录 | 2024-11-18 |
在线时间 | 1437 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 7665
- 在线时间
- 1437 小时
- 注册时间
- 2018-12-16
- 帖子
- 2025
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 play337 于 2022-7-12 09:34 编辑
最近在研究 MOG_LMBS.js
发现他调用动画库里面的角色技能动画都是相反的...
如何让LMBS的动画变成正的?
//==============================
// * playAnimation
//==============================
LMBS_Skill.prototype.playAnimation = function() {
this._playAnimation[0] = false;
animation = $dataAnimations[this._animationID];
if (animation && this._animationID > 0) {
var mirror = this._direction === 2 ? true : false;
this.startAnimation(animation,mirror,0);
for (var i = 0; i < this._animationSprites.length; i++) {
var sprite = this._animationSprites;
sprite._zIndex = this._zIndex + i;
};
};
};
=========================================
|
|