UILabel_TMPText.unlocalizedText
public string unlocalizedText { get; }Description#
Text supplied without localization.
Usage#
Example
using NullSave.GDTK;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(UILabel_TMPText target) { string result = target.unlocalizedText; }
}