-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
53 lines (44 loc) · 2.17 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
45
46
47
48
49
50
51
52
53
<html>
<head>
<title>Gameutils.js</title>
<link rel="stylesheet" type="text/css" href="examples/assets/default.css">
</head>
<body class="mainpage">
<h1>gameutils.js</h1>
<div id="content">
<h2>A Head Start on JavaScript Game Development</h2>
<p>Gameutils.js is a collection of helpers aimed at handling the tedious tasks of JavaScript game development.
It is not a framework, but rather a library of simple utilities that can be used independently of each other.</p>
<p>It is for people who like to work with code close to the platform level, but aims to make this as simple as possible.</p>
<p>It is especially well suited for game jams and similar events, with a focus on flexibility that enables the exploration
of new ideas.</p>
<p>It targets browsers that support modern APIs, and has been tested on Chrome, Firefox and Internet Explorer 11.</p>
<p><a href="https://github.com/Oletus/gameutils.js">Get the code on GitHub</a></p>
<h2>Examples</h2>
<ul>
<li><a href="examples/mainloop.html">Main loop</a></li>
<li><a href="examples/canvasresizer.html">Canvas resizer</a></li>
<li><a href="examples/input.html">Input</a></li>
<li><a href="examples/audio.html">Audio</a></li>
<li><a href="examples/sprite.html">Sprite</a></li>
<li><a href="examples/animatedsprite.html">AnimatedSprite</a></li>
<li><a href="examples/particle.html">ParticleEngine</a></li>
<li><a href="examples/canvasui.html">CanvasUI</a></li>
<li><a href="examples/monospacebitmapfont.html">MonospaceBitmapFont</a></li>
<li><a href="examples/platformingphysics-movingplatform.html">PlatformingPhysics moving platform</a></li>
</ul>
<h2>Tools</h2>
<ul>
<li><a href="tools/particle-editor.html">Particle effect editor</a></li>
</ul>
<h2>Games created with these utilities</h2>
<ul>
<li><a href="http://oletus.github.io/totemteardown/">Totem Takedown</a></li>
<li><a href="http://oletus.github.io/codename-x/">Panjandrum vs. Triebflügel</a></li>
<li><a href="http://oletus.github.io/megatitan/">Megatitan vs. Cthulhu</a></li>
<li><a href="http://oletus.github.io/elevator/">The Everything Building</a> - Ludum Dare 34 overall #2 ranked game</li>
<li><a href="http://oletus.github.io/lasertown/">Laser Town</a></li>
</ul>
</div>
</body>
</html>