-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvrsimon.html
More file actions
100 lines (89 loc) · 3.48 KB
/
Copy pathvrsimon.html
File metadata and controls
100 lines (89 loc) · 3.48 KB
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
<!DOCTYPE HTML>
<!--
Stellar by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>VR Simon Says</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="stylesheet" type="text/css" href="prism.css">
<script src="prism.js"></script>
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<nav class="new-nav">
<ul>
<li><a href="index.html#intro" class="active">About Me</a></li>
<li><a href="index.html#first">Work Experience</a></li>
<li><a href="index.html#second">Projects</a></li>
<li><a href="#footer">Contact Information</a></li>
</ul>
</nav>
<!-- Main -->
<div class="project-page-background">
<!-- Content -->
<section class="main">
<h1 class="project-page-title">VR Simon Says - Unreal Engine 4/Blueprints</h1>
<h2 class="project-page-subtitle">Gameplay</h2>
<iframe class="image vid"
src="https://www.youtube.com/embed/hUtETapZr5A">
</iframe>
<h2 class="project-page-subtitle">Overview</h2>
<ul class="project-page-subtitle">
<li>Developed and designed a crowd simulation using Niagra and animations</li>
<li>Implemented gameplay functionality such as interacting with buttons, advancing in rounds, winning state, and
losing state using Blueprints</li>
</ul>
<h2 class="project-page-subtitle">Code Snippets</h2>
<button class="collapsible">Color Sequence Control</button>
<!-- Code Snippet -->
<div class="content" style="display: none;">
<img src="blue1.PNG" class="image fit">
</div>
<button class="collapsible">Flashing Colors</button>
<!-- Code Snippet -->
<div class="content" style="display: none;">
<img src="blue2.PNG" class="image fit">
</div>
<button class="collapsible">AI Behavior Tree</button>
<!-- Code Snippet -->
<div class="content" style="display: none;">
<img src="blue3.PNG" class="image fit">
</div>
</section>
</div>
<!-- Footer -->
<footer id="footer">
<section>
<h2>Contact information</h2>
<dl class="alt">
<dt>Linkedin</dt>
<a href="https://www.linkedin.com/in/dani-amir/"><dd>https://www.linkedin.com/in/dani-amir/</dd></a>
<dt>Email</dt>
<dd><a href="#">daniamir2001@yahoo.com</a></dd>
</dl>
<ul class="icons">
<li><a href="https://github.com/Htmlpro19/" class="icon brands fa-github alt"><span class="label">GitHub</span></a></li>
<li><a href="https://www.linkedin.com/in/dani-amir/" class="icon brands fa-linkedin alt"><span class="label">Linkedin</span></a></li>
</ul>
</section>
<p class="copyright">© Dani Amir. Design: <a href="https://html5up.net">HTML5 UP</a>.</p>
</footer>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>