我是靠谱客的博主 时尚小丸子,最近开发中收集的这篇文章主要介绍Unity与Android通信 02UnityRemote下载与使用及移动端相关API概览,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
UnityRemote 5 下载,移动端相关API概览
public class Test : MonoBehaviour
{
public Text infoText;
string platform = string.Empty;
string info = string.Empty;
void Update()
{
info = string.Empty;
//使用预编译的宏命令检测平台
//Editor模式下目标平台选Android也会触发UNITY_ANDROID的宏
#if UNITY_ANDROID
platform = "UNITY_ANDROID";
#elif UNITY_EDITOR
platform = "UNITY_EDITOR";
#endif
Debug.Log("platform : " + platform);
info += "platform : " + platform + "n";
//使用Application.platform检测平台
Debug.Log("platform : " + Application.platform);
info += "platform : " + Application.platform + "n";
//获取当前设备分辨率
Debug.Log("currentResolution : " + Screen.currentResolution);
info
最后
以上就是时尚小丸子为你收集整理的Unity与Android通信 02UnityRemote下载与使用及移动端相关API概览的全部内容,希望文章能够帮你解决Unity与Android通信 02UnityRemote下载与使用及移动端相关API概览所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复