- Home /
Question by
HenTeMon · Aug 26, 2016 at 04:45 AM ·
unity5assetbundlesdependenciesbuildplayer
Unity5. How to build asset bundles and player with dependencies?
Hi guys! Is someone faced with a new bundles system in unity5? There is bundle, that containing in the atlas. There is prefab, that use the atlas. Prefab is located in the main project. Is it possible to make the atlas containing only in the bundle, but not in main project?
Early I used to do so
BuildPipeline.PushAssetDependencies();
{
BuildPipeline.BuildAssetBundle();
BuildPipeline.PushAssetDependencies();
{
BuildPipeline.BuildPlayer();
}
BuildPipeline.PopAssetDependencies();
}
BuildPipeline.PopAssetDependencies();
But PushAssetDependencies is now obsolete...
Thanks
Comment
Your answer

Follow this Question
Related Questions
Asset Bundle Dependencies, Unity 5 0 Answers
Unity 5.3.3f1: How to set an object as AssetBundle by script? 0 Answers
Build & Run doesn't finish 0 Answers
How to build individual assetbundle via the new AssetBundle system in Unity 5? 1 Answer
Unity 5 Asset Bundles limitations for mobile platforms. 0 Answers