赞 | 0 |
VIP | 313 |
好人卡 | 0 |
积分 | 1 |
经验 | 6681 |
最后登录 | 2024-1-20 |
在线时间 | 66 小时 |
Lv1.梦旅人 蚂蚁卡卡
- 梦石
- 0
- 星屑
- 116
- 在线时间
- 66 小时
- 注册时间
- 2007-12-16
- 帖子
- 3081
|
- class Window_Time < Window_Base
- #--------------------------------------------------------------------------
- # ● 初始化窗口
- #--------------------------------------------------------------------------
- def initialize
- super(0, 0, 150, 64)
- self.contents = Bitmap.new(width - 32, height - 32)
- self.opacity = 160
- refresh
- end
- #--------------------------------------------------------------------------
- # ● 刷新
- #--------------------------------------------------------------------------
- def refresh
- self.contents.clear
- self.contents.font.color = normal_color
- self.contents.draw_text(0, 0, 120, 32,Time.now.to_s, 2)
-
- end
- def update
- super
- if Graphics.frame_count / Graphics.frame_rate != @total_sec
- refresh
- end
- end
- end
复制代码
Scene_Menu里找到
@playtime_window = Window_PlayTime.new
改成@playtime_window = Window_Time.new
能动了{/gg} 不过真的很丑 坐标自己调吧 系统信息:本贴由楼主认可为正确答案,66RPG感谢您的热情解答~ |
|