Version: Unity 6.7 Alpha (6000.7)
LanguageEnglish
  • C#

SharedEntryFlags

enumeration

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

Per-key flags stored once on the shared table entry and shared across every locale.

These flags live on a key's SharedTableEntry, so they apply to that key in every locale rather than to a single translation. The enumeration is a bit field, so values combine with bitwise operators. The SharedEntryFlags.Smart flag marks a key whose string values are Smart Strings.

Additional resources: SharedTableData, SharedTableEntry

<para>Combine and test the flags on a key's entry.</para>

using Unity.Localization;
using UnityEngine;

namespace Unity.Localization.Samples { public class SharedEntryFlagsOverviewExample { public void Run() { var sharedData = ScriptableObject.CreateInstance<SharedTableData>(); var entry = sharedData.AddKey("GREETING");

entry.Flags |= SharedEntryFlags.Smart; // mark the key as a Smart String bool isSmart = (entry.Flags & SharedEntryFlags.Smart) != 0;

Debug.Log(isSmart); // True } } }

Properties

Property Description
None No flags are set.
Smart The key's string values are Smart Strings, formatted through Smart Strings at resolve time.