Class: UI::MiningGame::Tool_Sprite
- Inherits:
-
SpriteSheet
- Object
- LiteRGSS::Disposable
- LiteRGSS::Drawable
- LiteRGSS::Sprite
- LiteRGSS::ShaderedSprite
- Sprite
- ShaderedSprite
- SpriteSheet
- UI::MiningGame::Tool_Sprite
- Defined in:
- docs/4_Systems_801_Mining_Game.rb
Overview
Class describing the Tool_Sprite object
Direct Known Subclasses
Instance Attribute Summary collapse
-
#tool ⇒ Symbol
The symbol of the currently used tool.
Attributes inherited from SpriteSheet
Attributes inherited from LiteRGSS::ShaderedSprite
Attributes inherited from LiteRGSS::Sprite
#__index__, #angle, #bitmap, #height, #mirror, #opacity, #ox, #oy, #src_rect, #viewport, #visible, #width, #x, #y, #z, #zoom, #zoom_x, #zoom_y
Instance Method Summary collapse
-
#add_to_x(nb)
Increase x attribute by nb.
-
#add_to_y(nb)
Increase y attribute by nb.
-
#change_tool(sym_tool)
Change the tool image.
-
#initialize(viewport) ⇒ Tool_Sprite
constructor
Create the Tool_Sprite.
-
#new_frame
Set the next frame of the sheet.
-
#sub_to_x(nb)
Decrease x attribute by nb.
-
#sub_to_y(nb)
Decrease y attribute by nb.
Methods inherited from SpriteSheet
Methods inherited from Sprite
#load, #mouse_in?, #set_origin_div, #set_rect, #set_rect_div, #set_z, #simple_mouse_in?, #translate_mouse_coords, #update
Methods inherited from LiteRGSS::Sprite
new, #set_origin, #set_position
Methods inherited from LiteRGSS::Disposable
Constructor Details
#initialize(viewport) ⇒ Tool_Sprite
Create the Tool_Sprite
583 584 |
# File 'docs/4_Systems_801_Mining_Game.rb', line 583 def initialize() end |
Instance Attribute Details
#tool ⇒ Symbol
Returns the symbol of the currently used tool.
581 582 583 |
# File 'docs/4_Systems_801_Mining_Game.rb', line 581 def tool @tool end |
Instance Method Details
#add_to_x(nb)
Increase x attribute by nb
587 588 |
# File 'docs/4_Systems_801_Mining_Game.rb', line 587 def add_to_x(nb) end |
#add_to_y(nb)
Increase y attribute by nb
595 596 |
# File 'docs/4_Systems_801_Mining_Game.rb', line 595 def add_to_y(nb) end |
#change_tool(sym_tool)
Change the tool image
606 607 |
# File 'docs/4_Systems_801_Mining_Game.rb', line 606 def change_tool(sym_tool) end |
#new_frame
Set the next frame of the sheet
602 603 |
# File 'docs/4_Systems_801_Mining_Game.rb', line 602 def new_frame end |
#sub_to_x(nb)
Decrease x attribute by nb
591 592 |
# File 'docs/4_Systems_801_Mining_Game.rb', line 591 def sub_to_x(nb) end |
#sub_to_y(nb)
Decrease y attribute by nb
599 600 |
# File 'docs/4_Systems_801_Mining_Game.rb', line 599 def sub_to_y(nb) end |