Hi! I need help, I need it when the screen is rotated, all the children have kept their size, but the background has been adjusted to the screen size.
I have code
let app = new PIXI.Application({
width: window.innerWidth,
height: window.innerHeight,
autoResize: true,
resolution: devicePixelRatio
});
document.body.appendChild(app.view);
function resize() {
app.view.style.width = window.innerWidth + 'px';
app.view.style.height = window.innerHeight + 'px';
}
win