Project1

标题: 【rmvx】寻找游戏显示时间的脚本 [打印本页]

作者: aizizuoyou    时间: 2014-6-14 15:10
标题: 【rmvx】寻找游戏显示时间的脚本
最好有实例工程,谢谢大家了。
作者: campsis    时间: 2014-6-17 23:35
#==============================================================================
# ■ Window_PlayTime
#------------------------------------------------------------------------------
#  菜单画面显示游戏时间的窗口。
#==============================================================================

class Window_PlayTime < Window_Base
  #--------------------------------------------------------------------------
  # ● 初始化对像
  #--------------------------------------------------------------------------
  def initialize(x, y)
    super(x , y, 160 , 70)
    refresh
  end
  #--------------------------------------------------------------------------
  # ● 刷新
  #--------------------------------------------------------------------------
  def refresh
    self.contents.clear
    self.contents.font.color = system_color
    self.contents.font.size = 18
    self.contents.draw_text(29, -8, 120, 32, "遊戲時間")
    @total_sec = Graphics.frame_count / Graphics.frame_rate
    hour = @total_sec / 60 / 60
    min = @total_sec / 60 % 60
    sec = @total_sec % 60
    text = sprintf("%02d:%02d:%02d", hour, min, sec)
    self.contents.font.color = normal_color
    self.contents.draw_text(-12, 15, 100, 32, text, 2)
  end
  #--------------------------------------------------------------------------
  # ● 刷新画面
  #--------------------------------------------------------------------------
  def update
    super
    if Graphics.frame_count / Graphics.frame_rate != @total_sec
      refresh
    end
  end
end
作者: aizizuoyou    时间: 2014-6-25 12:54
campsis 发表于 2014-6-17 23:35
#==============================================================================
# ■ Window_PlayTime ...

谢谢了




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