Update scale and rotation after playing a new action, since with segmented sprites that often means a new image object.

This commit is contained in:
Scott Erickson 2014-09-26 11:25:36 -07:00
parent 627c56dbb5
commit be805ff3c1

View file

@ -140,6 +140,8 @@ module.exports = CocoSprite = class CocoSprite extends CocoClass
return @updateActionDirection() unless action.animation or action.container
m = if action.container then 'gotoAndStop' else 'gotoAndPlay'
@imageObject[m]?(action.name)
@updateScale()
@updateRotation()
hide: ->
@hiding = true