|

楼主 |
发表于 2019-8-27 22:24
|
显示全部楼层
素材就放在system里就可以了
装好插件 放好素材后
到最大地图上新建个事件
执行内容里写:
注释:
Add movement buttons on all maps//在所有地图上添加移动按钮
脚本:
Galv.SBTNS.addButton(0,'map','BtnUp',70,440,['button','up']);//方向键上
Galv.SBTNS.addButton(1,'map','BtnDown',70,560,['button','down']);//方向键下
Galv.SBTNS.addButton(2,'map','BtnLeft',10,500,['button','left']);//方向键左
Galv.SBTNS.addButton(3,'map','BtnRight',130,500,['button','right']);//方向键右
注释:
Add action buttons on all maps//在所有地图上添加动作按钮
脚本:
Galv.SBTNS.addButton(4,'map','BtnOk',570,500,['buttonT','ok']);//确定键、对话键、打开宝箱什么。。。
Galv.SBTNS.addButton(5,'map','BtnCancel',690,500,['buttonT','cancel']);//取消键
Galv.SBTNS.addButton(6,'map','BtnCancel',690,500,['button','shift']);//返回键,跟上面一个意思
Galv.SBTNS.addButton(7,'map','BtnMenu',500,550,['script','SceneManager.push(Scene_Menu)']);//打开菜单界面
看下面的效果图:
第二页我就不截图了,就是勾上独立开关A 触发条件选 确定键 就好了
我就弄了这些
当然懂得人可以添加更多
比如 队伍 装备 技能 啥的!
|
|