Created
August 17, 2018 11:42
-
-
Save alptugan/b5a569ccc50b43ae378d689b5d2f0fce to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var scaleW = this.imgW / this.images[this.curId].width; | |
var scaleH = this.imgH / this.images[this.curId].height; | |
if(scaleW > scaleH) { | |
this.images[this.curId].height = this.imgH; | |
this.images[this.curId].scale.x = this.images[this.curId].scale.y; | |
}else{ | |
this.images[this.curId].width = this.imgW; | |
this.images[this.curId].scale.y = this.images[this.curId].scale.x; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment