Class: RPG::MoveRoute

Inherits:
Object
  • Object
show all
Defined in:
lib/R3EXS/RGSS3.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeMoveRoute

Returns a new instance of MoveRoute.



600
601
602
603
604
605
# File 'lib/R3EXS/RGSS3.rb', line 600

def initialize
    @repeat    = true
    @skippable = false
    @wait      = false
    @list      = [RPG::MoveCommand.new]
end

Instance Attribute Details

#listObject

Returns the value of attribute list.



610
611
612
# File 'lib/R3EXS/RGSS3.rb', line 610

def list
  @list
end

#repeatObject

Returns the value of attribute repeat.



607
608
609
# File 'lib/R3EXS/RGSS3.rb', line 607

def repeat
  @repeat
end

#skippableObject

Returns the value of attribute skippable.



608
609
610
# File 'lib/R3EXS/RGSS3.rb', line 608

def skippable
  @skippable
end

#waitObject

Returns the value of attribute wait.



609
610
611
# File 'lib/R3EXS/RGSS3.rb', line 609

def wait
  @wait
end