Info button

This commit is contained in:
Ruben Müller 2014-12-07 18:53:30 +01:00
parent d5ecbd0ccb
commit c98464bec0
4 changed files with 10 additions and 5 deletions

BIN
public/images/info.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -5,7 +5,7 @@ app = playground(
smoothing: false,
create: ->
@loadImages "layers", "active", "progress", "selected", "entities", "hud", "actions", "speechbubbles", "deadtiles", "layerdetails", "entitydetails", "buildinfo", "cursor"
@loadImages "layers", "active", "progress", "selected", "entities", "hud", "actions", "speechbubbles", "deadtiles", "layerdetails", "entitydetails", "buildinfo", "cursor", "info"
@currentHoveredTile = new Tile
ready: ->

View File

@ -57,6 +57,9 @@ app.game =
if @isMouseInView event.x/8, event.y/8
switch event.button
when 'left'
if event.x > 143 and event.x < 151 and event.y > 95 and event.y < 106
app.game.hud.showBuildInfo()
else
tile.click(event.button)
@currentSelectedTile.deselect() if @currentSelectedTile

View File

@ -18,6 +18,8 @@ app.game.hud =
panelusage = 'resources'
app.layer.drawImage app.images.hud, 0, 11*8
app.layer.drawImage app.images.info, 143, 95
# cursor
# app.layer.drawImage app.images.cursor, app.game.mouseX, app.game.mouseY