-
Notifications
You must be signed in to change notification settings - Fork 0
/
gravity-details.html
135 lines (111 loc) · 5.6 KB
/
gravity-details.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Gravity Details</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/icon.png" rel="icon">
<link href="assets/img/icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<main id="main">
<!-- ======= Portfolio Details ======= -->
<div
id="portfolio-details"
class="portfolio-details"
>
<div class="container">
<div class="row mb-xl-4 mb-5">
<h2 class="portfolio-title">Gravity</h2> <!--title-->
<!--carousel-->
<div class="col-xl-8 col-md-12">
<div class="portfolio-details-slider swiper">
<div class="swiper-wrapper align-items-center">
<div class="swiper-slide">
<img class="img-fluid" src="assets/img/portfolio/gravity/gravity-0.png" alt="" >
</div>
<div class="swiper-slide">
<img class="img-fluid" src="assets/img/portfolio/gravity/gravity-2.png" alt="" >
</div>
<div class="swiper-slide">
<img class="img-fluid" src="assets/img/portfolio/gravity/gravity-3.png" alt="" >
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</div> <!--end caruosel-->
<!--Overview-->
<div class="col-xl-4 col-12 portfolio-info ">
<h3 class="card-title fw-bold">Project Overview</h3>
<p class="mb-2 portfolio-details-overview">
Gravity is a 2D puzzle-platform game where the player can use the jetpack, laser
gun, and black holes to overcome obstacles and reach the portals at the end of the
levels to advance through all six.
The game is not quite fully complete nor is it bug-free as prioritizing tasks to complete (triaging) in a strictly time-constrained environment was part of the project specification as we were only given two weeks to submit a final deliverable.
</p>
<p><span><strong>Date: </strong></span>Fall 2021</p>
<div class="portfolio-details-links"> <!--action buttons-->
<a href="https://github.com/tmachnacki/gravity" target="_blank" title="Code Repository"><i class="bx bx-code-alt"></i></a>
<a href="https://drive.google.com/file/d/1kAVrHBgjcPC_ekyMBNpipVg1P1GEZGfF/view?usp=sharing" target="_blank" title="Download"><i class="bx bxs-download"></i></a>
<a href="./assets/project/Gravity/gravity_postmortem.pdf" target="_blank" title="Postmortem Writeup"><i class='bx bxs-file'></i></a>
</div>
</div><!--overview col-->
</div> <!--end top row-->
<!--information-->
<div class="row">
<div class="col-xl-8 col-12 portfolio-info portfolio-details-section">
<h4>Project Role</h4>
<p>
As this was a solo development project, I was responsible for the implementation of all aspects of the game from sprites, to mechanics, to music and effects.
</p>
</div>
<div class="col-12 portfolio-info portfolio-details-section">
<h4>Relevant Technology</h4>
<ul class="details-tech">
<li>C#</li>
<li>Unity Engine</li>
</ul>
</div>
<div class="col-12 portfolio-info portfolio-details-section">
<h4>Relevant Skills</h4>
<ul class="details-skills">
<li>Game development</li>
<li>Solo development</li>
<li>JIRA project management</li>
<li>Project life cycle management:
<ul class="sublist">
<li>Sprints</li>
<li>Burndowns</li>
<li>Triaging</li>
<li>Milestones</li>
<li>Beta, alpha, gold deliverables</li>
</ul>
</li>
</ul>
</div>
</div> <!--end bottom row information-->
</div> <!--end container-->
</div><!-- End Portfolio Details -->
</main><!-- End #main -->
<script src="assets/vendor/purecounter/purecounter.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<script src="assets/vendor/waypoints/noframework.waypoints.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>