deltavr multiplayer 2.0

This commit is contained in:
Toomas Tamm
2023-05-08 15:56:10 +03:00
parent 978809a002
commit 07b9b9e2f4
10568 changed files with 2925986 additions and 1478601 deletions
@@ -0,0 +1,25 @@
namespace FishNet.Managing.Scened
{
/// <summary>
/// How to replace scenes when loading.
/// </summary>
public enum ReplaceOption : byte
{
/// <summary>
/// Replace all scenes, online and offline.
/// </summary>
All,
/// <summary>
/// Only replace scenes loaded using the SceneManager.
/// </summary>
OnlineOnly,
/// <summary>
/// Do not replace any scenes, additional scenes will be loaded as additive.
/// </summary>
None
}
}