UKismetTextLibrary::PolyglotDataToText
#include "Kismet/KismetTextLibrary.h"
Access: public
Specifiers: staticBlueprintPure
Description
Gets the text instance created from the given polyglot data, or an empty text if the data is invalid.
Caveats & Gotchas
- • Silently returns empty text on invalid data rather than asserting or logging — call IsPolyglotDataValid first if you need to distinguish 'genuinely empty' from 'invalid input'.
Signature
static FText PolyglotDataToText(const FPolyglotTextData& PolyglotData); Parameters
| Name | Type | Description | Default |
|---|---|---|---|
| PolyglotData | const FPolyglotTextData& | The polyglot data to convert to a text instance. | — |
Return Type
FText Example
Convert authored polyglot data to displayable text C++
FText Localized = UKismetTextLibrary::PolyglotDataToText(MyPolyglotData); Tags
Version History
Introduced in: unknown
| Version | Status | Notes |
|---|---|---|
| 5.6 | stable | — |
Feedback
Was this helpful?