InterfaceManager.AddTooltip
Declaration#
public static void AddTooltip(TooltipDisplay tooltip)Parameters#
| Name | Description |
|---|---|
| tooltip | Tooltip to add |
Description#
Add a TooltipDisplay to the 'additionalTooltips' list
Usage#
using NullSave.GDTK;using UnityEngine;
public class CodeSample : MonoBehaviour{
public void Example(TooltipDisplay target) { InterfaceManager.AddTooltip(target); }
}