Installing Insight

Using the Insight component:

Adding the Insight component to an empty GameObject is the fastest way to get up and running with Insight. Insight will mark the object with DontDestroyOnLoad to prevent it from being unloaded during scene changes.

The Insight Component Editor

Invoking Insight.Create:

To control the lifespan of Insight programatically, Insight can be spawned automatically with Insight.Create(), this will create the Insight GameObject and set the current Configuration automatically.

public void Start()
{
	Configuration config = new Configuration();
	config.EnableInRelease = false;
	config.UseKeyboardShortcut = true;
	Insight.Create(config);
}