Fixed a bounds offset issue in the Thang Editor colors tab.

This commit is contained in:
Nick Winter 2014-09-01 16:22:04 -07:00
parent 72eb59b7c3
commit 6085b70dfc

View file

@ -67,11 +67,12 @@ module.exports = class ThangTypeColorsTabView extends CocoView
@spriteBuilder.setOptions options @spriteBuilder.setOptions options
@spriteBuilder.buildColorMaps() @spriteBuilder.buildColorMaps()
@movieClip = @spriteBuilder.buildMovieClip animation @movieClip = @spriteBuilder.buildMovieClip animation
larger = Math.min(400 / @movieClip.nominalBounds.width, 400 / @movieClip.nominalBounds.height) bounds = @movieClip.frameBounds?[0] ? @movieClip.nominalBounds
larger = Math.min(400 / bounds.width, 400 / bounds.height)
@movieClip.scaleX = larger @movieClip.scaleX = larger
@movieClip.scaleY = larger @movieClip.scaleY = larger
@movieClip.regX = @movieClip.nominalBounds.x @movieClip.regX = bounds.x
@movieClip.regY = @movieClip.nominalBounds.y @movieClip.regY = bounds.y
@stage.addChild @movieClip @stage.addChild @movieClip
updateContainer: -> updateContainer: ->