RealDocs

UBlueprintPathsLibrary::GetToolTipLocalizationPaths

function Engine Blueprint Since 4.0
#include "Kismet/BlueprintPathsLibrary.h"
Access: public Specifiers: staticBlueprintPure

Description

Returns the list of paths searched for localized tooltip text shown in the editor's Details panel and other reflected UI.

Caveats & Gotchas

  • Editor-only — tooltip text is not packaged into shipping builds.
  • Works alongside GetPropertyNameLocalizationPaths(); property labels and their tooltips are localized from separate path sets.

Signature

static const TArray<FString>& GetToolTipLocalizationPaths()

Return Type

const TArray<FString>&

Example

List tooltip localization search paths C++
for (const FString& Path : UBlueprintPathsLibrary::GetToolTipLocalizationPaths())
{
    UE_LOG(LogTemp, Log, TEXT("Tooltip loc path: %s"), *Path);
}

Version History

Introduced in: 4.0

Version Status Notes
5.6 stable

Feedback

Was this helpful?

Suggest an edit

Select a field above to begin editing.