赞 | 2 |
VIP | 33 |
好人卡 | 33 |
积分 | 14 |
经验 | 54000 |
最后登录 | 2024-9-21 |
在线时间 | 1295 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 1358
- 在线时间
- 1295 小时
- 注册时间
- 2012-8-4
- 帖子
- 749
|
- #==============================================================================
- # ■ Game_System
- #------------------------------------------------------------------------------
- # 处理系统附属数据的类。也可执行诸如 BGM 管理之类的功能。本类的实例请参考
- # $game_system 。
- #==============================================================================
- class Game_System
- #--------------------------------------------------------------------------
- # ● 定义实例变量
- #--------------------------------------------------------------------------
- attr_reader :map_interpreter # 地图事件用解释程序
- attr_reader :battle_interpreter # 战斗事件用解释程序
- attr_accessor :timer # 计时器
- attr_accessor :timer_working # 计时器执行中的标志
- attr_accessor :save_disabled # 禁止存档
- attr_accessor :menu_disabled # 禁止菜单
- attr_accessor :encounter_disabled # 禁止遇敌
- attr_accessor :message_position # 文章选项 显示位置
- attr_accessor :message_frame # 文章选项 窗口外关
- attr_accessor :save_count # 存档次数
- attr_accessor :magic_number # 魔法编号
- #--------------------------------------------------------------------------
- # ● 初始化对像
- #--------------------------------------------------------------------------
- def initialize
- @map_interpreter = Interpreter.new(0, true)
- @battle_interpreter = Interpreter.new(0, false)
复制代码
不知道和这个有关系没有 |
|