ld31-space-diggers/src/entities/silo.coffee

28 lines
365 B
CoffeeScript
Raw Permalink Normal View History

2014-12-07 00:19:22 +01:00
class Silo
constructor: ->
@frame = 0
window.setInterval @changeAnimation, 500
tick: (tile)->
sprite: ->
2014-12-07 17:04:40 +01:00
[@frame*8, 8, 8, 8]
spritedetail: ->
[0, 16, 16, 16]
2014-12-07 00:19:22 +01:00
isMoveable: ->
false
changeAnimation: =>
2014-12-07 16:27:35 +01:00
if @frame == 1
2014-12-07 00:19:22 +01:00
@frame = 0
else
@frame += 1
2014-12-07 20:48:54 +01:00
spaceProvided: 15
2014-12-07 18:37:04 +01:00
energyProvided: 0
2014-12-07 00:46:46 +01:00
2014-12-07 14:07:13 +01:00
isDockable: true