-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame-engines.html
More file actions
152 lines (148 loc) · 6.72 KB
/
Copy pathgame-engines.html
File metadata and controls
152 lines (148 loc) · 6.72 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
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Game Engines</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">Game Engines</h1>
<p class="std_desc">Your empty canvas</p>
<ul id="content_list">
<li class="fade_up">
<a href="https://godotengine.org/" target="_blank">
<img src="assets/images/Godot_icon.png"
alt="godot-logo">
</a>
<div>
<a href="https://godotengine.org/"
target="_blank"><h2>Godot Engine</h2></a>
<p>Free and open source community-driven 2D and 3D game
engine</p>
</div>
<a class="resource_button"
href="godot-example-projects.html">Example Projects</a>
</li>
<li class="divider"></li>
<li class="fade_up">
<a href="https://unity.com/" target="_blank">
<img src="assets/images/unity-icon.png"
alt="unity-logo">
</a>
<div>
<a href="https://unity.com/" target="_blank"><h2>Unity
Engine</h2></a>
<p>Real-Time 3D and 2D game development platform</p>
</div>
<a class="resource_button"
href="unity-example-projects.html">Example Projects</a>
</li>
<li class="divider"></li>
<li class="fade_up">
<a href="https://www.unrealengine.com/" target="_blank">
<img src="assets/images/unreal-logo.png"
alt="unreal-logo">
</a>
<div>
<a href="https://www.unrealengine.com/"
target="_blank"><h2>Unreal Engine</h2></a>
<p>3D and 2D game engine built on high fidelity
graphics</p>
</div>
<a class="resource_button"
href="unreal-example-projects.html">Example Projects</a>
</li>
<li class="divider"></li>
<li class="fade_up">
<a href="https://gamemaker.io/" target="_blank">
<img src="assets/images/gamemaker-logo.svg"
alt="gamemaker-logo" style="filter: invert();">
</a>
<div>
<a href="https://gamemaker.io/"
target="_blank"><h2>GameMaker</h2></a>
<p>2D game engine that strives on ease of use</p>
</div>
<a class="resource_button" href="gamemaker-example-projects.html">Example
Projects</a>
</li>
<li class="divider"></li>
<li class="fade_up">
<a href="https://www.construct.net/" target="_blank">
<img src="assets/images/construct-3-logo.png"
alt="construct-logo">
</a>
<div>
<a href="https://www.construct.net/"
target="_blank"><h2>Construct 3</h2></a>
<p>A 2D game engine that can run in your browser</p>
</div>
<a class="resource_button" href="construct-3-example-projects.html">Example
Projects</a>
</li>
<li class="divider"></li>
<li class="fade_up">
<a href="https://bevyengine.org/" target="_blank">
<img src="assets/images/bevy-logo.svg" alt="bevy-logo">
</a>
<div>
<a href="https://bevyengine.org/"
target="_blank"><h2>Bevy</h2></a>
<p>A free and open source 2D and 3D game framework built
in Rust</p>
</div>
<a class="resource_button" href="bevy-example-projects.html">Example
Projects</a>
</li>
<li class="divider"></li>
<li class="fade_up">
<a href="https://www.raylib.com/" target="_blank">
<img src="assets/images/Raylib_logo.png"
alt="raylib-logo">
</a>
<div>
<a href="https://www.raylib.com/"
target="_blank"><h2>Raylib</h2></a>
<p>A free and open source C library for 2D games</p>
</div>
<a class="resource_button" href="raylib-example-projects.html">Example
Projects</a>
</li>
<li class="divider"></li>
<li class="fade_up">
<a href="https://love2d.org/" target="_blank">
<img src="assets/images/love2d-logo.png"
alt="love2d-logo">
</a>
<div>
<a href="https://love2d.org/"
target="_blank"><h2>LÖVE</h2></a>
<p>A free and open source 2D game framework for making
games in Lua</p>
</div>
<a class="resource_button" href="love-example-projects.html">Example
Projects</a>
</li>
</ul>
</main>
</body>
</html>