Class: RPG::Event::Page::Graphic
- Inherits:
-
Object
- Object
- RPG::Event::Page::Graphic
- Defined in:
- lib/R3EXS/RGSS3.rb
Instance Attribute Summary collapse
-
#character_index ⇒ Object
Returns the value of attribute character_index.
-
#character_name ⇒ Object
Returns the value of attribute character_name.
-
#direction ⇒ Object
Returns the value of attribute direction.
-
#pattern ⇒ Object
Returns the value of attribute pattern.
-
#tile_id ⇒ Object
Returns the value of attribute tile_id.
Instance Method Summary collapse
-
#initialize ⇒ Graphic
constructor
A new instance of Graphic.
Constructor Details
#initialize ⇒ Graphic
Returns a new instance of Graphic.
594 595 596 597 598 599 600 |
# File 'lib/R3EXS/RGSS3.rb', line 594 def initialize @tile_id = 0 @character_name = '' @character_index = 0 @direction = 2 @pattern = 0 end |
Instance Attribute Details
#character_index ⇒ Object
Returns the value of attribute character_index.
604 605 606 |
# File 'lib/R3EXS/RGSS3.rb', line 604 def character_index @character_index end |
#character_name ⇒ Object
Returns the value of attribute character_name.
603 604 605 |
# File 'lib/R3EXS/RGSS3.rb', line 603 def character_name @character_name end |
#direction ⇒ Object
Returns the value of attribute direction.
605 606 607 |
# File 'lib/R3EXS/RGSS3.rb', line 605 def direction @direction end |
#pattern ⇒ Object
Returns the value of attribute pattern.
606 607 608 |
# File 'lib/R3EXS/RGSS3.rb', line 606 def pattern @pattern end |
#tile_id ⇒ Object
Returns the value of attribute tile_id.
602 603 604 |
# File 'lib/R3EXS/RGSS3.rb', line 602 def tile_id @tile_id end |