RM test.html

This commit is contained in:
MasterGordon 2018-04-08 11:38:15 +02:00
parent f7c362f87e
commit aa02d23405
1 changed files with 0 additions and 26 deletions

View File

@ -1,26 +0,0 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Hello World</title>
</head>
<script src="js/libs/pixi.min.js"></script>
<body>
<script type="text/javascript">
//Create a Pixi Application
let app = new PIXI.Application({
width: 256, // default: 800
height: 256, // default: 600
antialias: false, // default: false
transparent: true, // default: false
resolution: 1 // default: 1
});
//Add the canvas that Pixi automatically created for you to the HTML document
document.body.appendChild(app.view);
</script>
</body>
</html>