EStringTableLoadingPolicy

Copyright Epic Games, Inc. All Rights Reserved.

Choose your operating system:

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 (

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 (

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