ActorUI.SetActorDisplayName
Declaration#
public void SetActorDisplayName(string displayName)Parameters#
| Name | Description |
|---|---|
| displayName | Value to set |
Description#
Set the actor's display name
Usage#
Example
using NullSave.GDTK;using UnityEngine;
public class Example : MonoBehaviour{ public void ExampleMethod(ActorUI target) { target.SetActorDisplayName("My New Name"); }}