-
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
11 changed files
with
152 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
import type { Props } from '@astrojs/starlight/props'; | ||
import Default from '@astrojs/starlight/components/Footer.astro'; | ||
const isHomepage = Astro.props.slug === ''; | ||
--- | ||
|
||
{ | ||
isHomepage ? ( | ||
<footer>Built with Starlight 🌟</footer> | ||
) : ( | ||
<Default {...Astro.props}> | ||
<slot /> | ||
</Default> | ||
) | ||
} | ||
|
||
<!-- 100% privacy-first analytics --> | ||
<script async defer src="https://scripts.simpleanalyticscdn.com/latest.js"></script> | ||
<noscript><img src="https://queue.simpleanalyticscdn.com/noscript.gif" alt="" referrerpolicy="no-referrer-when-downgrade" /></noscript> |
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,66 @@ | ||
--- | ||
title: Changelog | ||
description: Record of all FLowPilot changes per version update. | ||
--- | ||
|
||
### 0.8 | ||
|
||
- Improve Error Logging | ||
- Adds Example content to plugin | ||
- Adds Customization and improves Debug View. | ||
- Adds FlowPilotEditor | ||
- Adds Base functionality to FlowPilotEditor | ||
- Renames UFPTaskNode to UFlowPilotTask | ||
|
||
### 0.6 - 17/02/2024 | ||
|
||
- Add support for 5.2 | ||
- Set plugin to runtime so we can use FlowPilotComponent in Blueprints | ||
- Adds FlowPilotEditor | ||
- Minor bug fixes | ||
|
||
### 0.5 - 08/02/2024 | ||
|
||
- Removes Component from Cache | ||
- Fix Data asset sharing with instancing of assets | ||
- Sanitization pass across API calls | ||
- Adds Stats Trackers at various points | ||
|
||
### 0.4.1 - 24/01/2024 | ||
|
||
- Updates validation pattern | ||
- Adds support for Unreal Engine 5.1 | ||
|
||
### 0.4 - 23/01/2024 | ||
|
||
- Added ways to Pause and Unpause FlowPilot | ||
- Added parameters to settings to configure Debug Rendering | ||
- Added proper Reset and Aborts to any Node that has Child Nodes, so they are properly propagated | ||
- Fix Parallel node wrong execution end | ||
- Fix debug rendering. Removed some options that we don't need for now and can be added later. | ||
- Simplified flow. Removed Instant nodes, they were not being used. | ||
- Added internal node state to better progress tracking | ||
- Added a way to find multiple actors from 1 external tag, so we can use group references | ||
- Added option to prefetch actors on Setup in Settings. | ||
- Inverted ChangeLog timestamps | ||
|
||
### 0.3.2 - 31/12/2023 | ||
|
||
- Implement Actor Reference Tag Prefetch. | ||
- Prevent swapping FlowPilot Actor asset when Flow is already running | ||
- Allows returning Groups of Actors from an FlowActorReference via Tags. Allows Group Search, Caching and Selection | ||
|
||
### 0.3.1 - 30/12/2023 | ||
|
||
- Add Retry timer to FlowPilotComponent | ||
- Properly add State change to FlowPilotComponent | ||
- Properly invalidate Database Cache in FlowPilotSubsystem when an Actor is not valid when fetching it | ||
|
||
### 0.3 - 29/12/2023 | ||
|
||
- Fix Parallel Node not completing correctly. | ||
- Fix FlowComponent not registering correct FlowState | ||
|
||
### 0.1 alpha - 12/12/2023 | ||
|
||
- First alpha release. |
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,11 @@ | ||
--- | ||
title: Example Guide 2 | ||
description: A guide in my new Starlight docs site. | ||
--- | ||
|
||
Guides lead a user through a specific task they want to accomplish, often with a sequence of steps. | ||
Writing a good guide requires thinking about what your users are trying to do. | ||
|
||
## Further reading | ||
|
||
- Read [about how-to guides](https://diataxis.fr/how-to-guides/) in the Diátaxis framework |
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,12 @@ | ||
--- | ||
title: FlowActorReference | ||
description: Class used to grab a reference to an actor in FlowPilot | ||
--- | ||
|
||
## Description | ||
|
||
Flow Actor Reference is a class that helps find a reference to an actor that can be in game, in the level, or not spawned yet. | ||
It uses 3 modes of operation. | ||
- You can reference 'Self', which will return the current object running FlowPilot (that owns FlowPilotComponent) | ||
- You can reference an Actor in a Level. | ||
- You can reference an Actor via GameplayTag. These are most useful when an Actor is not persistent in the level. These will also allow returning groups of Actors |
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,6 @@ | ||
--- | ||
title: FlowPilotSettings | ||
description: Settings to help debug and customize FlowPilot | ||
--- | ||
|
||
## Description |
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,7 @@ | ||
--- | ||
title: FlowTypes | ||
description: FlowTypes.h contains definition about various types used throughout FlowPilot | ||
--- | ||
|
||
## Description | ||
|
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