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
2
votes
1 answer

Flutter: How to get the local AssetBundle when being used as a package?

I am trying to nest 1 flutter application within another, think a Gallery App, that links to many Demo Apps: Gallery --> Demo1 --> Demo2 etc Demo1 uses: rootBundle.load('images/image.png') to load images. This breaks when Demo1 is used from within…
shawnblais
  • 1,038
  • 11
  • 23
2
votes
1 answer

Huge world loading/unloading in unity webgl using asset bundles

I have a very large 3D world/Environment which I have divided into 1000 x 1000 m (1km) tiles. Made assetbundles of all tiles and currently there are only 5 asset bundles (Expected to grow significantly maybe around 1000 asset…
Muhammad Faizan Khan
  • 10,013
  • 18
  • 97
  • 186
2
votes
0 answers

Script Concludes Early when GetDownloadURLAsync().ContinueWith Is Called (Google Firebase + Asset Bundle Download)

Scripting rookie here, so please bear with me. Working in Unity 2018 Working with Google Firebase Storage + Authentication During my authentication and subsequent acquisition of Asset Bundles, (stored remotely on our Google Firebase Storage setup)…
2
votes
1 answer

Whole level in AssetBundle

I am building a simple 3D game and I am trying to make it as small as possible. Currently I loading most of the 3D models (like characters) from an AssetBundle that I have created. The problem is when I try to compress a scene (with its baked data,…
SagiZiv
  • 932
  • 1
  • 16
  • 38
2
votes
3 answers

How to get AssetBundleManifest from AssetBundle in Unity3D

I have read AssetBundles Document and also tried to get the manifest from the specific assetbundle like the document. I want to get character's manifest but the manifest from the code returns null. I've changed the AssetBundleManifest at line 5 to…
Chinnawat Sirima
  • 410
  • 6
  • 10
2
votes
1 answer

How To Dynamically Add a 3D Model to a Ground Plane

I was using Unity's Ground Plane feature to place a 3d animated model. However I am now downloading this 3d model using AssetBundle feature and need to place it under on the Ground Plane Stage using a script. However it doesn't display, when I…
Nathaniel Nunes
  • 301
  • 1
  • 15
2
votes
2 answers

Can't be loaded because another AssetBundle with the same files is already loaded

I want to play the video in AR camera. Totally I have 10 videos and one videoplayer. And I am downloading the video player from the server as an asset bundle with name videoplayer.unit3d and storing into sd card. when I am scanning the imageTarget I…
Sureshkumar S
  • 193
  • 1
  • 2
  • 13
2
votes
3 answers

Unable to register css / js using assets / registerCss function

I had created a testasset.php as follows :
user3350093
  • 43
  • 10
2
votes
2 answers

How to add whole directory to js section in asset bundle yii2

How to add whole directory to js section in asset bundle yii2 I think that this will be something like this class AppAsset extends AssetBundle { public $basePath = '@webroot'; public $baseUrl = '@web'; public $css = [ …
Link
  • 669
  • 7
  • 20
2
votes
0 answers

Creating Unity Asset bundles at runtime

I have a windows application which users can import fbx models into. What I want to do is to be able to create asset bundle from these imported fbx models and then save the bundle file to a server. I wanted to ask if such thing is possible with…
m0j1
  • 4,067
  • 8
  • 31
  • 54
2
votes
1 answer

How to add assetbundle js/css add only in one page in yii2?

I have added fullcalendar js/css in vendor/bower folder. I want to add this into just one page. I read abt AssestBundle on this link - http://www.yiiframework.com/doc-2.0/guide-structure-assets.html But this add in all the pages.
Ish
  • 2,085
  • 3
  • 21
  • 38
2
votes
1 answer

Assetbundles not working with iOS

I am developing an AR app for the iPhone in Unity which downloads asset bundles from a webserver and attaches them to image targets. So far almost everything is working--except that when the app tries to load the asset bundle, I get the following…
Lugh
  • 100
  • 1
  • 9
2
votes
1 answer

Add script to assetbundle in HTML

I'm working on a project that uses Unity WebGL to display different machines/parts/.. in 3D, these parts or machines are selected by the user and then loaded into a scene (for now there is just a single scene, but we might want to load scenes…
Ward D.S.
  • 536
  • 3
  • 11
2
votes
1 answer

Unable to delete downloaded asset bundles

Currently, I have uploaded collections of my scenes to a server in an asset bundle form. However, I'm unable to to delete the asset bundles that I have downloaded from the game before. I tried using WWW www = WWW.LoadFromCacheOrDownload (url,…
2
votes
1 answer

Unity: Cannot load scene from asset bundle

I'm having an issue with the new Asset Bundle system in Unity 5 Beta RC3. Now before i present my question, I've been working with this very project in Unity 5 since beta 17 (4 weeks ago), and everything worked perfectly fine loading several…
1 2
3
16 17