想做解密类游戏,请问大佬如何去除菜单的血量显示!
rpgmakermv吧
全部回复
仅看楼主
level 3
如图,萌新请问大佬如何关闭等级血量蓝量显示,或者求自定义菜单的插件[泪]
2024年06月14日 15点06分 1
level 5
forums.[吐舌]rpgmakerweb.[吐舌]com/index.php?threads/rpg-maker-mz-revove-hp-mp-class-and-lvl.169424/
实在是没想到这个脚本也能用上233333
(() => {
Window_Base.prototype.drawActorSimpleStatus = function(actor, x, y, width) {
var lineHeight = this.lineHeight();
var x2 = x + 180;
var width2 = Math.min(200, width - 180 - this.textPadding());
this.drawActorName(actor, x, y);
// this.drawActorLevel(actor, x, y + lineHeight * 1);
this.drawActorIcons(actor, x, y + lineHeight * 2);
this.drawActorClass(actor, x2, y);
//this.drawActorHp(actor, x2, y + lineHeight * 1, width2);
// this.drawActorMp(actor, x2, y + lineHeight * 2, width2);
};
})()
2024年06月16日 10点06分 2
level 7
猜你想看,帖子转不过来只能截图了
2024年06月16日 12点06分 4
虽然我也不知道对不对orz总之可以去试试看(目移)
2024年06月16日 13点06分
@白烟庭♬ 好的谢谢
2024年06月16日 14点06分
level 2
那这个应该可以实现在某个特定的时间不显示血量?
2024年07月02日 15点07分 5
1