好吧其实是从外站搬过来的- -就是那啥啦
标题哇擦跳出来的 然后那啥不好截图描述- -你可以复制那啥去试下
要改两个部分-
第一个是Window_Command
Window_Command全部覆盖为:
RUBY 代码 - # Escrito por:
- # LUCAS C.
- # Data: 12/11/2010
- # Para:
- # "A galera do Mundo RPG Maker"
- class Window_Command < Window_Selectable
- def initialize(width, commands)
- super(0, 0, width, commands.size * 32 + 32)
- @item_max = commands.size
- @commands = commands
- self.contents = Bitmap.new(width - 32, @item_max * 32)
- refresh
- self.index = 0
- end
- def refresh
- self.contents.clear
- for i in0...@item_max
- draw_item(i, normal_color)
- end
- end
- def draw_item(index, color)
- self.contents.font.color = color
- rect = Rect.new(4, 32 * index, self.contents.width - 8, 32)
- self.contents.fill_rect(rect, Color.new(0, 0, 0, 0))
- self.contents.draw_text(rect, @commands[index])
- end
- def disable_item(index)
- draw_item(index, disabled_color)
- end
- def enable_item(index)
- draw_item(index, normal_color)
- end
- end
复制代码
其次,俺们还得那啥把那啥改了 -
Scene_Title覆盖为:
RUBY 代码
大概有就这样- -那啥然后Scene_Title的前3行那个15和20分别是调出来的速度那啥,你要改可以试试- -
越高越快大概就是酱紫- -{:2_280:}
本帖来自P1论坛作者1041235896,因Project1站服务器在国外有时候访问缓慢不方便作者交流学习,经联系P1站长fux2同意署名转载一起分享游戏制作经验,共同为国内独立游戏作者共同创造良好交流环境,原文地址: https://rpg.blue/forum.php?mod=viewthread&tid=375974 若有侵权,发帖作者可联系底部站长QQ在线咨询功能删除,谢谢。 |