Class: UI::DexButton
- Inherits:
-
SpriteStack
- Object
- SpriteStack
- UI::DexButton
- Defined in:
- scripts/01450 Systems/00101 Dex/00002 UI/01400 Dex UIs.rb
Overview
Dex sprite that show the Pokemon infos
Constant Summary
Constants inherited from SpriteStack
Instance Attribute Summary
Attributes inherited from SpriteStack
#animated, #data, #moving, #stack, #viewport, #x, #y
Instance Method Summary collapse
-
#data=(pokemon)
Change the data.
-
#initialize(viewport, index) ⇒ DexButton
constructor
Create a new dex button.
-
#selected=(value)
Tell the button if it's selected or not : change the obfuscator visibility & x position.
Methods inherited from SpriteStack
#[], #add_background, #add_line, #add_text, #anime, #anime_delta_set, #dispose, #each, #execute_anime, #move, #move_to, #opacity, #opacity=, #push, #push_sprite, #set_origin, #set_position, #simple_mouse_in?, #size, #stop_animation, #translate_mouse_coords, #update, #update_animation, #update_position, #visible, #visible=, #with_cache, #with_font, #with_surface, #z, #z=
Constructor Details
#initialize(viewport, index) ⇒ DexButton
Create a new dex button
116 117 118 119 120 121 122 |
# File 'scripts/01450 Systems/00101 Dex/00002 UI/01400 Dex UIs.rb', line 116 def initialize(, index) # Create the sprite stack at coordinate 147, 62 using the RPG::Cache.pokedex as image source super(, 147, 62, default_cache: :pokedex) create_sprites fix_position(index) end |
Instance Method Details
#data=(pokemon)
Change the data
126 127 128 129 |
# File 'scripts/01450 Systems/00101 Dex/00002 UI/01400 Dex UIs.rb', line 126 def data=(pokemon) super(pokemon) update_catch_icon_visibility end |
#selected=(value)
Tell the button if it's selected or not : change the obfuscator visibility & x position
133 134 135 136 |
# File 'scripts/01450 Systems/00101 Dex/00002 UI/01400 Dex UIs.rb', line 133 def selected=(value) @obfuscator.visible = !value set_position(value ? 147 : 163, y) end |