-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunreal-example-projects.html
More file actions
79 lines (71 loc) · 3.2 KB
/
Copy pathunreal-example-projects.html
File metadata and controls
79 lines (71 loc) · 3.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Unreal Engine Examples</title>
<meta name="description" content>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
</head>
<body>
<header>
<a href="index.html">
<p>GDR</p>
</a>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="contributing.html">Contribute</a></li>
</ul>
</header>
<main>
<h1 class="std_header">Unreal Engine Examples</h1>
<p class="std_desc">UE projects to poke around in</p>
<ul id="demo_list">
<li class="fade_up">
<video autoplay muted loop>
<source src="assets/videos/unreal-sample-projects.mp4"
type="video/mp4">
</video>
<div>
<div>
<p>Sample Game Projects</p>
<p style="font-size: 1rem;">Official Unreal Engine
example projects</p>
</div>
<a class="resource_button"
href="https://dev.epicgames.com/documentation/en-us/unreal-engine/sample-game-projects-for-unreal-engine"
target="_blank">Website</a>
</div>
</li>
<li class="fade_up">
<img src="assets/images/unreal_c++_example.jpeg">
<div>
<div>
<p>Action Roguelike Game</p>
<p style="font-size: 1rem;">Open source C++ Unreal
Engine project from this <a
href="https://courses.tomlooman.com/p/unrealengine-cpp?coupon_code=COMMUNITY15&src=github"
target="_blank"
style="font-weight: 900;">Professional Game
Development in C++ and Unreal Engine</a>
course</p>
</div>
<a class="resource_button"
href="https://github.com/tomlooman/ActionRoguelike.git"
target="_blank">GitHub</a>
</div>
</li>
</ul>
<div id="contribution_sub">
<p>Want to contribute? Head over to the <a href="https://github.com/JAMES-535/game-dev-resource.git" target="_blank">GitHub Repository.</a></p>
</div>
</main>
</body>
</html>