UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
TextNamespaceFwd.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreTypes.h"
6
7// USE_STABLE_LOCALIZATION_KEYS controls whether we attempt to keep localization keys stable when editing text properties.
8// This requires WITH_EDITORONLY_DATA, but can also be optionally disabled in editor builds by changing its value to 0.
9#if WITH_EDITORONLY_DATA
10 #define USE_STABLE_LOCALIZATION_KEYS (1)
11#else // WITH_EDITORONLY_DATA
12 #define USE_STABLE_LOCALIZATION_KEYS (0)
13#endif // WITH_EDITORONLY_DATA