RPG::Animation::Timing

动画的[声效与闪烁效果]的数据类。

超类

调用者

属性

frame

帧编号,编辑器中显示的编号减 1。

se

SE(RPG::SE)。

flash_scope

闪烁范围(0:无、1:闪烁目标、2:闪烁画面、3:隐藏目标)。

flash_color

闪烁颜色(Color)。

flash_duration

闪烁持续时间。

定义

class RPG::Animation::Timing
  def initialize
    @frame = 0
    @se = RPG::SE.new('', 80)
    @flash_scope = 0
    @flash_color = Color.new(255,255,255,255)
    @flash_duration = 5
  end
  attr_accessor :frame
  attr_accessor :se
  attr_accessor :flash_scope
  attr_accessor :flash_color
  attr_accessor :flash_duration
end