赞 | 153 |
VIP | 10 |
好人卡 | 39 |
积分 | 93 |
经验 | 146191 |
最后登录 | 2024-5-6 |
在线时间 | 2504 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 9280
- 在线时间
- 2504 小时
- 注册时间
- 2011-5-20
- 帖子
- 15389
|
- #==============================================================================
- # ■ 提高游戏速度(v1.0.1) by 一箭烂
- #------------------------------------------------------------------------------
- # 设置Graphics的@speed_lv以提高游戏速度,
- # 请插在main以上的位置
- #
- # 属性:
- #
- # Graphics.speed_lv
- # 加快速度(倍数), 可修改
- #
- # 更新:
- #
- # - *1.0.1* (2011-04-21) By 一箭烂(YiJL)
- # *改了alias的办法, 解决F12问题
- # *换了速度变量的方式
- #
- # - *1.0.0* (2011-04-21) By 一箭烂(YiJL)
- # *初版
- # *对Graphics.frame_count的修正
- #
- #==============================================================================
- module Graphics
- @speed_lv = 2 # 加快速度(倍数)
- @timer = 0
- @speed_update = method("update") unless @speed_update
- #--------------------------------------------------------------------------
- # ● Graphics.update
- #--------------------------------------------------------------------------
- def self.update
- @timer += 1
- @timer %= @speed_lv
- if @timer >= (@speed_lv - 1)
- @speed_update.call # 更新游戏画面
- Graphics.frame_count -= 1
- end
- Graphics.frame_count += 1
- end
- #--------------------------------------------------------------------------
- # ● Graphics.speed_lv
- #--------------------------------------------------------------------------
- def self.speed_lv
- @speed_lv
- end
- #--------------------------------------------------------------------------
- # ● Graphics.speed_lv=
- #--------------------------------------------------------------------------
- def self.speed_lv=(value)
- @speed_lv = value
- end
- end
复制代码 |
|