Project1
标题:
请高手看下,Interprete中为什么会出现2次的P值
[打印本页]
作者:
kvkv97
时间:
2016-9-2 20:14
标题:
请高手看下,Interprete中为什么会出现2次的P值
在Interpreter中,在@index += 1的上面“P @index”为什么会出现2次“0/1”值,不是应该只出现1次0和1值的吗?
作者:
kvkv97
时间:
2016-9-3 15:06
请高手来看看,帮忙一下啊!
作者:
yang1zhi
时间:
2016-9-3 18:01
说明这个DEF被执行了两次
作者:
夜狠简单
时间:
2016-9-4 18:39
#==============================================================================
# ■ 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)
复制代码
不知道和这个有关系没有
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1