#==============================================================================
# RGSS3 - 战斗速度 VX Ace
# 可以说是我的半原创脚本,我只是拿芙蕾娅的动画速度改的
#------------------------------------------------------------------------------
#------设定部分------#
module KaoNeet
AnimaRate = 4 #动画速度,数目越小速度越快,默认速度为4(0报错,-1不显示)
BattlerRate = 15 #战斗速度,数目越小速度越快,默认等待为15(0无等待,不用时注释25行)
end
#------脚本开始------#
#--------------------------------------------------------------------------
# 设置动画的速度
#--------------------------------------------------------------------------
class Sprite_Base < Sprite
def set_animation_rate
@ani_rate = KaoNeet::AnimaRate
end
end
#--------------------------------------------------------------------------
# 设置战斗的速度
#--------------------------------------------------------------------------
class Scene_Battle < Scene_Base
def wait(duration)
duration = duration = KaoNeet::BattlerRate
duration.times {|i| update_for_wait if i < duration / 2 || !show_fast? }
end
end