PixiJS
App 메인화면 출력
kyoun
2019. 7. 13. 17:55
PixiJS API Documentation
If resizeTo is set, calling this function will resize to the width and height of that element.
pixijs.download
var Game;
function PixiInit()
{
Game = new PIXI.Application({ });
document.body.appendChild(Game.view);
console.log("hello wolrd");
}
<!DOCTYPE html>
<html lang= "ko">
<head>
<meta charset="utf-8">
<script src="https://cdnjs.cloudflare.com/ajax/libs/pixi.js/4.5.1/pixi.min.js"></script>
<script src="myTest.js"></script>
</head>
<body>
<script>
PixiInit();
</script>
</body>
</html>