Project1

标题: 【求助】如何将菜单栏的队伍调整成只有一个人的大图标? [打印本页]

作者: 苍月的魔王    时间: 2018-11-6 20:10
标题: 【求助】如何将菜单栏的队伍调整成只有一个人的大图标?
想做一个只有一个角色的RPG Maker VX Ace的游戏,然而通常在游戏中打开菜单时,在右边显示的是是四人组的状态栏图标,而我想要把它调整成单人的那种(最好可以显示立绘的),请问有谁知道该怎么弄这个脚本呢?或者可以把脚本发给我吗?
作者: 余音·魔眼    时间: 2018-11-8 20:06
本帖最后由 余音·魔眼 于 2018-11-8 20:07 编辑

RUBY 代码复制
  1. class Window_MenuStatus
  2.   alias hawkeye_change_menustatus_initialize initialize
  3.   def initialize(x, y)
  4.     hawkeye_change_menustatus_initialize(x, y)
  5.     self.height = contents_height / 4 + standard_padding * 2
  6.     create_contents
  7.     refresh
  8.   end
  9.   def item_max
  10.     return 1
  11.   end
  12.   def item_height
  13.     height - standard_padding * 2
  14.   end
  15. end
显示立绘的话请善用搜索功能,有很多这样的脚本【





欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1