Skip to main content

MerchantUI.SetMerchantDisplayName

Declaration#

public void SetMerchantDisplayName(string displayName)

Parameters#

NameDescription
displayNameValue to set

Description#

Set the merchant's display name

Usage#

Example
using NullSave.GDTK;using NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{    public void ExampleMethod(MerchantUI target)    {        target.SetMerchantDisplayNameDisplayName("My New Name");    }}