phaser/examples/sideview.html
photonstorm 8662cd2fd4 Brand new Grunt task - creates each core library as its own file and a combined phaser.js.
New build script now cleanly splits Phaser, Pixi and p2 so they are each UMD wrapped and each available in the global scope (now more requireJS friendly!).
phaser-no-libs.js allows you to use your own version of p2.js or pixi.js with Phaser. Warning: This is totally unsupported. If you hit bugs, you fix them yourself.
Fixed silly instanceof bug in game objects (sorry guys).
2014-02-28 09:30:53 +00:00

29 lines
No EOL
1 KiB
HTML

<!doctype html>
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>phaser examples</title>
<link href="_site/css/phaser-lite.css" media="screen" rel="stylesheet" type="text/css">
<script src="_site/js/jquery-2.0.3.min.js" type="text/javascript"></script>
<script src="_site/js/phaser-sideview.js" type="text/javascript"></script>
</head>
<body>
<!--
sideview.html layout inspired / borrowed in part from the three.js examples viewer
-->
<div id="header"></div>
<div id="panel">
<div id="examples-list"></div>
</div>
<div id="footer">
<p id="total">Total examples: </p>
<p>Phaser version: 2.0.0</p>
<p><a href="index.html">Switch to Full View</a></p>
</div>
<iframe id="viewer" allowfullscreen="true" webkitallowfullscreen="true" mozallowfullscreen="true"></iframe>
</body>
</html>