赞 | 11 |
VIP | 107 |
好人卡 | 119 |
积分 | 149 |
经验 | 180043 |
最后登录 | 2024-9-8 |
在线时间 | 3303 小时 |
Lv4.逐梦者 送快递的水表员
- 梦石
- 10
- 星屑
- 4857
- 在线时间
- 3303 小时
- 注册时间
- 2012-6-27
- 帖子
- 7160
|
本帖最后由 Password 于 2015-7-16 22:21 编辑
- #--------------------------------------------------------------------------
- # ● 刷新画面
- #--------------------------------------------------------------------------
- def update
- if @timer_working and @timer >= 0
- @timer += 1
- if (@timer % 3600) == 0
- $game_variables[1] += 1 # 1号变量加1
- end
- end
- end
复制代码 用这段替换掉默认Game_System中的 def update【注意别把那页的最后一个end删了 = =】
【P.S.:貌似@timer是按帧计时的?没试过帧率如果低了会不会运行正常,所以并不一定保证任何情况下都没问题】 |
|