-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
5 changed files
with
69 additions
and
103 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
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
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,16 @@ | ||
--- | ||
title: Getting Started | ||
description: Downloading and Installing FlowPilot | ||
--- | ||
|
||
import { Steps, Aside } from '@astrojs/starlight/components'; | ||
|
||
## Installing FlowPilot Plugin | ||
|
||
<Aside type="note"> | ||
This release is targeted at Unreal Engine 5.2 and above | ||
</Aside> | ||
|
||
### Downloading FlowPilot fom Unreal Engine Marketplace | ||
|
||
The easiest and best method to install FlowPilot is thought Unreal Engine Marketplace. |
This file was deleted.
Oops, something went wrong.
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,48 +1,60 @@ | ||
--- | ||
title: "FlowPilot: Streamline Your Unreal Engine Gameplay Creation" | ||
description: 'Powerful, efficient, and intuitive gameplay design for Unreal Engine developers.' | ||
template: splash | ||
hero: | ||
tagline: 'Powerful, efficient, and intuitive gameplay design for Unreal Engine developers.' | ||
image: | ||
file: ../../assets/fp_icon.jpg | ||
actions: | ||
- text: π Start Here | ||
link: /about/intro/ | ||
icon: open-book | ||
variant: primary | ||
- text: π Open the Reference Doc | ||
link: /reference/flowpilotcomponent/ | ||
icon: external | ||
variant: primary | ||
|
||
banner: | ||
content: | | ||
FlowPilot is available now! | ||
πͺ <a href="https://spotlesslink.com/4lyb6">Get FlowPilot Now</a> π | ||
--- | ||
|
||
import { LinkCard, Card, CardGrid } from '@astrojs/starlight/components'; | ||
|
||
<CardGrid> | ||
<LinkCard title="π Get FlowPilot Now π" icon="rocket" href="https://spotlesslink.com/4lyb6" /> | ||
<LinkCard title="π¨οΈ Discord Support" href="https://discord.gg/sF9KjZ9qqj" /> | ||
</CardGrid> | ||
|
||
## Featured Pages | ||
<CardGrid> | ||
<Card title="About FlowPilot" icon="rocket"> | ||
Learn more about FlowPilot in the | ||
[Intro Page](about/intro/) | ||
</Card> | ||
<Card title="Introduction to FlowPilot" icon="add-document"> | ||
Follow the Introduction to FlowPilot guide to get a grasp on the basic concepts. | ||
[Read Now](/guides/introductiontoflowpilot/) | ||
</Card> | ||
<Card title="Intuitive Design Tools" icon="setting"> | ||
Custom FlowPilot Editor, Visual Flow Creation, Blueprint & C++ Support | ||
</Card> | ||
<Card title="Modular Architecture" icon="setting"> | ||
Reusablility, Data-Driven Approach, Seamless Integration | ||
</Card> | ||
</CardGrid> | ||
import { Image } from 'astro:assets'; | ||
import logo from '../../assets/fp_icon.jpg'; | ||
|
||
**Unreal Engine plugin that puts powerful gameplay creation tools in the hands of game developers** | ||
|
||
πͺ [Get FlowPilot Now!](https://spotlesslink.com/4lyb6) | ||
| π [Issues/Feature Requests](https://github.com/Mikea15/UEFlowPilot/issues) | ||
| π¨οΈ [Discord](https://discord.gg/sF9KjZ9qqj) | ||
| π© [Email](mailto:[email protected]) | ||
| π¦ [Twitter/X](http://www.x.com/michaeladaixo) | ||
|
||
<div class="mx-auto size-48 rounded-lg shadow-md shadow-black/50 m-1 overflow-hidden"> | ||
<img src={logo.src} alt="" /></div> | ||
|
||
## About FlowPilot | ||
|
||
FlowPilot is a powerful Unreal Engine plugin that empowers game designers to streamline gameplay creation. | ||
It provides an intuitive, visual task-based editor for crafting gameplay sequences and game logic. | ||
By enabling rapid prototyping and efficient iteration without extensive coding, FlowPilot enhances team collaboration and accelerates the overall development process. | ||
|
||
## 𧩠Key Benefits | ||
|
||
- **Data Driven Development:** Allow your team to work on different assets to improve collaboration | ||
- **Rapid Prototyping:** Create and iterate on gameplay sequences visually. | ||
- **Intuitive Interface:** Design complex interactions using a user friendly custom task editor | ||
- **Time Saving:** Reuse flow pilot tasks across your levels and interactive objects with a modular Architecture | ||
- **Scalable for All Projects sizes**: Suitable for solo, indie or large teams. | ||
- **Accessible Learning Curve**: Intuitive for beginners, powerful for experts. | ||
|
||
## π οΈ Core Features | ||
|
||
- **Custom FlowPilot Editor** to quickly setup game logic | ||
- **Extensible task system** with a pre-built library of ready to go Tasks | ||
- **GameplayTags integration** for easy actor management | ||
- **Blueprint and C++ support** to create new FlowPilot Tasks | ||
- **Performance aware** with built-in profiler traces to monitor and keep your game running smoothly across different platforms | ||
- **Efficient Prefetching System** for optimized actor access | ||
- **Automatic Lifetime Control** to automatically despawn actors (or not) when FlowPilot execution ends | ||
|
||
## π¦ What's Included | ||
|
||
- **Content Map:** Check each individual FlowPilotTasks to know how they work | ||
- **Game Map Template:** Check how you can integrate in a full level, with streaming levels, spawn, despawn, logic gating, simple character setup, progression, ui notifications, etc. | ||
- **TagActorComponent:** Simple Component to Tag actors, so that they are easy to reference in your FlowPilot assets | ||
- **Example Component:** Component with barebones Health and Inventory Logic to support Game Map Template | ||
|
||
## π Getting Started | ||
1. Download and install [FlowPilot from the Unreal Engine Marketplace](https://spotlesslink.com/4lyb6) | ||
2. Open the Content Example Map and play around with FlowPilot Data assets | ||
3. Read the [friendly manual](http://www.flowpilot.dev) |