On this pageLocalizedText.Textpublic string Text { get; set; }CopyDescription#Gets localized text or sets raw text that is then localizedUsage#Exampleusing NullSave.GDTK;using UnityEngine; public class Example : MonoBehaviour{ public void ExampleMethod(LocalizedText target) { string result = target.Text; } }Copy