赞 | 0 |
VIP | 0 |
好人卡 | 1 |
积分 | 0 |
经验 | 3404 |
最后登录 | 2017-9-13 |
在线时间 | 784 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 48
- 在线时间
- 784 小时
- 注册时间
- 2013-1-4
- 帖子
- 1102
|
对了 再加上这个 window界面的动态窗口就齐了- Window_MenuStatus.prototype.initialize = function(x, y) {
- var width = this.windowWidth();
- var height = this.windowHeight();
- Window_Selectable.prototype.initialize.call(this, x, y, width, height);
- this._formationMode = false;
- this._pendingIndex = -1;
- this.loadImages();
- this.refresh();
- this.init_x = x;
- this.x = this.x + this.width;
- };
- Window_MenuStatus.prototype.update = function() {
- Window_Selectable.prototype.update.call(this);
- if(this.x <= this.init_x) {
- return this.x = this.init_x;
- } else {
- this.x = this.x - 20;
- };
- };
复制代码 |
评分
-
查看全部评分
|