-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5864501
commit 019f8bc
Showing
238 changed files
with
3,128 additions
and
9,268 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta content="IE=Edge" http-equiv="X-UA-Compatible" /> | ||
<meta name="description" content="Flame Engine Website" /> | ||
|
||
<!-- iOS meta tags & icons --> | ||
<meta name="apple-mobile-web-app-capable" content="yes" /> | ||
<meta name="apple-mobile-web-app-status-bar-style" content="black" /> | ||
<meta name="apple-mobile-web-app-title" content="Flame Engine Website" /> | ||
<link rel="apple-touch-icon" href="assets/icons/Icon-192.png" /> | ||
|
||
<!-- Favicon --> | ||
<link rel="icon" type="image/png" href="assets/icons/favicon.png" /> | ||
|
||
<title>Flame Engine</title> | ||
<base href="/" /> | ||
<link rel="manifest" href="manifest.json" /> | ||
|
||
<meta | ||
data-react-helmet="true" | ||
name="description" | ||
content="2D game engine made on top of Flutter" | ||
/> | ||
<meta data-react-helmet="true" property="og:title" content="Flame" /> | ||
<meta | ||
data-react-helmet="true" | ||
property="og:description" | ||
content="2D game engine made on top of Flutter" | ||
/> | ||
<meta data-react-helmet="true" property="og:type" content="website" /> | ||
<meta data-react-helmet="true" name="twitter:card" content="summary" /> | ||
<meta data-react-helmet="true" name="twitter:title" content="Flame" /> | ||
<meta | ||
data-react-helmet="true" | ||
name="twitter:description" | ||
content="2D game engine made on top of Flutter" | ||
/> | ||
|
||
<link rel="stylesheet" href="/assets/css/main.css" /> | ||
|
||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Exo+2:wght@100;300;400;600;900&display=swap" | ||
rel="stylesheet" | ||
/> | ||
</head> | ||
|
||
<body class="bg-black h-screen flex flex-col"> | ||
<div class="container mx-auto flex-1 flex flex-col"> | ||
<nav class="h-16 md:h-32 flex items-center justify-between"> | ||
<div class="flex-initial items-center collapse md:visible"> | ||
<a href="/"> | ||
<img src="assets/images/cornerlogo.jpg" /> | ||
</a> | ||
</div> | ||
<div | ||
class="flex flex-wrap items-center justify-center justify-items-center text-slate-50 font-extrabold space-x-8" | ||
> | ||
<a href="https://docs.flame-engine.org/latest/">Docs</a> | ||
<a href="https://pub.dev/documentation/flame/latest/">API</a> | ||
<a href="https://examples.flame-engine.org/">Examples</a> | ||
<a href="https://github.com/flame-engine/flame">GitHub</a> | ||
<a href="https://discord.gg/pxrBmy4">Discord</a> | ||
</div> | ||
</nav> | ||
<main class="flex-1"> | ||
<div class="grid place-items-center text-white"> | ||
<p class="text-2xl font-extrabold">404</p> | ||
<a href="/"> | ||
<img src="assets/images/flame-icon.png" width="100px" /> | ||
</a> | ||
<p class="text-2xl">Oops... page not found.</p> | ||
</div> | ||
</main> | ||
</div> | ||
<footer | ||
class="w-full bg-footer-gray text-xs text-slate-50 flex-ni uppercase flex flex-col space-y-8 py-8 mt-8 items-center justify-center md:h-16 md:space-x-8 md:space-y-0 md:mt-0 md:flex-row" | ||
> | ||
<a href="https://flameengine.creator-spring.com/">Merch</a> | ||
<a href="https://github.com/flame-engine/awesome-flame">Awesome Flame</a> | ||
<a | ||
href="https://www.youtube.com/playlist?list=PL1sAA7o4TIZoAAea6FluJbqE9U6IeA7w9" | ||
>Flamecon</a | ||
> | ||
<a href="https://github.com/flame-engine/brand">Media</a> | ||
<a href="mailto:[email protected]">Contact</a> | ||
</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2022 Blue Fire | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,12 @@ | ||
# Flame engine Docs | ||
# Flame Engine Site | ||
|
||
This is the overall documentation of the Flame engine. You can find a more in depth doc regarding each element in the [API docs](https://flame-engine.org/API) | ||
This is the main landing page of the Flame Engine website; it is deployed [here](https://flame-engine.org) via GitHub Pages. | ||
|
||
## A summary | ||
|
||
Flame is a _modular_ game engine made on top of [Flutter](https://flutter.dev). | ||
|
||
It provides a complete out-of-the-way solutions for games, taking advantage of the powerful infrastructure provided by Flutter but simplifying the code you need to build your projects. | ||
|
||
It empowers you with a simple yet effective game loop implementation, and all the surrounding utilities you might need to use in a game: images, sprites, sprite sheets, animations, audio, input, components/object system, et cetera. | ||
|
||
You can _pick and choose_ whichever parts you want, as they are all somewhat independent and modular. | ||
|
||
We also support easy-to-use integrations with famous third parties and tools, like Riveapp, box2d, tiled, Google Play Games, gamepad support and more. | ||
|
||
The engine and ecosystem is being constantly improved by the community, so please feel free to reach out, open issues, PRs and make suggestions. Give us a star if you want to help give the engine exposure and grow the community. | ||
|
||
## Getting started | ||
|
||
Flame is a published as a dart package on [pub](https://pub.dev/packages/flame). | ||
|
||
To install it, put the pub package as your dependency by dropping the following in your `pubspec.yaml`: | ||
|
||
```yaml | ||
dependencies: | ||
flame: ^0.28.0 | ||
``` | ||
And start using it! | ||
This was built using [Jekyll](https://jekyllrb.com/)! Please send them some 💙 from us. | ||
|
||
## Where do things come from? | ||
|
||
We also have some special subdomains; they are deployed independently via other repos. | ||
|
||
* docs.flame-engine.com is deployed from [flame-docs-site](https://github.com/flame-engine/flame-docs-site) | ||
* examples.flame-engine.com is deployed from [flame](https://github.com/flame-engine/flame) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.