codecombat/app/lib/surface/sprite_utils.coffee

16 lines
480 B
CoffeeScript
Raw Normal View History

WIDTH = 20
HEIGHT = 2
EDGE = 0.3
2014-01-03 13:32:13 -05:00
module.exports.createProgressBar = createProgressBar = (color) ->
2014-01-03 13:32:13 -05:00
g = new createjs.Graphics()
g.setStrokeStyle(1)
g.beginFill(createjs.Graphics.getRGB(0, 0, 0))
g.drawRect(0, -HEIGHT/2, WIDTH, HEIGHT, HEIGHT)
2014-01-03 13:32:13 -05:00
g.beginFill(createjs.Graphics.getRGB(color...))
g.drawRoundRect(EDGE, EDGE - HEIGHT/2, WIDTH-EDGE*2, HEIGHT-EDGE*2, HEIGHT-EDGE*2)
2014-01-03 13:32:13 -05:00
s = new createjs.Shape(g)
s.z = 100
s.bounds = [0, -HEIGHT/2, WIDTH, HEIGHT]
2014-01-03 13:32:13 -05:00
return s