On this pageActor.displayNamepublic string displayName { get; set; }CopyDescription#Name of the creature or object attachedUsage#Exampleusing NullSave.GDTKusing UnityEngine; public class Example : MonoBehaviour{ public void ExampleMethod(Actor target) { string result = target.displayName; } }Copy