MerchantUI.SetMerchantDisplayName
Declaration#
public void SetMerchantDisplayName(string displayName)Parameters#
| Name | Description |
|---|---|
| displayName | Value 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"); }}