Hololens错误提示:can't be loaded because it was not built with the right version or build target.

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/aiyan1111111/article/details/54630644

说明:

hololens在使用assetbundle进行联网下载资源时报错:

The file can not be loaded because it was created for another build target that is not compatible with this platform.
Please make sure to build AssetBundles using the build target platform that it is used by.
File's Build target is: 5

 
(Filename: C:/buildslave/unity/build/Runtime/Serialize/SerializedFile.cpp Line: 1049)


The AssetBundle 'http://Da/XXQQ_asset/XXQQ/TestHololens/H_5_5/foxiangstandalonewindows_5.5.assetbundle' can't be loaded because it was not built with the right version or build target.
 
(Filename: C:\buildslave\unity\build\Runtime/AssetBundles/AssetBundleLoadFromAsyncOperation.cpp Line: 420)

问题所在:

  1. 所下载的assetbundle文件与当前Hololens所在Unity版本不匹配;
  2. 所下载的assetbundle文件与当前Hololens所在平台不匹配

解决方法:

  1. 使用Hololens所在Unity版本进行assetbundle打包
  2. 打包平台选择——WSA(windows store app)

参考我的另一篇文章:

Hololens——Assetbound处理http://blog.csdn.net/aiyan1111111/article/details/54630463

猜你喜欢

转载自blog.csdn.net/aiyan1111111/article/details/54630644