赞 | 204 |
VIP | 13 |
好人卡 | 7 |
积分 | 122 |
经验 | 52899 |
最后登录 | 2021-6-29 |
在线时间 | 4435 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 12157
- 在线时间
- 4435 小时
- 注册时间
- 2014-4-11
- 帖子
- 5955
|
我也不懂。这样应该就能创建了
function Scene_chuanjian() {
this.initialize.apply(this, arguments);
}
Scene_chuanjian.prototype = Object.create(Scene_ItemBase.prototype);
Scene_chuanjian.prototype.constructor = Scene_chuanjian;
Scene_chuanjian.prototype.initialize = function() {
Scene_ItemBase.prototype.initialize.call(this);
};
Scene_chuanjian.prototype.create = function() {
Scene_ItemBase.prototype.create.call(this);
};
|
|