-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformer_2d.html
68 lines (64 loc) · 2.59 KB
/
platformer_2d.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Platformer 2D</title>
<link rel="stylesheet" href="palette.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Platformer 2D</h1>
</header>
<section class="contenu">
<div class="role">
<h2>School project</h2>
<p>This project has been developed as part of my studies. There were 3 of us working on it. The aim was to create a platformer that can be controlled with xbox controllers and that is interesting for the player.</p>
<p>I mainly developed the horizontal mechanics: movement, sprinting and dash. I also created the visual and sound effects linked to these mechanics. These mechanics use an 'energy' resource, visible in real time to the player via an in-game UI bar, which I also coded.</p>
<p>Finally, I also designed the levels with the evolving texts.</p>
</div>
<div class="github">
<h2>GitHub :</h2>
<a href="https://github.com/tihine/Platformer_2D" target="_blank">Link to GitHub repository</a>
</div>
<div class="description">
</div>
</section>
<section class="galerie">
<h2>Galerie d'Images :</h2>
<div class="image-description">
<div class="image">
<img src="Pictures/tutoPlatformer.png" alt="Picture of the tutorial">
</div>
<div class="description">
<p>The tutorial, with evolving texts</p>
</div>
</div>
<div class="image-description">
<div class="image">
<img src="Pictures/Lvl1Platformer.png" alt="Picture of the Level 1">
</div>
<div class="description">
<p>The level 1, with big gap, elevator and creeper</p>
</div>
</div>
<div class="image-description">
<div class="image">
<img src="Pictures/Lvl2Platformer.png" alt="Picture of the Level 2">
</div>
<div class="description">
<p>The level 2, with crossable platforms and killer platforms</p>
</div>
</div>
<div class="image-description">
<div class="image">
<img src="Pictures/lvl3Platformer.png" alt="Picture of the Level 3">
</div>
<div class="description">
<p>The level 3, with bouncing platforms</p>
</div>
</div>
</section>
</body>
</html>