This repository was archived by the owner on Jan 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathindex.html
44 lines (39 loc) · 1.44 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!doctype html>
<html>
<head>
<title>Tilemaps examples</title>
<meta charset="utf-8">
<link rel="stylesheet" href="styles.css" type="text/css">
</head>
<body>
<header class="main-header">
<h1><a href="index.html">Tilemaps examples</a></h1>
<p class="subtitle">Index</p>
</header>
<div class="main-wrapper">
<p>This is a collection of demos and examples on how to use and implement
<strong>tilemaps</strong> in HTML 5 games.</p>
<p>It is recommended to also read the companion articles at the
<a href="https://developer.mozilla.org/en-US/docs/Games/Techniques/Tilemaps" target="_top">Mozilla Developer Network</a>.
</p>
<nav>
<h1>Square tiles</h1>
<ul>
<li><a href="square/no-scroll.html">Non-scrolling tilemaps</a></li>
<li><a href="square/layers.html">Tilemaps with layers</a></li>
<li><a href="square/scroll.html">Scrolling tilemaps</a></li>
<li><a href="square/logic-grid.html">Collisions in tilemaps</a></li>
</ul>
<h1>Performance improvements</h1>
<ul>
<li><a href="performance/offcanvas.html">Offcanvas drawing</a></li>
</ul>
<h1>Isometric tiles</h1>
<p>Coming soon.</p>
</nav>
<footer class="main-footer">
<p>Source code on <a href="https://github.com/mozdevs/gamedev-js-tiles" target="_top">the Github repository</a>.</p>
</footer>
</div><!-- main wrapper -->
</body>
</html>