一、用Remote在机子上调试 步骤: 1,install the remote apk file on your phone.
2,enable usb debugging.
3,connect your phone to computer with usb.
4,lunch remote on your phone.
5,lunch unity and hit play. 更详细一点的: http://answers.unity3d.com/questions/198853/unity-remote-for-android-not-working-solution.html 有时不能连是因为找不到设备: http://gamedev.stmartins.edu/2011/07/getting-unity-remote-for-android-working-on-windows/
二、unity的多开方式。 在unity的快捷方式里的属性,目标中加上-projectPath即可。
三、检测android的返回键(escape)和主页键(Home) if (Input.GetKeyUp(KeyCode.Escape))
{
Debug.Log("Return Button");
}
if (Input.GetKeyUp(KeyCode.Home))
{
Debug.Log("Home Button");
}
Home键好像不一定能用。。默认就是把程序挂到后台,并不是退出。
|