Answers for "check for stable internet connection unity"

C#
2

unity check for internet connection

//REACHABLE VIA LOCAL NETWORK OR CARRIER DATA
if (Application.internetReachability != NetworkReachability.NotReachable)
{
     Debug.LogWarning("Connected to WiFi or Carrier network");
}
Posted by: Guest on April-24-2021

Code answers related to "check for stable internet connection unity"

C# Answers by Framework

Browse Popular Code Answers by Language