EStringTableLoadingPolicy

Copyright Epic Games, Inc. All Rights Reserved.

Windows
MacOS
Linux

References

Module

Core

Header

/Engine/Source/Runtime/Core/Public/Internationalization/StringTableCoreFwd.h

Include

#include "Internationalization/StringTableCoreFwd.h"

Syntax

enum EStringTableLoadingPolicy
{
    Find,
    FindOrLoad,
    FindOrFullyLoad,
}

Values

Name

Description

Find

Try and find the String Table, but do not attempt to load it

FindOrLoad

Try and find the String Table, or attempt of load it if it cannot be found (note: the string table found may not be fully loaded)

FindOrFullyLoad

Try and find the String Table, or attempt to load it if it cannot be found, or if it was found but not fully loaded (note: this should be used sparingly in places where it is definitely safe to perform a blocking load)

Remarks

Loading policy to use with String Table assets

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss