unity與iOS、Android互動

來源:互聯網
上載者:User

標籤:

 

1、Unity調iOS的方法

   在首頁的viewcontroller裡面實現方法

   

void _PressButton3(const char *args)

{

  //  UnityAppController *unityapp = (UnityAppController *)[UIApplication sharedApplication].delegate;

   // [unityapp ShowWindowssubview];

}

  在Unity裡面 直接調用 _PressButton3(content);

 

2、iOS與Unity互動,傳值

   

     UnitySendMessage("Scripts", [@"Function" UTF8String], [@"Parameters" UTF8String]);

 

3 .  unity調android裡面的方法

     在初始化UnityPlayer的Activity中添加方法,如下:

/**
* 測試Unity調用Android的方法
*/
public void testMethod(String param){
System.out.println("參數為:"+param);
}

對於提供的方法,不可以進行UI操作,因為Unity3D對於android的UI線程來說,只是個子線程,如果要進行UI操作,可以使用Handler發訊息。


  .在Unity工程中,利用c#檔案來書寫,Unity調用的代碼:

public static void ActivateShareImage(string content)
{
if (Application.platform == RuntimePlatform.IPhonePlayer)
{
_PressButton3(content);
}
else if (Application.platform == RuntimePlatform.Android)
{
UISystem.Console("test method!");

AndroidJavaClass jc = new AndroidJavaClass("com.unity3d.player.UnityPlayer");
AndroidJavaObject jo = jc.GetStatic<AndroidJavaObject>("currentActivity");
jo.Call("testMethod", "unity");
}
else
{

}
}

 

4、android與unity互動

      UnityPlayer.UnitySendMessage("Scripts", "Function", "Parameters");

unity與iOS、Android互動

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.