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

24 lines
308 B
CoffeeScript
Raw Normal View History

2014-12-07 00:19:22 +01:00
class Silo
constructor: ->
@frame = 0
window.setInterval @changeAnimation, 500
tick: (tile)->
sprite: ->
[@frame*8, 8, 8, 8]
isMoveable: ->
false
changeAnimation: =>
if @frame == 2
@frame = 0
else
@frame += 1
2014-12-07 00:46:46 +01:00
spaceProvided: 150
2014-12-07 14:07:13 +01:00
isDockable: true