赞 | 1 |
VIP | 0 |
好人卡 | 0 |
积分 | 6 |
经验 | 71075 |
最后登录 | 2017-9-1 |
在线时间 | 1752 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 575
- 在线时间
- 1752 小时
- 注册时间
- 2008-11-7
- 帖子
- 1431
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 z2z4 于 2015-10-28 20:30 编辑
function Window_EnemyBookStatus() {
这句是 创建 Window_EnemyBookStatus 这个窗口吗
this.initialize.apply(this, arguments);
这句又是 什么 apply (this, arguments) 括号里 又是什么意思
}
Window_EnemyBookStatus.prototype = Object.create(Window_Base.prototype);
RMVA class Window_EnemyBookStatus <Window_Base 大概就是这个意思
Window_EnemyBookStatus.prototype.constructor = Window_EnemyBookStatus;
上面 这句 又是什么意思
Window_EnemyBookStatus.prototype.initialize = function(x, y, width, height) {
这句 我知道 Window_EnemyBookStatus 的初始化 function(x, y, width, height) 是他的参数吗
RMVA def Window_EnemyBookStatus(x, y, width, height) |
|