기본 구조
6468 단어 JavaScriptphasertech
Phaser
Phaser는 JS를 사용하는 게임 엔진입니다.게임의 기본 구성 코드 만들기
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<script src="//cdn.jsdelivr.net/npm/[email protected]/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>
Reference
이 문제에 관하여(기본 구조), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/hirocky/articles/9c177fe54a22d5텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)