-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (70 loc) · 2.68 KB
/
index.html
File metadata and controls
79 lines (70 loc) · 2.68 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>
<title>Home - 3DRadSpace</title>
<link rel="icon" type="image/png" href="3dradspace_logo.png">
<link rel="stylesheet" href="stylesheet.css">
</head>
<body>
<div class="header">
<div class="header-left">
<a class="header-left-link" href="index.html">
<img src="3dradspace_logo.png" alt="Logo" class="header-logo">
<span class="header-title">3DRadSpace</span>
</a>
</div>
<div style="align-self: center;">
<nav>
<a class="nav-link" href="index.html">Home</a>
<a class="nav-link" href="download.html">Download</a>
<a class="nav-link" href="index.html">Documentation</a>
<a class="nav-link" href="about.html">About</a>
</nav>
</div>
</div>
<div class="content">
<h1>Home</h1>
<p>
Hello there,
</p>
<p>
You are looking right now at the main page of my most important personal
project I'm working on. 3DRadSpace is a remake of an older game engine
called 3D Rad which was a really big part of my entire game
developing experience, since it introduced me to game developing.
</p>
<p>
I was initially about 10 years old when I first used 3D Rad and made a simple
car game. Now after many years, with decent programming skills, I'm
creating this project in hope to inspire other people to start
creating their own pieces of art.
</p>
<p>
The goal of 3DRadSpace is to be a better and more modern engine than the original one.
It already is as of writing this page (June 9, 2020), since C# is already supported, scripting is
extremely more versatile and limitless than AngelScript. 3DRadSpace is
also already faster than the original 3D Rad. The original engine took
about 20 seconds to load a simple project containing a few SkinMesh
objects, some scripts and some timers. 3DRadSpace is build
using Monogame, so check that framework out, really good stuff.
</p>
<p>
At this moment, it's just me, a lone developer trying to accomplish their dreams related to computer
science and programming.
</p>
<p>
Anyway, you probably came here to download my engine and give it a go.
So check it out. Please note that bugs exists as this is in alpha stage.
</p>
<div>
<a class="button" href="download.php" style="margin: 0.5rem 0;">Download</a>
</div>
<hr style="margin-top: 2rem;">
<p>
I'd like to thank the people from <a href="https://classdev.net/">classdev.net</a>
and <a href="/https://3drad.boards.net/">3drad.boards.net</a> for encouraging me to keep working on this
project.
</p>
</div>
</body>
</html>