赞 | 405 |
VIP | 0 |
好人卡 | 11 |
积分 | 390 |
经验 | 242285 |
最后登录 | 2024-11-8 |
在线时间 | 5716 小时 |
Lv5.捕梦者
- 梦石
- 0
- 星屑
- 39009
- 在线时间
- 5716 小时
- 注册时间
- 2006-11-10
- 帖子
- 6618
|
把这个脚本放到 main前, 打开1号开关就可以隐藏计时器, 想改不同的开关, 在第二行把 1 改成其他ID即可
- class Sprite_Timer < Sprite
- S隐藏计时器开关ID = 1
- def update
- super
- self.visible = ($game_system.timer_working and
- !$game_switches[S隐藏计时器开关ID])
- return if $game_system.timer / Graphics.frame_rate == @total_sec
- self.bitmap.clear
- @total_sec = $game_system.timer / Graphics.frame_rate
- min = @total_sec / 60 ; sec = @total_sec % 60
- text = sprintf("%02d:%02d", min, sec)
- self.bitmap.font.color.set(255, 255, 255)
- self.bitmap.draw_text(self.bitmap.rect, text, 1)
- end
- end
复制代码
|
|