• Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
  • Help Room /
avatar image
0
Question by jayantsoni002 · Apr 21, 2017 at 11:33 PM · bundles

AssetBundle : Can anybody tell what's wrong in my code

This is my code. What I need to do is call ReturningRequested Function to work from another script. When I access bundle in returningRequested and call it from start() it works.

When I call it from my script that has been assigned to an emptyobject in UI, it shows

NullReferenceException: Object reference not set to an instance of an object ServerDownloadManager.ReturningRequested () (at Assets/ServerDownloadManager.cs:41) SceneValues.InstantaniateLizardexamplewithanimationcontrols (Int32 storynumber) (at Assets/Scripts/SceneValues.cs:190) SceneValues.Start () (at Assets/Scripts/SceneValues.cs:65)

Please do guide me should I create a new instance and call it OR Should I find it with findobjectoftype. From ReturningRequested() I am planning to return bundle.loadasset() in the future.

 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
 
 public class ServerDownloadManager : MonoBehaviour {
 
     public string bundleUrl;
 
 
     static AssetBundle bundle;
     // Use this for initialization
     IEnumerator Start () {
 
         WWW www = new WWW(bundleUrl);
         yield return www;
 
         if(www.error!= null){
             throw new System.Exception("There is an error" + www.error);
         }
 
         bundle = www.assetBundle;
         print(bundle.GetAllAssetNames()[0]+ "Asset Name1");
     //    Instantiate(bundle.LoadAsset("Lizard"));
 
     //    ReturningRequested("Hello");
 
     }
 
 
     public static void ReturningRequested(){
 
         print(bundle.GetAllAssetNames()[0]+ "Asset Name2");
     }
 }

Comment
Add comment · Show 1
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image jayantsoni002 · Apr 21, 2017 at 11:41 PM 0
Share

Anybody Please. Just a hint.Anybody Online

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Welcome to Unity Answers

The best place to ask and answer questions about development with Unity.

To help users navigate the site we have posted a site navigation guide.

If you are a new user to Unity Answers, check out our FAQ for more information.

Make sure to check out our Knowledge Base for commonly asked Unity questions.

If you are a moderator, see our Moderator Guidelines page.

We are making improvements to UA, see the list of changes.



Follow this Question

Answers Answers and Comments

99 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Large bundles caching problem 0 Answers

What's wrong with AssetBundles Build Pipeline & Conditional Compilation? 0 Answers

Asset bundle downloading twice 0 Answers

DownloadDependenciesAsync does not complete 0 Answers

Build game with asset bundle marked assets 0 Answers

  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges