Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • 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 /
avatar image
0
Question by UnityITdog · Jul 24, 2020 at 03:14 AM · instantiateresources.load

Instantiate prefab (Resources.Load)

I know this question was asked many times, but I still cannot solve it...May I have some suggestions? What I want to do is to instantiate a prefab from resources folder, but it got "ArgumentException: The Object you want to instantiate is null." when instantiating. Here is my codes:

     string path = "Prefabs/AnimatedCharacter/" + _theme+"/"+_wordID;
     print(path); //printed: Prefabs/AnimatedCharacter/attraction/5C71
     var animatedWordPrefab = Resources.Load(path) as GameObject;
     var newWord = GameObject.Instantiate(animatedWordPrefab); //Get error

Target prefab is already placed inside the target folder. alt text

I have no idea why I still getting wrong... Before the above code, I also use similar method to get the CSV, and it doesn't get wrong and work well.

     string path = "CSV/" + _theme;
     print(path);
     TextAsset bookContent = Resources.Load<TextAsset>(path);

I also printed out _theme and _wordID, so I think the problem isn't related to _theme or _wordID...

sharedscreenshot.jpg (32.2 kB)
Comment
Add comment
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

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by tocu-adrian · Jul 24, 2020 at 06:32 AM

Hi, I reproduced your code and it's working:

     private void Start()
     {
         string _theme = "attraction";
         string _wordID = "5C71";
 
         string path = "Prefabs/AnimatedCharacter/" + _theme + "/" + _wordID;
         print(path); 
         var animatedWordPrefab = Resources.Load(path) as GameObject;
         var newWord = GameObject.Instantiate(animatedWordPrefab);
     }

In your case _theme and _wordID are string type ? Or how are you getting this values ? Maybe the problem is here, because if you give the path directly, the code works.

Comment
Add comment · Show 1 · Share
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 UnityITdog · Jul 24, 2020 at 09:30 AM 0
Share

Omg...After I restarted the computer, it's work!! A$$anonymous$$AZING!! $$anonymous$$aybe sometime Unity cannot load resources (Although I tried to restart Unity, it seems that I should restart the computer...) Anyway, thank you very much for your suggestion!! Thank you!

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.

Follow this Question

Answers Answers and Comments

159 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 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

Instantiated object not showing in scene or hierarchy 2 Answers

Load multiple instances of a prefab through code 2 Answers

Instantiating from an object classes GameObject property? 1 Answer

Cannot instantiate gameobject 3 Answers

Problem with missing texture with Instantiate( Resources.load ) method 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges