Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am having problems with downloading assetbundles.

I get the error:

The asset bundle 'url/levelpackIphone-Copy.unity3d' can't be loaded because
another asset bundle with the same files are already loaded

I need to check if the asset bundle has already been downloaded. My problem is that I cannot just store the URL, because the file you download can have a different name, but still contain the same content.

Thus somehow I need to check whether the asset bundle already has been downloaded. I don't really like to use something like

bundle.Unload(false);
share|improve this question
The unity tag is for Microsoft Unity. Please don't misuse it. – Lex Li Oct 10 '12 at 7:37
Oh, I am sorry for that. I didn't know unity != unity3d. I thought they were the same. :) – DijkeMark Oct 10 '12 at 7:43
Sounds like reorganising the bundle structure would be the best choice if possible at all. Then you could use additive loading. – Kay Oct 10 '12 at 11:05
Yes, well, it is very unlikely this problem will exists in the full version of what I am building, because now I am using 2 the same bundles of which I renamed 1. That is giving this error. It should not happen in the full version, but I'd rather be able to actually fix it somehow in the code to not download 2 the same bundles. – DijkeMark Oct 12 '12 at 7:11

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.