This commit is contained in:
2025-11-14 18:44:06 +08:00
parent 10156da245
commit 22e867d077
7013 changed files with 2572882 additions and 1804 deletions

View File

@@ -0,0 +1,23 @@
// Shows either a welcome message, only once per session.
#if UNITY_EDITOR
using UnityEditor;
using UnityEngine;
namespace Mirror
{
static class Welcome
{
[InitializeOnLoadMethod]
static void OnInitializeOnLoad()
{
// InitializeOnLoad is called on start and after each rebuild,
// but we only want to show this once per editor session.
if (!SessionState.GetBool("MIRROR_WELCOME", false))
{
SessionState.SetBool("MIRROR_WELCOME", true);
Debug.LogFormat(LogType.Log, LogOption.NoStacktrace, null, "Mirror | mirror-networking.com | discord.gg/N9QVxbM");
}
}
}
}
#endif