-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
123 lines (115 loc) · 4.42 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-D2G3S99SDC"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-D2G3S99SDC');
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/viewer.min.css" rel="stylesheet"/>
<script src="js/viewer.min.js"></script>
<link href="css/supernova.css" rel="stylesheet"/>
<link href="css/fontello.css" rel="stylesheet"/>
<link rel="shortcut icon" href="img/favicon.png"/>
<title>Supernova</title>
</head>
<body>
<div class="cabecalho">
<div class="wrapper">
<img class="cabecalho-logo" src="img/logo.png"/>
<div class="cabecalho-links">
<ul>
<li>
<a href="http://docs.supernovaengine.org">
<span class="cabecalho-link-imagem icon-book"></span>
<span class="cabecalho-link-texto">Documentation</span>
</a>
</li>
<li>
<a href="http://samples.supernovaengine.org">
<span class="cabecalho-link-imagem icon-doc-text"></span>
<span class="cabecalho-link-texto">Samples</span>
</a>
</li>
<li>
<a href="https://github.com/supernovaengine/supernova">
<span class="cabecalho-link-imagem icon-github"></span>
<span class="cabecalho-link-texto">Source</span>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="corpo">
<div class="wrapper">
<div class="texto">
<p class="corpo-frase1">Game engine open source and cross-platform for 2D and 3D projects.</p>
<p><b>It`s free!</b> You can use Supernova in your commercial projects.</p>
<b>Lua and C++</b> can be used to make wonderful graphics and games.
Write the code once and use it in <b>Android, iOS, HTML5, Windows, Linux and MacOS</b>. It runs native in each platform with OpenGL, Metal or DirectX.</p>
</div>
<div class="lista-2-colunas">
<ul>
<li>
<h3 class="icon-keyboard">Simple and Fast</h3>
<p>Take a control of your game code. Supernova doesn't have unnecessary stuffs.</p>
</li>
<li>
<h3 class="icon-cog-alt">Entity component system</h3>
<p>Designed in modern architecture using pattern of "entities" with "components" of data.</p>
</li>
<li>
<h3 class="icon-doc-text">Lua or C++</h3>
<p>You choose the best language is good for you. Lua and C++ can be used to make wonderful graphics and games.</p>
</li>
<li>
<h3 class="icon-gauge">Data oriented design</h3>
<p>Get rid all performance issues of Object Oriented Programming, arranging data to take improve of CPU caching.</p>
</li>
<li>
<h3 class="icon-picture">PBR shaders</h3>
<p>Very realistic shaders to make state-of-the-art graphics.</p>
</li>
<li>
<h3 class="icon-mobile">Cross-platform</h3>
<p>Write the code once and use it in Android, iOS, HTML5, Windows, Linux and MacOS. It runs native in each platform with OpenGL, Metal or DirectX.</p>
</li>
</ul>
</div>
<div class="galeria">
<ul>
<li>
<div class="galeria-imagem"><img data-original="img/screen1.png" src="img/thumb_screen1.png" alt="Screen 1" /></div>
</li>
<li>
<div class="galeria-imagem"><img data-original="img/screen2.png" src="img/thumb_screen2.png" alt="Screen 2" /></div>
</li>
<li>
<div class="galeria-imagem"><img data-original="img/screen3.png" src="img/thumb_screen3.png" alt="Screen 3" /></div>
</li>
</ul>
</div>
</div>
</div>
<script>
var image = document.querySelector('.galeria');
var options = {url: 'data-original', navbar: false, toolbar: false};
var viewer = new Viewer(image, options);
</script>
<div class="rodape">
<p>Copyright © 2024, Supernova Engine</p>
<p>
This is an open source project<br/>
Source code is licensed by <a href="https://mit-license.org/">MIT License</a><br/>
Images, logos, text and website are licensed by <a href="https://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a><br/>
</p>
</div>
</body>
</html>