Search Unity

  1. Megacity Metro Demo now available. Download now.
    Dismiss Notice
  2. Unity support for visionOS is now available. Learn more in our blog post.
    Dismiss Notice

Terrain Error at Android when i try make assetbundle

Discussion in 'Asset Bundles' started by Chilles, Nov 4, 2019.

  1. Chilles

    Chilles

    Joined:
    Dec 9, 2017
    Posts:
    5
    I am using Unity5.6.7
    May someone help me, i have some error I have create simple terrain. that have a texture And everything run well i try at android and pc. with

    WWW www = new WWW(Url);
    yield return www;
    AssetBundle assetBundle = WWW_Bundle.assetBundle;

    but i try to download and load my terrain with
    WWW www = WWW.LoadCahceordownload(Url, version);
    yield return www;
    AssetBundle assetBundle = WWW_Bundle.assetBundle;

    i try in my pc everything run well, but i try at android. the terrain was broke and the texture is blur.

    I'll be thanksfull if anyone can help me.