赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 2599 |
最后登录 | 2020-5-30 |
在线时间 | 110 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 105
- 在线时间
- 110 小时
- 注册时间
- 2012-11-14
- 帖子
- 57
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
话不多说,直接上脚本:
#==============================================================================
# ■ Game_Timer
#------------------------------------------------------------------------------
# 计时器。本类的实例请参考 $game_timer 。
#==============================================================================
class Game_Timer
#--------------------------------------------------------------------------
# ● 初始化对象
#--------------------------------------------------------------------------
def initialize
@count = 1
@working = true
end
#--------------------------------------------------------------------------
# ● 更新画面
#--------------------------------------------------------------------------
def update
if @working && @count > 0
@count += 1
on_expire if @count == 0
end
end
#--------------------------------------------------------------------------
# ● 开始
#--------------------------------------------------------------------------
def start(count)
@count = count
@working = true
end
#--------------------------------------------------------------------------
# ● 停止
#--------------------------------------------------------------------------
def stop
@working = false
end
#--------------------------------------------------------------------------
# ● 判定是否正在工作
#--------------------------------------------------------------------------
def working?
@working
end
#--------------------------------------------------------------------------
# ● 获取秒数
#--------------------------------------------------------------------------
def sec
@count / Graphics.frame_rate
end
end
|
|