@petkoneo/phaser3-rex-plugins
Version:
16 lines (13 loc) • 424 B
JavaScript
const DegToRad = Phaser.Math.DegToRad;
const RAD180 = DegToRad(180);
var LayoutFaces = function (parent, faces) {
var backFace = faces.back;
if (backFace) {
if (parent.orientation === 0) { // Flip around Y
backFace.transformVerts(0, 0, 0, 0, RAD180, 0);
} else { // Flip around X
backFace.transformVerts(0, 0, 0, RAD180, 0, 0);
}
}
}
export default LayoutFaces;