Localization.Message.AllowTextArgumentModifiers

Localization.Message.AllowTextArgumentModifiers

#Overview

name: Localization.Message.AllowTextArgumentModifiers

This variable is created as a Console Variable (cvar).

It is referenced in 1 C++ source file.

#Summary

#References in C++ code

#Callsites

This variable is referenced in the following C++ source code:

#Loc: <Workspace>/Engine/Plugins/Experimental/LocalizableMessage/Source/LocalizableMessage/Private/LocalizableMessageProcessor.cpp:14

Scope (from outer to inner):

file
namespace    LocalizableMessageProcessor

Source code excerpt:

// Disable argument modifier evaluation for text created from a message
bool bAllowTextArgumentModifiers = false;
FAutoConsoleVariableRef CVarAllowTextArgumentModifiers(TEXT("Localization.Message.AllowTextArgumentModifiers"), bAllowTextArgumentModifiers, TEXT("Whether to allow message -> text conversion to use text-style argument modifiers (default: false)"));

ETextFormatFlags GetTextFormatFlags()
{
	return bAllowTextArgumentModifiers
		? ETextFormatFlags::Default
		: (ETextFormatFlags::Default & ~ETextFormatFlags::EvaluateArgumentModifiers);