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.
496 497 498 499 500 501 502 503 |
# File 'lib/R3EXS/RGSS3.rb', line 496 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.
508 509 510 |
# File 'lib/R3EXS/RGSS3.rb', line 508 def @expanded end |
#name ⇒ Object
Returns the value of attribute name.
505 506 507 |
# File 'lib/R3EXS/RGSS3.rb', line 505 def name @name end |
#order ⇒ Object
Returns the value of attribute order.
507 508 509 |
# File 'lib/R3EXS/RGSS3.rb', line 507 def order @order end |
#parent_id ⇒ Object
Returns the value of attribute parent_id.
506 507 508 |
# File 'lib/R3EXS/RGSS3.rb', line 506 def parent_id @parent_id end |
#scroll_x ⇒ Object
Returns the value of attribute scroll_x.
509 510 511 |
# File 'lib/R3EXS/RGSS3.rb', line 509 def scroll_x @scroll_x end |
#scroll_y ⇒ Object
Returns the value of attribute scroll_y.
510 511 512 |
# File 'lib/R3EXS/RGSS3.rb', line 510 def scroll_y @scroll_y end |