赞 | 28 |
VIP | 0 |
好人卡 | 0 |
积分 | 48 |
经验 | 0 |
最后登录 | 2025-1-10 |
在线时间 | 579 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 4810
- 在线时间
- 579 小时
- 注册时间
- 2017-11-28
- 帖子
- 337
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
rpg_sprites.js
我在这个脚本里
//-----------------------------------------------------------------------------
// Scene_Item
//
// The scene class of the item screen.
function Scene_Item() {
this.initialize.apply(this, arguments);
}
Scene_Item.prototype = Object.create(Scene_ItemBase.prototype);
Scene_Item.prototype.constructor = Scene_Item;
Scene_Item.prototype.initialize = function() {
Scene_ItemBase.prototype.initialize.call(this);
};
Scene_Item.prototype.create = function() {
Scene_ItemBase.prototype.create.call(this);
//=============================================================================
this._backgroundSprite=new Sprite();
this._backgroundSprite.bitmap=ImageManager.loadParallax("yinglingshendian");
this.addChild(this._backgroundSprite);
this._backgroundSprite.z = 100;
//=============================================================================
this.createHelpWindow();
this.createCategoryWindow();
this.createItemWindow();
this.createActorWindow();
};
间隔号之间的是我自己加入的部分,虽然发现可以显示在道具栏那里面显示图片,但是却无法做到将图片显示在字体下面,图块之上,我想求问MV到底该怎么写才能做到这样的效果? |
|