Skip to content

Instantly share code, notes, and snippets.

@alptugan
Created August 17, 2018 11:42
Show Gist options
  • Save alptugan/b5a569ccc50b43ae378d689b5d2f0fce to your computer and use it in GitHub Desktop.
Save alptugan/b5a569ccc50b43ae378d689b5d2f0fce to your computer and use it in GitHub Desktop.
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