mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-04 17:19:47 -04:00
Fixed debug, and some other mark issues when sprite sheets update, most likely.
This commit is contained in:
parent
7f4ac3e5d6
commit
091910f2ad
2 changed files with 6 additions and 3 deletions
app/lib/surface
|
@ -614,7 +614,9 @@ module.exports = Lank = class Lank extends CocoClass
|
|||
setDebug: (debug) ->
|
||||
return unless @thang?.collides and @options.camera?
|
||||
@addMark 'debug', @options.floatingLayer if debug
|
||||
@marks.debug?.toggle debug
|
||||
if d = @marks.debug
|
||||
d.toggle debug
|
||||
d.updatePosition()
|
||||
|
||||
addLabel: (name, style) ->
|
||||
@labels[name] ?= new Label sprite: @, camera: @options.camera, layer: @options.textLayer, style: style
|
||||
|
|
|
@ -34,12 +34,13 @@ module.exports = class Mark extends CocoClass
|
|||
|
||||
onLayerMadeSpriteSheet: ->
|
||||
return unless @sprite
|
||||
return @update() if @markLank
|
||||
# need to update the mark display object manually...
|
||||
# rebuild sprite for new sprite sheet
|
||||
@sprite = null
|
||||
@build()
|
||||
@layer.addChild @sprite
|
||||
@layer.updateLayerOrder()
|
||||
# @updatePosition()
|
||||
@update()
|
||||
|
||||
toggle: (to) ->
|
||||
to = !!to
|
||||
|
|
Loading…
Add table
Reference in a new issue