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
8
votes
2 answers

Build and load Assetbundles in Unity

I cannot get Unity Assetbundles working in an iOS build. In Unity I build the assetbundles: using UnityEditor; public class CreateAssetBundles { [MenuItem("Assets/Build AssetBundles")] static void BuildAllAssetBundles() { …
Gideons
  • 145
  • 1
  • 4
  • 13
8
votes
3 answers

yii2 asset bundle - single file position

I am doing a web app on Yii2 framework. Defined (extended) new AssetBundle class NeonAsset extends AssetBundle { public $sourcePath = '@app/themes/neon/'; public $css = [ 'css/font-icons/entypo/css/entypo.css', '...', '...' …
user779294
7
votes
2 answers

Unity WebGL asset bundle memory is not releasing

I am loading and Caching Asset Bundles using below function in unity webgl: IEnumerator DownloadAndCacheAB(string assetName) { // Wait for the Caching system to be ready while (!Caching.ready) yield return null; …
6
votes
5 answers

How to load asset with same name, but placed in different folders from assetbundle?

I am using unity5.3.3, I would like to know how should I get the asset from an asset bundle, whose names are same but are kept in different folder. My AssetBundle Folder is set in the following manner: MyAssets -> this Folder is packed as an…
Sushant Poojary
  • 353
  • 4
  • 12
6
votes
2 answers

Unity - Is it necessary to exclude assets being used in AssetBundles from game build?

Having a difficult time finding much information on how AssetBundles actually work. Can't find any explanation on how to manage asset bundles with a game build. Basically I have a folder called AssetBundles in my Project window. All assets that I…
Sakuya
  • 660
  • 5
  • 23
6
votes
2 answers

Unity 3D: Asset Bundles vs. Resources folder vs www.Texture

So, I've done a bit of reading around the forums about AssetBundles and the Resources folder in Unity 3D, and I can't figure out the optimal solution for the problem I'm facing. Here's the problem: I've got a program designed for standalone, that…
Catlard
  • 853
  • 6
  • 13
  • 30
5
votes
1 answer

Unity asset bundle server automation

I am developing an application in Unity where users can upload their own 3d-models. I have been searching for ways to implement this and the best way to load models from all types seems to be asset bundles. To create these bundles on a server i want…
5
votes
0 answers

Is it possible to create an asset bundle without Unity editor?

We need to create asset bundles automatically on our server, but having Unity installed on the server and running it via command line would fit badly in our server design. So we're wondering if there's any other way to create asset bundles. A .Net…
Knaus Irina
  • 789
  • 5
  • 15
  • 35
5
votes
1 answer

How to use JSX file in Yii2 Asset Bundle

I have Yii2 project setup and I've decided to use Facebook's JavaScript framework React.js which provided a convenient way to declare HTML templates inside JavaScript code, called JSX. My JavaScript looks as following: (function () { 'use…
George Borunov
  • 1,562
  • 1
  • 15
  • 14
5
votes
2 answers

How to add jQuery UI to an Asset Bundle

I have the following asset bundle and i would like to add jQuery UI as part of it as well. How can I do it?
Balaji Viswanath
  • 1,684
  • 1
  • 12
  • 19
4
votes
1 answer

Get AssetBundle manifest file from server

I am new in Unity and and I start to use AssetBundle for my project to download them from server. I use UnityWebRequestAssetBundle to download the assets because WWW is obsolete. Everything is works fine I can download the assets from the server put…
Máté Nagy
  • 125
  • 8
4
votes
1 answer

UnityWebRequest.SendWebRequest doens't send on mobile

I am downloading Assetbundles using the UnitywebRequest method from HTTPS, however the UnityWebRequest.SendWebRequest seems to take its sweet time to actually start receiving any data. public static IEnumerator DownloadMenuAssetBundle(string…
Remy
  • 4,843
  • 5
  • 30
  • 60
4
votes
1 answer

Yii2 disable asset of a vendor module

I have installed yii2-admin module, located in /vendor/mdmsoft/yii2-admin but I don't want it to load its own asset bundle. It there any way to disable this module asset bundle?
Lê Sỹ Hoàng
  • 409
  • 1
  • 3
  • 15
4
votes
1 answer

Building Unity game for iOS platform with Asset Bundle

The problem that i have is that when i tried to build Unity game for iOS platform , I built the assets with it but then i need to reduce the file size as much as possible. How do i split asset from the whole build ? In Android, there's an option of…
4
votes
2 answers

Can I edit or extract the contents of an asset bundle in Unity?

I have a Unity assetbundle with me. I have some more bundles inside those and some db files. Is there a simple way to edit or extract the contents of an asset bundle.
Harshit Laddha
  • 2,044
  • 8
  • 34
  • 64
1
2 3
16 17