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”);

如何在google play控制台删除已上传的aab文件

https://stackoverflow.com/questions/45822460/remove-apk-from-library-in-google-play-developer-console 转载

Just go to App bundle explorer and remove the needed abb. You can do it with these steps:

  1. Open Google Play Console
  2. Go to your project
  3. Go to the “Release” section of the side-bar
  4. Go to the “App bundle explorer”
  5. Find the APK/Bundle and click “Delete APK/Bundle”.

Keep in mind that you need to detach the specific APK/Bundle from any draft releases and save it. Otherwise, the delete option will not be available.