InterfaceManager.GetTooltip
Declaration#
public static TooltipDisplay GetTooltip(string id)Parameters#
| Name | Description |
|---|---|
| id | Id to get |
Description#
Get a TooltipDisplay by id
Usage#
using NullSave.GDTK;using UnityEngine;
public class CodeSample : MonoBehaviour{
public void Example(string target) { TooltipDisplay result = InterfaceManager.GetTooltip(target); }
}