Merge branch 'master' of https://github.com/arg-games/ld31
This commit is contained in:
commit
f82c2b3157
3 changed files with 15 additions and 8 deletions
|
@ -4,8 +4,10 @@ app.game =
|
|||
@map[i] = new Tile
|
||||
|
||||
render: ->
|
||||
app.layer.save().scale(5, 5)
|
||||
for tile, i in @map
|
||||
tile.render(i-(Math.floor(i/20)*20), Math.floor(i/20))
|
||||
app.layer.restore()
|
||||
@hud.render()
|
||||
|
||||
step: ->
|
||||
|
@ -13,8 +15,8 @@ app.game =
|
|||
map: []
|
||||
|
||||
resources:
|
||||
stardust: 0
|
||||
bedrock: 0
|
||||
stardust: 10
|
||||
bedrock: 1
|
||||
lubinit: 0
|
||||
oxodum: 0
|
||||
notch: 0
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
app.game.hud =
|
||||
render: ->
|
||||
app.layer
|
||||
.fillStyle "#f00"
|
||||
.fillRect 0, 0, 8, 8
|
||||
posy = 20
|
||||
for type, amount of app.game.resources
|
||||
if amount > 0
|
||||
app.layer
|
||||
.fillStyle "#fff"
|
||||
.font "15px Arial"
|
||||
.wrappedText(amount + "x " + type, 10, posy, 200)
|
||||
posy += 15
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
app = playground({
|
||||
width: 8*20,
|
||||
height: 8*15,
|
||||
scaleToFit: true,
|
||||
width: 8*20*5,
|
||||
height: 8*15*5,
|
||||
scaleToFit: false,
|
||||
smoothing: false,
|
||||
|
||||
create: ->
|
||||
|
|
Loading…
Reference in a new issue