Exposed previously internal parts of the Scene system

This commit is contained in:
Albin Corén 2018-03-06 00:53:42 +01:00
parent 308c1324ae
commit e4d9a0166d
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ namespace MLAPI
public List<string> MessageTypes = new List<string>();
public List<string> PassthroughMessageTypes = new List<string>();
internal HashSet<ushort> RegisteredPassthroughMessageTypes = new HashSet<ushort>();
internal List<string> RegisteredScenes = new List<string>();
public List<string> RegisteredScenes = new List<string>();
public int MessageBufferSize = 65535;
public int MaxMessagesPerFrame = 150;
public int MaxConnections = 100;

View File

@ -6,7 +6,7 @@ using UnityEngine.SceneManagement;
namespace MLAPI.NetworkingManagerComponents
{
internal static class NetworkSceneManager
public static class NetworkSceneManager
{
internal static HashSet<string> registeredSceneNames;
internal static Dictionary<string, uint> sceneNameToIndex;