Is FText::FromStringTable thread-safe?


i called this function in blueprint,but sometimes i got MISSING STRING TABLE ENTRY.

if not what should i do

Can’t you use the build in enum to string?

UENUM(BlueprintType)
enum class EMyTestEnum : uint8
{
Test UMETA(DisplayName = FText::FromStringTable(“Enum“, “Test“)),
};

actually it can’t be compiled
Is your enum defined in C++? If yes, how do you handle localization for it?


uint8* instead of int32*