You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
radium/radium/sprite.coffee

13 lines
356 B
CoffeeScript

class Sprite
constructor: (@engine, @name, @image) ->
{width: @width, height: @height} = @getSize()
draw: (x, y, options = {}, surface = "") =>
surface = @engine.getSurface(surface)
# TODO: Options.
surface.globalAlpha = options.alpha ? 1
surface.drawImage(@image, x, y)
getSize: =>
return {width: @image.width, height: @image.height}