赞 | 15 |
VIP | 0 |
好人卡 | 0 |
积分 | 41 |
经验 | 1671 |
最后登录 | 2024-8-12 |
在线时间 | 440 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 4079
- 在线时间
- 440 小时
- 注册时间
- 2015-4-4
- 帖子
- 156
|
laJiChaJian=Scene_Map.prototype.start;
Scene_Map.prototype.start = function() {
laJiChaJian.call(this);
};
Scene_Map.prototype.huiCheng = function(){
var sprite = new Sprite_Button();
sprite.x = 0;//x坐标
sprite.y = 0;//y坐标
sprite.bitmap=ImageManager.loadBitmap('img/pictures/','文件名');//按钮的文件位置和文件名,用引号括起来
sprite.setClickHandler(this.commandHuiCheng.bind(this));
this.addChild(sprite);
};
Scene_Menu.prototype.commandHuiCheng = function() {
$gamePlayer.reserveTransfer(1,16,0,2,2);//五个数字依次为{地图编号}{x坐标}{y坐标}{朝向2,4,6,8}{淡出淡入0,1,2}
};
瞎几把写的,不知道行不行 |
|