Class: UI::CategorySprite

Inherits:
SpriteSheet show all
Defined in:
scripts/01450 Systems/00000 General/00100 UI Generics/00500 HelperSprites.rb

Overview

Class that show the category of a skill

Constant Summary collapse

IMAGE_NAME =

Name of the image in Graphics/Interface

'skill_categories'

Instance Attribute Summary

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=, #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) ⇒ CategorySprite

Create a new category sprite

Parameters:

  • viewport (Viewport)

    viewport in which the sprite is shown



141
142
143
144
# File 'scripts/01450 Systems/00000 General/00100 UI Generics/00500 HelperSprites.rb', line 141

def initialize(viewport)
  super(viewport, 1, 3)
  set_bitmap(IMAGE_NAME, :interface)
end

Instance Method Details

#data=(object)

Set the object that responds to #atk_class

Parameters:

  • object (#atk_class, nil)


148
149
150
# File 'scripts/01450 Systems/00000 General/00100 UI Generics/00500 HelperSprites.rb', line 148

def data=(object)
  self.sy = object.atk_class - 1 if (self.visible = (object ? true : false))
end