Project1

标题: 时间修改 [打印本页]

作者: 黑米馒头    时间: 2022-6-22 19:46
标题: 时间修改
下面这个脚本可以显示时间,如何去掉显示几秒,因为这样每秒都刷新,好像地图上的时候有点卡,不知道是不是错觉



RUBY 代码复制
  1. #==============================================================================
  2. # ■ Window_PlayTime
  3. #------------------------------------------------------------------------------
  4. # 显示现实时间
  5. #==============================================================================
  6.  
  7. class Window_RealTime < Window_Base
  8.   #--------------------------------------------------------------------------
  9.   # ● 初始化对像
  10.   #--------------------------------------------------------------------------
  11.   def initialize
  12.     super(24, 38, 100, 50-4)
  13.     self.contents = Bitmap.new(width - 32, height - 32)
  14.     self.contents.font.size = 13
  15.     self.contents.font.name = (["黑体","宋体"])
  16.     self.opacity = 0
  17.     self.z = 300
  18.     refresh
  19.   end
  20.   #--------------------------------------------------------------------------
  21.   # ● 刷新
  22.   #--------------------------------------------------------------------------
  23.   def refresh
  24.     self.contents.clear
  25.     self.contents.font.color = system_color
  26.     @total_sec = Graphics.frame_count / Graphics.frame_rate
  27.     time = Time.now
  28.     text = time.strftime("%x %X")   
  29.     self.contents.font.color = normal_color
  30.     self.contents.draw_text(-68, -24, 130, 64, text, 2)
  31.   end
  32.   #--------------------------------------------------------------------------
  33.   # ● 刷新画面
  34.   #--------------------------------------------------------------------------
  35.   def update
  36.     super
  37.     if Graphics.frame_count / Graphics.frame_rate != @total_sec
  38.       refresh
  39.     end
  40.   end
  41. end

作者: jianmos90    时间: 2022-6-22 21:16
就算你把秒数隐藏也是1秒刷新1次啊
作者: jianmos90    时间: 2022-6-22 21:17
28行 text = time.strftime("%H:%M")




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