Scene Object - Hertzole/HertzLib GitHub Wiki

Scene Object

Scene Object is a simple class that allows you to assign Unity scenes in the inspector. The only thing it needs is that the scene is added to the build settings.

Example Usage:

public SceneObject thisScene;

private void Start()
{
	SceneManager.LoadScene(thisScene);
}

Here's how it looks in the inspector:

Scene object