Class: RPG::MoveRoute
- Defined in:
- scripts/00000 Dependencies/00001 LiteRGSS2/99999 RMXP_DATA.rb
Instance Attribute Summary collapse
-
#list
Returns the value of attribute list.
-
#repeat
Returns the value of attribute repeat.
-
#skippable
Returns the value of attribute skippable.
Instance Method Summary collapse
-
#initialize ⇒ MoveRoute
constructor
A new instance of MoveRoute.
Constructor Details
#initialize ⇒ MoveRoute
Returns a new instance of MoveRoute.
177 178 179 180 181 |
# File 'scripts/00000 Dependencies/00001 LiteRGSS2/99999 RMXP_DATA.rb', line 177 def initialize @repeat = true @skippable = false @list = [RPG::MoveCommand.new] end |
Instance Attribute Details
#list
Returns the value of attribute list.
184 185 186 |
# File 'scripts/00000 Dependencies/00001 LiteRGSS2/99999 RMXP_DATA.rb', line 184 def list @list end |
#repeat
Returns the value of attribute repeat.
182 183 184 |
# File 'scripts/00000 Dependencies/00001 LiteRGSS2/99999 RMXP_DATA.rb', line 182 def repeat @repeat end |
#skippable
Returns the value of attribute skippable.
183 184 185 |
# File 'scripts/00000 Dependencies/00001 LiteRGSS2/99999 RMXP_DATA.rb', line 183 def skippable @skippable end |