摘要:巨坑在內不要把設為在內不要把設為在內不要把設為重要的事情得說三遍接收更多游戲開源教學為游戲開發深感自豪
巨坑:
在config內不要把 width 設為 window.innnerWidth
在config內不要把 width 設為 window.innnerWidth
在config內不要把 width 設為 window.innnerWidth
重要的事情得說三遍...
var game; // once the window loads... window.onload = function () { // 接收 websocket; // config of the game; var config = { type: Phaser.AUTO, parent: "bitgame", width: 640, // don"t window.innerWidth height: 512, physics: { default: "arcade", arcade: { gravity: { y: 0 }, debug: false, } }, //*** scenes used by the game scene: [BootScene,PlayGameScene,UIScene] } game = new Phaser.Game(config); // game.scene.add("Boot", BootScene); //*** key,class */ // game.scene.add("PlayGame", PlayGameScene); // game.scene.add("UI", UIScene); // game.scene.start("Boot"); window.focus(); resize(); window.addEventListener("resize", resize, false); } function resize() { var canvas = document.querySelector("canvas"); var windowWidth = window.innerWidth; var windowHeight = window.innerHeight; var windowRatio = windowWidth / windowHeight; var gameRatio = game.config.width / game.config.height; if (windowRatio < gameRatio) { canvas.style.width = windowWidth + "px"; canvas.style.height = (windowWidth / gameRatio) + "px"; } else { canvas.style.width = (windowHeight * gameRatio) + "px"; canvas.style.height = windowHeight + "px"; } }
更多游戲開源教學:www.iFIERO.com -- 為游戲開發深感自豪
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/53231.html
摘要:巨坑在內不要把設為在內不要把設為在內不要把設為重要的事情得說三遍接收更多游戲開源教學為游戲開發深感自豪 showImg(https://segmentfault.com/img/remote/1460000016934375); 巨坑:在config內不要把 width 設為 window.innnerWidth在config內不要把 width 設為 window.innnerWid...
摘要:在文末,我會附上一個可加載的模型方便學習中文藝術字渲染用原生可以很容易地繪制文字,但是原生提供的文字效果美化功能十分有限。 showImg(https://segmentfault.com/img/bVWYnb?w=900&h=385); WebGL 可以說是 HTML5 技術生態鏈中最為令人振奮的標準之一,它把 Web 帶入了 3D 的時代。 初識 WebGL 先通過幾個使用 Web...
showImg(https://segmentfault.com/img/remote/1460000016964470); showImg(https://segmentfault.com/img/remote/1460000016964471); scene.js /// use strict; var BootScene = new Phaser.Class({ Extends...
閱讀 1512·2021-11-24 09:38
閱讀 3366·2021-11-18 10:02
閱讀 3253·2021-09-22 15:29
閱讀 2937·2021-09-22 15:15
閱讀 1037·2021-09-13 10:25
閱讀 1834·2021-08-17 10:13
閱讀 1971·2021-08-04 11:13
閱讀 1973·2019-08-30 15:54