赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 0 |
最后登录 | 2020-6-24 |
在线时间 | 12 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 83
- 在线时间
- 12 小时
- 注册时间
- 2020-3-29
- 帖子
- 6
|
本帖最后由 yititake 于 2020-3-31 09:27 编辑
主菜单的缩放效果在插件里勾选就能取消,item里的效果要去mog_sceneitem里
// * update Buttons
//==============================
Scene_Item.prototype.updateButtons = function() {
for (var i = 0; i < this._buttons.length; i++) {
if (this._categoryWindow._index === i && !this._actorWindow.active) {
if (this._buttonsAni === 0) {
this._buttons.scale.x += 0.010;
把最后一行的0.010改成0即可取消 |
|