Project1

标题: 头像显示 [打印本页]

作者: 黑米馒头    时间: 2014-9-1 09:39
标题: 头像显示
本帖最后由 黑米馒头 于 2014-9-25 15:16 编辑

下面段脚本,如何设置 战斗界面和存档、读档界面不显示
  1. module Mapface
  2.   def Mapface.init
  3.     @sthero_window = Window_Sthero.new
  4.     @sthero_window.x = 407
  5.     @sthero_window.y = -13
  6.   end
  7.   def Mapface.dispose
  8.     @sthero_window.dispose if Mapface.ok?
  9.   end
  10.   def Mapface.update
  11.     @sthero_window.update if Mapface.ok?
  12.   end
  13.   def Mapface.ok?
  14.     if @sthero_window.is_a?(Window) and !@sthero_window.disposed?
  15.       return true
  16.     end
  17.     return false
  18.   end
  19. end

  20. module Input
  21.   @update = method('update') if @update.nil?
  22.   def Input.update
  23.     @update.call
  24.     Mapface.update if Mapface.ok?
  25.   end
  26. end

  27. class Scene_Title
  28.   alias :command_new_game_mapface_old :command_new_game
  29.   def command_new_game
  30.     command_new_game_mapface_old
  31.     $temp_mapface_id = $game_party.actors[0].id if $game_party.actors.size >= 1
  32.     Mapface.init
  33.   end
  34. end
  35. END { Mapface.dispose }
复制代码





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