Unity Hub 注意事项

1. 查看项目使用的unity editor版本

ProjectSettings/ProjectVersion.txt

2. Unity下载文件有c1后缀, 中国版; c1后缀, 全球版; 18及以前的中国版多点东西, 较新的没太大区别;还有个比较重要的是, UnityHub也分中国版和全球版, 中国版Hub能识别中国版和全球版Editor, 并且Hub中内容丰富一点, 包括社区内容之类的;全球版Hub则只能识别全球版Editor。

国际版下载: https://unity.com/releases/editor/archive#download-archive-2021

中国版下载: https://unity.cn/releases/full/2021

Unity android 添加虚拟方向盘控制

首先加载CrossPlatformInput资产,将其中Prefabs下面的MobileSingleStickControl添加到游戏场景上。

然后将玩家脚本中的坐标轴获取方法

float x = Input.GetAxisRaw(“Horizontal”);

float y = Input.GetAxisRaw(“Vertical”);

修改如下:

float x = CrossPlatformInputManager.GetAxisRaw(“Horizontal”);

float y = CrossPlatformInputManager.GetAxisRaw(“Vertical”);