On this pageAddOnPlugin.needsUIpublic bool needsUI { get; }CopyDescription#Get if this add-on requires UIUsage#Exampleusing NullSave.GDTK.Stats;using UnityEngine; public class Example : MonoBehaviour{ public void ExampleMethod(AddOnPlugin plugin) { bool result = plugin.needsUI; } }Copy