phaser4-rex-plugins
Version:
23 lines (17 loc) • 554 B
JavaScript
import AlignIn from '../../../../plugins/utils/actions/AlignIn.js';
var GetThumbAlignPoint = function (align, out) {
if (out === undefined) {
out = tmpPoint;
}
var thumb = this.childrenMap.thumb;
var currentX = thumb.x;
var currentY = thumb.y;
AlignIn(thumb, this.innerLeft, this.innerTop, this.innerWidth, this.innerHeight, align);
out.x = thumb.x;
out.y = thumb.y;
thumb.x = currentX;
thumb.y = currentY;
return out;
}
var tmpPoint = {};
export default GetThumbAlignPoint;