🙌
Phaserの基本構造
Phaser
PhaserはJSを利用したゲームエンジンです。ゲーム作成の基本構造のコードです
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<script src="//cdn.jsdelivr.net/npm/phaser@3.55.2/dist/phaser.min.js"></script>
<style>
body {
margin: 0;
}
</style>
<script>
var config = {
type: Phaser.AUTO,
width: 800,
height: 600,
scene: {
preload: preload,
create: create,
update: update,
}
};
var game = new Phaser.Game(config);
function preload () {
console.log("this is preload");
}
function create () {
console.log("this is create");
}
function update() {
console.log("this is update");
}
</script>
</head>
<body>
</body>
</html>
Discussion