Class: RPG::MoveRoute
- Inherits:
-
Object
- Object
- RPG::MoveRoute
- Defined in:
- lib/rgss3/rpg.rb
Instance Attribute Summary collapse
-
#list ⇒ Object
Returns the value of attribute list.
-
#repeat ⇒ Object
Returns the value of attribute repeat.
-
#skippable ⇒ Object
Returns the value of attribute skippable.
-
#wait ⇒ Object
Returns the value of attribute wait.
Instance Method Summary collapse
-
#initialize ⇒ MoveRoute
constructor
A new instance of MoveRoute.
Constructor Details
#initialize ⇒ MoveRoute
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
#list ⇒ Object
Returns the value of attribute list.
325 326 327 |
# File 'lib/rgss3/rpg.rb', line 325 def list @list end |
#repeat ⇒ Object
Returns the value of attribute repeat.
322 323 324 |
# File 'lib/rgss3/rpg.rb', line 322 def repeat @repeat end |
#skippable ⇒ Object
Returns the value of attribute skippable.
323 324 325 |
# File 'lib/rgss3/rpg.rb', line 323 def skippable @skippable end |
#wait ⇒ Object
Returns the value of attribute wait.
324 325 326 |
# File 'lib/rgss3/rpg.rb', line 324 def wait @wait end |