How unity determines the type of network connection

Source: Internet
Author: User

Today encountered a problem, how to determine the current type of mobile game network connection, is WiFi or 234G?

Originally ready to write in Android plug-ins for unity to call, and later on the internet to browse the gods of the post, on the CSDN saw the use of networkreachability use, so their Andro perfect solution, the cock silk cherish kidney no love crazy, Hopefully someone can try to be available on iOS as well.
On the code: [Code]csharpcode:
Using unityengine;using System.collections;public class Test:monobehaviour {    string s;//Use this for initialization void Start () {        if (application.internetreachability = = networkreachability.reachableviacarrierdatanetwork)        {            s = "2g/3g/4g";        }        else if (application.internetreachability = = networkreachability.reachablevialocalareanetwork)        {            s = "WiFi";        }        Else if (application.internetreachability = = networkreachability.notreachable)        {            s = "Duan Wang";        }        }//Update is called once per framevoid update () {    }    void Ongui ()    {        Guilayout.label (s);    }}

How unity determines the type of network connection

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.