-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (59 loc) · 2.94 KB
/
index.html
File metadata and controls
62 lines (59 loc) · 2.94 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
---
title: Goost
---
<div class="row panel">
<div class="col-md-8">
<h2 class="display-5 my-4"><b>Let it be in Godot.</b></h2>
<p class="lead"><a href="{{ site.org_url }}"><b>Goost</b></a> is a general-purpose,
extensible and customizable <a href="https://godotengine.org/"><b>Godot Engine</b></a>
extension. Complement and extend Godot's core features to achieve higher
performance, expose built-in functionality and overcome limitations that
are difficult to workaround via scripting languages such as GDScript.</p>
<p class="lead"><b>Goost</b> is an official place for existing and new Godot
contributors who'd like to improve the engine independently of Godot's
review process and release cycles.</p>
<h4 class="mt-4 mb-2"><b>No need to wait.</b></h4>
<a class="btn btn-success btn-lg font-weight-bold my-4 px-4 py-2" href="/download.html" role="button">Download</a>
</div>
<div class="col-md-4 d-none d-md-block">
<img class="img-fluid w-100 h-auto" src="/assets/img/logo_big.svg" alt="Goost" />
</div>
</div>
<div class="row news-panel m-md-5">
<div class="col-md-4">
<h2>Latest news</h2>
</div>
<div class="col-md">
<ul class="list-unstyled">
{% for post in site.posts limit:3 %}
<li>
<h4><a href="{{ post.url }}">{{ post.title }}</a></h4>
{{ post.excerpt }}
</li>
{% endfor %}
</ul>
</div>
</div>
<div class="row panel">
<div class="col-md-2 d-none d-md-block">
<img class="img-fluid w-100 h-auto" src="/assets/img/godot_batteries.svg" alt="Powered by community" />
</div>
<div class="col">
<h3 class="display-6 my-4">Open-source and community-driven</h2>
<p>Goost is developed by people from all around the world, and we trust
the community to fulfill the vision behind Goost in the best way possible.
It is available under the permissive <b>MIT license</b>, so you can integrate
the extension in any project without restrictions just like Godot.</p>
<p>The extension is implemented as a
<a href=https://docs.godotengine.org/en/stable/development/compiling/introduction_to_the_buildsystem.html#custom-modules>C++ module</a>.
If you'd like to customize the extension yourself by picking only the features
you need, go ahead and
<a href="https://goost.readthedocs.io/en/latest/usage/building.html">get the source to build Godot with Goost</a>.</p>
<p>For now, Goost is currently geared towards 2D and core development. If you'd like to
share your tools with Goost to be used by people in various game development
areas, we invite you to <a href="https://goost.readthedocs.io/en/latest/development/general_principles.html#scope-of-features-being-developed">contribute</a>!</p>
<a class="btn btn-dark font-weight-bold my-2 px-4 py-2" href="{{ site.repo }}" role="button">
<img src="/assets/img/contacts/github.png" width=32 /> Go to GitHub
</a>
</div>
</div>