Class: UI::MiningGame::Tool_Sprite

Inherits:
SpriteSheet show all
Defined in:
docs/4_Systems_801_Mining_Game.rb

Overview

Class describing the Tool_Sprite object

Direct Known Subclasses

Tool_Hit_Sprite

Instance Attribute Summary collapse

Attributes inherited from SpriteSheet

#nb_x, #nb_y, #sx, #sy

Attributes inherited from LiteRGSS::ShaderedSprite

#blendmode, #shader

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

Methods inherited from SpriteSheet

#bitmap=, #resize, #select

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

#dispose, #disposed?

Constructor Details

#initialize(viewport) ⇒ Tool_Sprite

Create the Tool_Sprite



583
584
# File 'docs/4_Systems_801_Mining_Game.rb', line 583

def initialize(viewport)
end

Instance Attribute Details

#toolSymbol

Returns the symbol of the currently used tool.

Returns:

  • (Symbol)

    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

Parameters:

  • nb (Integer)


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

Parameters:

  • nb (Integer)


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

Parameters:

  • sym_tool (Symbol)

    the symbol of the currently used tool



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

Parameters:

  • nb (Integer)


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

Parameters:

  • nb (Integer)


599
600
# File 'docs/4_Systems_801_Mining_Game.rb', line 599

def sub_to_y(nb)
end