admin管理员组文章数量:1328051
I'm new working with Phaser 3 and Apache Córdova for create mobile Android games.
I have created a game of 1200 x 800 px. It looks fine in tablets but in smartphones doesn't. How can I scale it to work in multiple screen sizes?
Additionally, I need help to force to landscape the game orientation using Phaser 3.
Thanks
I'm new working with Phaser 3 and Apache Córdova for create mobile Android games.
I have created a game of 1200 x 800 px. It looks fine in tablets but in smartphones doesn't. How can I scale it to work in multiple screen sizes?
Additionally, I need help to force to landscape the game orientation using Phaser 3.
Thanks
Share Improve this question edited Jun 27, 2018 at 14:14 James Skemp 8,5819 gold badges70 silver badges112 bronze badges asked Jun 7, 2018 at 13:48 Rafael GallardoRafael Gallardo 1431 silver badge7 bronze badges2 Answers
Reset to default 6function create () {
window.addEventListener('resize', resize);
resize();
}
function resize() {
var canvas = game.canvas, width = window.innerWidth, height = window.innerHeight;
var wratio = width / height, ratio = canvas.width / canvas.height;
if (wratio < ratio) {
canvas.style.width = width + "px";
canvas.style.height = (width / ratio) + "px";
} else {
canvas.style.width = (height * ratio) + "px";
canvas.style.height = height + "px";
}
}
To control screen orientation, add the following to the applicationManifest xml in the build/src/main directory of your android project. This will disappear every time you rebuild from a package creator like capacitor, so you'll need to replace it every time you generate an android project.
<application
...
android:screenOrientation="landscape"
>
<activity
...
android:screenOrientation="landscape">
...
</activity>
</application>
本文标签:
版权声明:本文标题:javascript - How to scale a Phaser 3 game and their assets to it works in smartphones and tablets? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742239689a2438728.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论