Class: RPG::MoveRoute

Inherits:
Object
  • Object
show all
Defined in:
lib/rgss3/rpg.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeMoveRoute

Returns a new instance of MoveRoute.



316
317
318
319
320
321
# File 'lib/rgss3/rpg.rb', line 316

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

Instance Attribute Details

#listObject

Returns the value of attribute list.



325
326
327
# File 'lib/rgss3/rpg.rb', line 325

def list
  @list
end

#repeatObject

Returns the value of attribute repeat.



322
323
324
# File 'lib/rgss3/rpg.rb', line 322

def repeat
  @repeat
end

#skippableObject

Returns the value of attribute skippable.



323
324
325
# File 'lib/rgss3/rpg.rb', line 323

def skippable
  @skippable
end

#waitObject

Returns the value of attribute wait.



324
325
326
# File 'lib/rgss3/rpg.rb', line 324

def wait
  @wait
end