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 Sphyx · Sep 26, 2013 at 06:16 AM · gameobjectintantiate

Instantiate a premade GameObject

 using UnityEngine;
 using System.Collections;
 
 public class StartTheBall : MonoBehaviour {
     
     float cacheX;
     float cacheY;
     float cacheZ;
     Quaternion cacheRotation;
     
     // Use this for initialization
     void Start () {
         
     }
     
     // Update is called once per frame
     void Update () {
         
         cacheX = transform.position.x;
         cacheY = transform.position.y;
         cacheZ = transform.position.z;
         cacheRotation = transform.rotation;
         
         if (Input.GetKey(KeyCode.Space))
         {
             Destroy(this.gameObject);
         }
     }
     
     void OnDestroy() {
         Debug.Log("Destroyed!");
         
         GameObject ball = (GameObject)Instantiate(Resources.Load("PlayerBall"), new Vector3(cacheX, cacheY, cacheZ), cacheRotation);
     }
 }


Compiles, the game runs, but then the object is destroyed, instead of creating the premade object, it gives me that:

ArgumentException: The prefab you want to instantiate is null. UnityEngine.Object.CheckNullArgument(System.Object arg, System.String message) (at C:/BuildAgent/work/cac08d8a5e25d4cb/Runtime/ExportGenerated/Editor/UnityEngineObject.cs:103)

The problem, 100% sure is at this line:

GameObject ball = (GameObject)Instantiate(Resources.Load("PlayerBall"), new Vector3(cacheX, cacheY, cacheZ), cacheRotation);

I would appreciate any help!

Comment
Add comment · Show 2
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 GC1983 · Sep 26, 2013 at 06:25 AM 0
Share

Well, its right there. You already know. You cant instantiate an object when the GameObject/script is no longer there to call it.

avatar image Sphyx · Sep 26, 2013 at 04:26 PM 0
Share

So, how do i manage to accomplish that?

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by whydoidoit · Sep 26, 2013 at 04:34 PM

It's no problem instantiating an object there.

So it isn't finding the PlayerBall object in your resources. It is in the root of a folder called Resources? You could also try doing Resources.Load("PlayerBall", typeof(GameObject))

Comment
Add comment · Show 2 · 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 Sphyx · Sep 26, 2013 at 04:43 PM 0
Share

Awesome, problem was folder name! Sorry for that guys, im still learning...

Thanks very mutch for the help!

avatar image GC1983 · Sep 26, 2013 at 05:09 PM 0
Share

Ahh good call. Overlooked the Resources.Load.

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

17 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

Related Questions

Wrong positioning of game objects after instantiating them 0 Answers

using Contains(gameObject) to find and destroy a gameObject from a list 2 Answers

Instantiate randomly from array 1 Answer

Is there currently a problem with .LookAt when using it in a script thats attached to a GameObject vs the Main Camera? 1 Answer

selected object in array lost in translation 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