How do you reset the scene view camera to it’s original settings?
i need to know because i really don’t want to have to start all of my work over
Right click on the Scene Tab, select Close Tab. Go to Window menu and click Scene then move the Scene Tab to its position.
[MenuItem(“ToolBar/Reset”)]
static void Reset()
{
if(SceneView.lastActiveSceneView!= null)
{
MethodInfo info = SceneView.lastActiveSceneView.GetType().
GetMethod(“OnNewProjectLayoutWasCreated”,BindingFlags.Instance|BindingFlags.NonPublic);
info.Invoke(SceneView.lastActiveSceneView,null);
}
}
work on unity5.3.2