-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (30 loc) · 929 Bytes
/
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
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Game in Progress - Box2d & EaselJS Tuto 1</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div id="divCanvas">
<canvas width="800" height="600" id="gipCanvas"></canvas>
<canvas width="800" height="600" id="box2dCanvas"></canvas>
</div>
<div id="divBtnDebug">
<button id="btnB2d">Afficher / Masquer Debug Box2d</button>
</div>
<!-- Import JS -->
<script src="libs/Box2dWeb-2.1.a.3.min.js"></script>
<script src="libs/easeljs-0.7.1.min.js"></script>
<script src="libs/jquery-1.9.0.min.js"></script>
<!-- Classe utilitaire box2dWeb -->
<script src="js/box2dutils.js"></script>
<!-- Classe utilitaire easeljs -->
<script src="js/easelJsUtils.js"></script>
<!-- Eléments physiques -->
<script src="js/pig.js"></script>
<script src="js/shortTree.js"></script>
<!-- Moteur du jeu -->
<script src="js/gip.js"></script>
</body>
</html>