Class: RPG::MapInfo
- Inherits:
-
Object
- Object
- RPG::MapInfo
- Defined in:
- lib/R3EXS/RGSS3.rb
Instance Attribute Summary collapse
-
#expanded ⇒ Object
Returns the value of attribute expanded.
-
#name ⇒ Object
Returns the value of attribute name.
-
#order ⇒ Object
Returns the value of attribute order.
-
#parent_id ⇒ Object
Returns the value of attribute parent_id.
-
#scroll_x ⇒ Object
Returns the value of attribute scroll_x.
-
#scroll_y ⇒ Object
Returns the value of attribute scroll_y.
Instance Method Summary collapse
-
#initialize ⇒ MapInfo
constructor
A new instance of MapInfo.
Constructor Details
#initialize ⇒ MapInfo
Returns a new instance of MapInfo.
474 475 476 477 478 479 480 481 |
# File 'lib/R3EXS/RGSS3.rb', line 474 def initialize @name = '' @parent_id = 0 @order = 0 @expanded = false @scroll_x = 0 @scroll_y = 0 end |
Instance Attribute Details
#expanded ⇒ Object
Returns the value of attribute expanded.
486 487 488 |
# File 'lib/R3EXS/RGSS3.rb', line 486 def @expanded end |
#name ⇒ Object
Returns the value of attribute name.
483 484 485 |
# File 'lib/R3EXS/RGSS3.rb', line 483 def name @name end |
#order ⇒ Object
Returns the value of attribute order.
485 486 487 |
# File 'lib/R3EXS/RGSS3.rb', line 485 def order @order end |
#parent_id ⇒ Object
Returns the value of attribute parent_id.
484 485 486 |
# File 'lib/R3EXS/RGSS3.rb', line 484 def parent_id @parent_id end |
#scroll_x ⇒ Object
Returns the value of attribute scroll_x.
487 488 489 |
# File 'lib/R3EXS/RGSS3.rb', line 487 def scroll_x @scroll_x end |
#scroll_y ⇒ Object
Returns the value of attribute scroll_y.
488 489 490 |
# File 'lib/R3EXS/RGSS3.rb', line 488 def scroll_y @scroll_y end |