fix: Correct function output type in GI_GameTagRegistry documentation
This commit is contained in:
@@ -54,7 +54,7 @@ None. The registry is a flat collection of tag declarations.
|
|||||||
|
|
||||||
| Name | Inputs | Outputs | Category | Description |
|
| Name | Inputs | Outputs | Category | Description |
|
||||||
|------|--------|---------|----------|-------------|
|
|------|--------|---------|----------|-------------|
|
||||||
| `GetAllRegisteredTags` | — | `Array<FGameplayTag>` | Query | Reads tags from all registered per-category Data Tables (see Section 14) |
|
| `GetAllRegisteredTags` | — | `Array<FName>` | Query | Reads tags from all registered per-category Data Tables (see Section 14) |
|
||||||
| `GetTagDisplayName` | `Tag: FGameplayTag` | `Text` | Query | Returns the human-readable display name via `Get Tag Display Name` node |
|
| `GetTagDisplayName` | `Tag: FGameplayTag` | `Text` | Query | Returns the human-readable display name via `Get Tag Display Name` node |
|
||||||
| `ValidateTag` | `Tag: FGameplayTag` | `Boolean` | Validation | Returns `true` if the tag is valid via `Is Gameplay Tag Valid` node |
|
| `ValidateTag` | `Tag: FGameplayTag` | `Boolean` | Validation | Returns `true` if the tag is valid via `Is Gameplay Tag Valid` node |
|
||||||
|
|
||||||
@@ -329,7 +329,7 @@ Add to Class Defaults:
|
|||||||
[Function: LogAllTags]
|
[Function: LogAllTags]
|
||||||
Step 1: Call GetAllRegisteredTags() → LocalTags
|
Step 1: Call GetAllRegisteredTags() → LocalTags
|
||||||
Step 2: ForEachLoop (LocalTags):
|
Step 2: ForEachLoop (LocalTags):
|
||||||
├─► Get Tag Name (Array Element) → ToString → Print String
|
├─► Name (Array Element) → ToString → Print String
|
||||||
Step 3: Print String: "Total tags across all tables: " + Array Length(LocalTags)
|
Step 3: Print String: "Total tags across all tables: " + Array Length(LocalTags)
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -341,7 +341,7 @@ Add to Class Defaults:
|
|||||||
Step 1: Call GetAllRegisteredTags() → LocalTags
|
Step 1: Call GetAllRegisteredTags() → LocalTags
|
||||||
Step 2: Create String variable → Output = ""
|
Step 2: Create String variable → Output = ""
|
||||||
Step 3: ForEachLoop (LocalTags):
|
Step 3: ForEachLoop (LocalTags):
|
||||||
├─► Get Tag Name (Array Element) → ToString → TagString
|
├─► (Array Element) → ToString → TagString
|
||||||
├─► Branch: Does TagString start with NamespacePrefix?
|
├─► Branch: Does TagString start with NamespacePrefix?
|
||||||
│ True → Append TagString + "\n" to Output (use "Append" or "Build String")
|
│ True → Append TagString + "\n" to Output (use "Append" or "Build String")
|
||||||
└─► Continue
|
└─► Continue
|
||||||
|
|||||||
Reference in New Issue
Block a user