-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (99 loc) · 5.54 KB
/
Copy pathindex.html
File metadata and controls
106 lines (99 loc) · 5.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="ABC-Engine is a simple game engine written in Rust. It is designed to be easy to use and understand, making it perfect for beginners and experienced developers alike.">
<title>ABC-Engine: A Simple Game Engine in Rust</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
'accent': '#4CAF50',
'gradient-start': '#2c3e50',
'gradient-end': '#1e1e1e',
},
},
},
}
</script>
</head>
<body class="font-sans text-white bg-gradient-to-br from-gradient-start to-gradient-end min-h-screen">
<header class="bg-opacity-80 bg-gray-900 sticky top-0 z-50 backdrop-filter backdrop-blur-sm">
<nav class="container mx-auto px-4 py-4 flex justify-between items-center">
<div class="flex items-center space-x-2">
<img src="Temp Flat Logo.png" alt="ABC-Engine Logo" class="max-h-12 scale-600 origin-left-top pr-3">
</div>
<ul class="flex space-x-6 text-base max-sm:text-sm md:text-base lg:text-lg xl:text-xl 2xl:text-2xl">
<li><a href="#features" class="font-bold hover:text-accent transition-colors">Features</a></li>
<li><a href="https://discord.gg/55R3GsBSYC"
class="font-bold hover:text-accent transition-colors">Community</a></li>
<li><a href="https://github.com/ABC-Engine/ABC-Game-Engine/tree/main/examples"
class="font-bold hover:text-accent transition-colors">Examples</a></li>
<li><a href="https://github.com/ABC-Engine/ABC-Game-Engine" target="_blank"
class="font-bold hover:text-accent transition-colors">GitHub</a></li>
</ul>
</nav>
</header>
<main class="container mx-auto px-4">
<section class="text-center py-16 bg-gradient-to-r from-gray-800 to-gray-900 bg-opacity-80 rounded-lg my-8">
<h1 class="text-4xl mb-4 font-bold">ABC-Engine</h1>
<h2 class="text-4xl mb-4">An Engine as Easy as Your ABC's!</h2>
<p class="mb-4">Free and Open Source!</p>
<a href="https://github.com/ABC-Engine/ABC-Game-Engine"
class="inline-block bg-gradient-to-r from-accent to-green-500 text-white py-3 px-6 rounded font-bold transition-all hover:-translate-y-1 hover:shadow-lg">Get
Started</a>
</section>
<section id="features">
<div class="flex justify-between items-center mb-16 bg-gray-800 bg-opacity-60 rounded-lg p-8 shadow-md">
<div class="flex-1 pr-8">
<h3 class="text-2xl mb-4">Data Driven</h3>
<p class="mb-4">Built upon ABC-ECS</p>
<ul class="list-disc pl-5">
<li><strong>Fast:</strong> Optimized for performance and ease of use with parallel capabilities
</li>
<li><strong>Easy:</strong> Components can be any rust struct no derive needed</li>
<li><strong>Capable:</strong> Supports a wide range of game development tasks with its flexible
and powerful ECS framework.</li>
</ul>
</div>
<div class="flex-1 text-center">
<img src="ecs code.png" alt="ECS Visualization" class="scale-40 relative">
</div>
</div>
<div class="flex justify-between items-center mb-16 bg-gray-800 bg-opacity-60 rounded-lg p-8 shadow-md">
<div class="flex-1 text-center">
<img src="lumenpyx_frame.png" alt="2D Renderer Example" class="scale-40 rounded">
</div>
<div class="flex-1 pl-8">
<h3 class="text-2xl mb-4">2D Renderer</h3>
<p class="mb-4">Create text-based or pixel art games with ease</p>
<ul class="list-disc pl-5">
<li><strong>Console Renderer:</strong> For text-based games</li>
<li><strong>Pixel Art Renderer:</strong> Using Lumenpyx for beautiful 2D graphics</li>
<li><strong>Flexible:</strong> Choose the renderer that fits your project or even make your own!
</li>
</ul>
</div>
</div>
<div class="flex justify-between items-center mb-16 bg-gray-800 bg-opacity-60 rounded-lg p-8 shadow-md">
<div class="flex-1 pr-8">
<h3 class="text-2xl mb-4">Physics Integration</h3>
<p class="mb-4">Realistic simulations powered by Rapier</p>
<ul class="list-disc pl-5">
<li><strong>Collision Detection:</strong> Accurate and efficient</li>
<li><strong>Customizable:</strong> Tailor the physics to your game's needs</li>
<li><strong>Learning Tool:</strong> Great for understanding game physics</li>
</ul>
</div>
<div class="flex-1 text-center">
<img src="rapier logo.svg" alt="Physics Engine Visualization">
</div>
</div>
</section>
</main>
</body>
</html>