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.



622
623
624
625
626
627
# File 'lib/R3EXS/RGSS3.rb', line 622

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

Instance Attribute Details

#listObject

Returns the value of attribute list.



632
633
634
# File 'lib/R3EXS/RGSS3.rb', line 632

def list
  @list
end

#repeatObject

Returns the value of attribute repeat.



629
630
631
# File 'lib/R3EXS/RGSS3.rb', line 629

def repeat
  @repeat
end

#skippableObject

Returns the value of attribute skippable.



630
631
632
# File 'lib/R3EXS/RGSS3.rb', line 630

def skippable
  @skippable
end

#waitObject

Returns the value of attribute wait.



631
632
633
# File 'lib/R3EXS/RGSS3.rb', line 631

def wait
  @wait
end