赞 | 16 |
VIP | 0 |
好人卡 | 0 |
积分 | 39 |
经验 | 0 |
最后登录 | 2024-9-8 |
在线时间 | 141 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 3943
- 在线时间
- 141 小时
- 注册时间
- 2018-1-22
- 帖子
- 137
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 526396987 于 2018-2-4 01:13 编辑
MOG的菜单界面并没有创建TP条的功能,所以自己根据mog在scene menu中创建hp和mp条的方法,仿写了一段创建TP条的代码。。。
但是由于是脚本新手,只有TP数值显示出来了,而TP条并没有能够显示,自己调试了很多参数但没什么用= =
运行上并没有报错,不知道是哪里出了问题,还请各位脚本大大帮帮忙~~ 谢谢啦!
- MCharStatus.prototype.createTPMeter = function() {
- this._tpMeter = new Sprite(this._TPMeterImg);
- this._tpMeterData = [this._TPMeterImg.width / 3,this._TPMeterImg.height,0,0];
- this._tpMeterData[2] = this._tpMeterData[0] * 2;
- this._tpMeterData[3] = Math.randomInt(this._tpMeterData[2])
- this._tpMeter.x = this._layout.x + Moghunter.scMenu_TPMeterX;
- this._tpMeter.y = this._layout.y + Moghunter.scMenu_TPMeterY;
- this.updateMeter(this._tpMeter,this._tpMeterData,this._actor.tp,this._actor.mtp);
- this.addChild(this._tpMeter);
- };
复制代码
|
|