Fixed bobbing.

This commit is contained in:
Nick Winter 2014-04-28 18:36:46 -07:00
parent cf6dcca432
commit aea49cc27f

View file

@ -234,7 +234,7 @@ module.exports = CocoSprite = class CocoSprite extends CocoClass
return unless @thang?.pos and @options.camera?
wop = @getWorldPosition()
[p0, p1] = [@lastPos, @thang.pos]
return if p0 and p0.x is p1.x and p0.y is p1.y and p0.z is p1.z and not @options.camera.tweeningZoomTo
return if p0 and p0.x is p1.x and p0.y is p1.y and p0.z is p1.z and not @options.camera.tweeningZoomTo and not @thang.bobHeight
sup = @options.camera.worldToSurface wop
[@displayObject.x, @displayObject.y] = [sup.x, sup.y]
@lastPos = p1.copy?() or _.clone(p1)