summaryrefslogtreecommitdiff
path: root/index.html
blob: 94e5b2a690fb6a0e5b77b2f9ce55b7b918ae95ff (plain)
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Transmuto</title>
    <link rel="stylesheet" type="text/css" href="index.css"/>
    <link rel="icon" href="/static/img/favicon.ico" type="image/x-icon">
    <script type="text/javascript" src="three_js/dist/three.min.js"></script>
    <script type="text/javascript" src="three_js/dist/Detector.js"></script>
    <script type="text/javascript" src="physi_js/physi.js"></script>
</head>
<body>
<div id="container">
    <div id="overlay">
        <span id="score"></span><br/>
        <span id="time"></span><br/>
        <span id="level"></span><br/>
        <br/>
        <span id="life"></span><br/>
        <span id="positive"></span><br/>
        <span id="negative"></span><br/>
    </div>
    <div id="block">
        <div id="instructions">
            <span id="name">Transmuto</span> <br/>
            WASD to move, mouse to look/aim. <br/>
            Collect polygons dropped, use them to <i>shift_shapes™</i> (Q/E). <br/>
            Your enemies are deadly, shoot them, they are only vulnerable to their own shape. <br/>
        </div>
    </div>
</div>
<script type="text/javascript" src="game.js"></script>
</body>
</html>