This repository has been archived by the owner on Oct 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
161 lines (151 loc) · 7.43 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
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
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<head>
<title>UPBGE | The best integrated Game Engine in Blender</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- UIkit CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-rc.6/css/uikit.min.css">
<!-- Font Loading -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Noto+Sans|Open+Sans">
<!-- Custom CSS -->
<link href="css/style.css" rel="stylesheet">
<!-- Lets make sure our anchors will consistently work when coming from a different page -->
<SCRIPT LANGUAGE=JavaScript>
function now() {
window.location.reload(true);
}
</SCRIPT>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="icon" href="favicon.ico" type="image/x-icon"/>
</head>
<body class="uk-flex uk-flex-column ro-text-content" uk-height-viewport>
<!-- Disappearing Header -->
<div class="uk-section uk-section-secondary uk-padding-remove" style="z-index: -1;" uk-sticky="bottom: #offset">
<div class="uk-cover-container uk-height-large uk-text-center">
<img src="img/splash.webp" alt="Cover Image" uk-cover>
</div>
</div>
<!-- Navigation -->
<div class="uk-section uk-padding-remove">
<!-- large screen nav -->
<div class="uk-visible@l" uk-sticky="sel-target: .uk-navbar-container; cls-active: uk-navbar-sticky; bottom: #transparent-sticky-navbar">
<div class="uk-background-secondary uk-light">
<nav class="uk-navbar-container uk-navbar-transparent" uk-navbar>
<div class="uk-navbar-center">
<ul class="uk-navbar-nav uk-text-capitalize">
<li><a href="/">Home</a></li>
<li><a href="documentation.html">Documentation</a></li>
<li><a href="community.html">Community</a></li>
<li><a href="download.html">Download</a></li>
</ul>
</div>
</nav>
</div>
</div>
<!-- mobile nav-->
<div class="uk-background-secondary uk-light uk-hidden@l uk-position-fixed uk-position-bottom-left uk-width-1-1" style="z-index: 980; border:0;" uk-sticky-fixed>
<button class="uk-button uk-button-default uk-width-1-1" style="border:0;" type="button" uk-toggle="target: #offcanvas-slide">
<span uk-icon="icon: menu"></span> MENU</button>
</div>
<div id="offcanvas-slide" uk-offcanvas="bg-close: true">
<div class="uk-offcanvas-bar">
<button class="uk-offcanvas-close" type="button" uk-close></button>
<ul class="uk-nav uk-nav-default">
<li><a href="/">Home</a></li>
<li><a href="documentation.html">Documentation</a></li>
<li><a href="community.html">Community</a></li>
<li><a href="download.html">Download</a></li>
</ul>
</div>
</div>
</div>
<!-- Main Content -->
<div id="workflow" class="uk-section uk-section-secondary uk-section-medium">
<div class="uk-container uk-container-large">
<div class="uk-child-width-expand@l uk-text-center uk-text-left@l uk-grid-medium" uk-grid>
<div class="uk-flex-last uk-flex-first@l">
<img src="img/pic_1.webp">
</div>
<div class="uk-flex-first uk-flex-last@l">
<h2 class="uk-heading-divider ro-text-header">A game-engine fully integrated in Blender</h2>
<p>UPBGE is an open-source, 3D game engine forked from the old Blender Game Engine and deployed with Blender itself. This unified workflow is its main strength, as you can make your game from start to finish without leaving Blender.</p>
<p>This way you will be able to increase your productivity incredibly. You will be a one man army!!!</p>
</div>
</div>
</div>
</div>
<div id="basic" class="uk-section uk-section-secondary uk-section-medium">
<div class="uk-container uk-container-large">
<div class="uk-child-width-expand@l uk-text-center uk-text-left@l uk-grid-medium" uk-grid>
<div>
<h2 class="uk-heading-divider ro-text-header">Basic Features</h2>
<ul class="uk-list">
<li>• Very fast workflow with the convenience of Blender internal & Cycles nodes</li>
<li>• Realtime advanced physics powered by Bullet, including rigid bodies, soft bodies, obstacle simulation and path finding</li>
<li>• Fully integrated audio engine, powered by OpenAL and SDL, supporting 3D sound and sound effects</li>
<li>• Easy and straightforward visual logic system</li>
</ul>
</div>
<div>
<img src="img/pic_2.webp">
</div>
</div>
</div>
</div>
<div id="advanced" class="uk-section uk-section-secondary uk-section-medium">
<div class="uk-container uk-container-large">
<div class="uk-child-width-expand@l uk-text-center uk-text-left@l uk-grid-medium" uk-grid>
<div class="uk-flex-last uk-flex-first@l">
<img src="img/pic_3.webp">
</div>
<div class="uk-flex-first uk-flex-last@l">
<h2 class="uk-heading-divider ro-text-header">Advanced Features</h2>
<ul class="uk-list">
<li>• PBR materials</li>
<li>• Powerful Python language bindings and components, allowing more support for libraries through the use of PyPI</li>
<li>• Render attachments</li>
<li>• Fake or real-time reflections settings directly through the interface</li>
<li>• HDR pipeline</li>
</ul>
</div>
</div>
</div>
</div>
<div id="deployment" class="uk-section uk-section-secondary uk-section-medium">
<div class="uk-container uk-container-large">
<div class="uk-child-width-expand@l uk-text-center uk-text-left@l uk-grid-medium" uk-grid>
<div>
<h2 class="uk-heading-divider ro-text-header">Deployment Platforms</h2>
<p>You can export your scenes to desktop (Windows, Linux and Mac), although an experimental Android version is on its way, and because it uses Blender's data format, it will be compatible with Blender. The files can be encrypted using the BPPlayer application to secure the game-deployment.</p>
</div>
<div>
<img src="img/pic_4.webp">
</div>
</div>
</div>
</div>
<!-- Footer Content -->
<div class="uk-section uk-section-default ro-background-darksecondary uk-light uk-section-small ro-footer">
<div class="uk-container uk-container-small uk-text-center uk-text-muted">
<div class="uk-child-width-expand uk-text-center uk-grid-small" uk-grid>
<div class="uk-text-left">
Contribute
<br><a style="color: #666" href="https://www.github.com/UPBGE/upbge">Github</a>
</div>
<div class="uk-text-center">
Related
<br><a style="color: #666" href="https://www.blender.org">Blender</a>
</div>
<div class="uk-text-right">
Social
<br><a style="color: #666" href="community.html">Community</a>
</div>
</div>
</div>
</div>
<!-- UIkit JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-rc.6/js/uikit.min.js" integrity="sha256-2O4R+j0Pq+XLeUlXkPznJ0HrSkHA9keocNhV+csu6Zo=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-rc.6/js/uikit-icons.min.js" integrity="sha256-w38UjohynFpNOMjhZJ/oUIo/Md7D4tpQQJri5qDDTlE=" crossorigin="anonymous"></script>
</body>
</html>