Need updated Aether.

This commit is contained in:
Nick Winter 2014-03-20 10:43:24 -07:00
parent 64aa6c95fd
commit 2f3c0b0cc6
2 changed files with 3 additions and 3 deletions

View file

@ -55,7 +55,7 @@ module.exports = class Mark extends CocoClass
if @name is 'bounds' then @buildBounds() if @name is 'bounds' then @buildBounds()
else if @name is 'shadow' then @buildShadow() else if @name is 'shadow' then @buildShadow()
else if @name is 'debug' then @buildDebug() else if @name is 'debug' then @buildDebug()
else if @name.match(".*Range$") then @buildRadius(@name) else if @name.match(/.+Range$/) then @buildRadius(@name)
else if @thangType then @buildSprite() else if @thangType then @buildSprite()
else console.error "Don't know how to build mark for", @name else console.error "Don't know how to build mark for", @name
@mark?.mouseEnabled = false @mark?.mouseEnabled = false
@ -142,7 +142,7 @@ module.exports = class Mark extends CocoClass
@mark.graphics.beginFill colors[range] @mark.graphics.beginFill colors[range]
else else
@mark.graphics.beginFill extracolors[i] @mark.graphics.beginFill extracolors[i]
# Draw the outer circle # Draw the outer circle
@mark.graphics.drawCircle 0, 0, @sprite.thang[range] * Camera.PPM @mark.graphics.drawCircle 0, 0, @sprite.thang[range] * Camera.PPM

View file

@ -32,7 +32,7 @@
"firepad": "~0.1.2", "firepad": "~0.1.2",
"marked": "~0.3.0", "marked": "~0.3.0",
"moment": "~2.5.0", "moment": "~2.5.0",
"aether": "~0.1.10", "aether": "~0.1.14",
"underscore.string": "~2.3.3", "underscore.string": "~2.3.3",
"firebase": "~1.0.2", "firebase": "~1.0.2",
"catiline": "~2.9.3" "catiline": "~2.9.3"