mirror of
https://github.com/wassname/phaser.git
synced 2026-06-29 16:30:29 +08:00
34ee2b0b20
Fixed docs issue in Tilemap. Created landscape pointer test, confirmed working fine (issue #276)
31 lines
811 B
PHP
31 lines
811 B
PHP
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="initial-scale=1 maximum-scale=1 user-scalable=0 minimal-ui" />
|
|
<title>phaser</title>
|
|
<base href="../" />
|
|
<script src="_site/js/jquery-2.0.3.min.js" type="text/javascript"></script>
|
|
<script src="../build/phaser.js" type="text/javascript"></script>
|
|
<?php
|
|
if (isset($_GET['f']))
|
|
{
|
|
$f = $_GET['f'];
|
|
?>
|
|
<script src="wip/<?php echo $f?>" type="text/javascript"></script>
|
|
<?php
|
|
}
|
|
?>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="phaser-example"></div>
|
|
|
|
</body>
|
|
</html>
|