Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikea15 committed Jun 13, 2024
1 parent a1a97ac commit e889ad7
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
3 changes: 2 additions & 1 deletion src/components/ClassRef.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const { className, parent } = Astro.props
---

<div>
<a href="./reference/{className}">{className}</a> : <a href="./reference/{parent}">{parent}</a>
<a href={ '../../reference/'.concat(className.toLowerCase()) }>{className}</a> :
<a href={ '../../reference/'.concat(parent.toLowerCase()) }>{parent}</a>
</div>

3 changes: 2 additions & 1 deletion src/content/docs/reference/FlowActorReference.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ description: Class used to grab a reference to an actor in FlowPilot

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
- 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
1 change: 0 additions & 1 deletion src/content/docs/reference/FlowTypes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ description: FlowTypes.h contains definition about various types used throughout
---

## Description

5 changes: 0 additions & 5 deletions src/content/docs/reference/UFlowPilot.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,4 @@ import ClassRef from '../../../components/ClassRef.astro'

## Description

Reference pages are ideal for outlining how things work in terse and clear terms.
Less concerned with telling a story or addressing a specific use case, they should give a comprehensive outline of what you're documenting.

## Further reading

- Read [about reference](https://diataxis.fr/reference/) in the Diátaxis framework
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ title: UFlowPilotParent
description: A reference page in my new Starlight docs site.
---

import ClassRef from '../../../components/ClassRef.astro'

<ClassRef className="UFlowPilotParent" parent="UFlowPilotTask" />

## Description

Reference pages are ideal for outlining how things work in terse and clear terms.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ title: UFlowPilotTask
description: A reference page in my new Starlight docs site.
---

import ClassRef from '../../../components/ClassRef.astro'

<ClassRef className="UFlowPilotTask" parent="UObject" />

## Description

Reference pages are ideal for outlining how things work in terse and clear terms.
Expand Down

0 comments on commit e889ad7

Please sign in to comment.