Questions tagged [assetbundle]

AssetBundles are a collection of assets, packaged for loading at runtime. With Asset Bundles, you can dynamically load and unload new content into your application. AssetBundles can be used to implement post-release DLC

AssetBundles are a collection of assets, packaged for loading at runtime. With Asset Bundles, you can dynamically load and unload new content into your application. AssetBundles can be used to implement post-release DLC.

They can be used to reduce the amount of space on disk used by your game, when first deployed. It can also be used to add new content to an already published game.

243 questions
0
votes
1 answer

How to force download unity asset bundle using php?

I am downloading an asset bundle using the following code:
Aryaman Gupta
  • 616
  • 1
  • 8
  • 20
0
votes
2 answers

How to set and use asset bundle version in Unity3D?

How to let know WWW.LoadFromCacheOrDownload function to download latest version of asset bundles , so that the above fuction do not use cached asset bundles.
Aryaman Gupta
  • 616
  • 1
  • 8
  • 20
0
votes
0 answers

Issue with running AssetBundleManager local server

Everytime I try to run the local server on unity I get this error: ArgumentException: Can't find process with ID 787 After this error, the button is disabled. I'm using a Mac, I'm running behind a proxy but my co-worker said that he can run it…
0
votes
0 answers

Unity - Loading assetbundle from usb storage on android

I have a project in unity that requires very heavy textures, so I want to load them via usb. I have already loaded assetbundles from local storage, but I want to know if I can load them from a usb drive without the files going into the device for…
Yuval3210
  • 193
  • 4
  • 14
0
votes
1 answer

What's the correct usage for LoadFromCacheOrDownload?

I'm relatively new to programming in unity and I had never used assetbundles before. I'm using the example project which everyone can download from the unity website and adapting it to my needs, I already know how to use the load scenes function,…
0
votes
2 answers

[Unity3D]How to create an assetbundle of an image folders and then load these images as texture?

I'm new to Unity. Now I have an image folder which includes around 749 .jpg images. I want to create an assetbundle of this folder. In the game, I want to load these .jpg iamges one by one and set it as Texture2D. Thanks in advance.
0
votes
0 answers

Unity3d - Loading array of objects by using parent folder name in asset bundle?

I have created an asset bundle which has sprites in folder hierarchy. What I want is that I get array of these sprites by using the parent folder name. Is this possible? I can get single sprite using …
kashif789us
  • 474
  • 8
  • 23
0
votes
2 answers

Unity 5.3 Assetbundles

I am using the AssetBundleManager API in my unity 5.3 project. My set-up: I have two scenes. One main scene and another scene that will be loaded as a multi scene into the main scene, which works fine in the editor right now. Now I wanted to built…
Jenny
  • 469
  • 2
  • 11
  • 25
0
votes
1 answer

How to organize resources loading and unloading in Unity3D?

I have 340 sprites and I want to show them like a comic book. The comic book has 39 chapters and each chapter has around 6-10 pictures. I noticed that Unity does not allow to loading resources from Resources folder if the file resources.assets is…
0
votes
0 answers

How to load Asset bundle scene in unity 4

I have made asset bundle of a scene like this [MenuItem("MFKJ/BuildSceneAsset")] static void myBuild() { string[] levels = { "Assets/Scene/Scene2.unity" }; string v = BuildPipeline.BuildStreamedSceneAssetBundle(levels,…
Muhammad Faizan Khan
  • 10,013
  • 18
  • 97
  • 186
0
votes
0 answers

Lag in Unity3d when try Instantiate

In unity3d I load assetbundle, but when Instantiate(bundle.mainAsset) - unity3d has a lag - some delay. This is my code, in which I load assetBundle (class DataAssetLoad - class, than contains url, nameBunle etc.) private IEnumerator…
Knaus Irina
  • 789
  • 5
  • 15
  • 35
0
votes
1 answer

Unity 5 Assetbundle for FBX - Model Scale reduced

Our Unity (Windows) project was in Unity 4.3.1 and now we are upgrading it to Unity 5.2. In our project we load 3D models (fbx files) as Assetbundles. For the new Unity version when we create assetbundles with Unity 5.2 and load them in Unity, they…
Madhu
  • 1,209
  • 2
  • 22
  • 28
0
votes
0 answers

Asset Bundles are redownloaded after CRC check fails

I was having some issues with downloading Asset Bundles in a project and realised they were happening because I had some test code that was giving the download the wrong CRC. What's happening is the asset bundle is being downloaded, the CRC is…
Jean Finley
  • 507
  • 3
  • 9
  • 21
0
votes
1 answer

Load Assetbundle with new Vuforia Marker / Dataset in Unity

I have an app that loads a new scene via assetbundle, the problem is, I need to update the app sometimes, but I can't update the core which is available in the ios and android store. So I need to load new content and new vuforia datasets through an…
Jenny
  • 469
  • 2
  • 11
  • 25
0
votes
1 answer

Errors loading scripts on prefabs from asset bundles

I'm currently trying to set up my project to allow users to download mini games post release. Todo this I am trying to use asset bundles to facilitate this, one containing the new games scene and one containing the assets and DLLs for the scripts…
Tarnquil
  • 31
  • 3