Added error message to scene manager

This commit is contained in:
Albin Corén 2018-03-08 17:28:06 +01:00
parent 4f5ce9ec0f
commit 5d6114a457
2 changed files with 6 additions and 1 deletions

View File

@ -31,7 +31,7 @@ namespace MLAPI
//TODO
public bool EncryptMessages = false;
public bool AllowPassthroughMessages = true;
public bool EnableSceneSwitching = true;
public bool EnableSceneSwitching = false;
//Cached config hash
private byte[] ConfigHash = null;

View File

@ -18,6 +18,11 @@ namespace MLAPI.NetworkingManagerComponents
internal static void SetCurrentSceneIndex ()
{
if(!sceneNameToIndex.ContainsKey(SceneManager.GetActiveScene().name))
{
Debug.LogWarning("MLAPI: Scene switching is enabled but the current scene (" + SceneManager.GetActiveScene().name + ") is not regisered as a network scene.");
return;
}
CurrentSceneIndex = sceneNameToIndex[SceneManager.GetActiveScene().name];
}