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 Rtakasas · Apr 24, 2015 at 03:47 PM · instantiate-game-object

Instantiate as a child properly

So I found need to Instantiate a prefab as a child of object, but i'm not sure how it is done and I am always getting an error:

NullReferenceException: Object reference not set to an instance of an object Player_Statistics.Update () (at Assets/Scripts/Player_Statistics.cs:23)

Evolved form of Base_Player is created, but it is not a child of "Player". The script I have:

 using UnityEngine;
 using System.Collections;
 
 public class Player_Statistics : MonoBehaviour {
 
     public static int evolution_points;
     public int level;
     public Rigidbody2D evolution;
 
     // Use this for initialization
     void Start () {
         evolution_points = 0;
         level = 0;
     }
     void Update (){
         if (evolution_points >= 5) {
             evolution_points = 0;
             Debug.Log ("Level up!");
             foreach (Transform child in transform) {
                 GameObject.Destroy (child.gameObject);//destroy all childs
                 //creates evolved form of player at the same hierarhy possition
                 Transform evolved_player = Instantiate(evolution, child.position, child.rotation) as Transform;
                 evolved_player.parent = gameObject.transform;
                 return;
                  }
         }
     }
 }

Before playing game I have:

alt text

alt text

Please do not hesitate to give any tips, thanks in advance.

screenshot-2015-04-24-151939.png (40.4 kB)
screenshot-2015-04-24-151946.png (39.6 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
1
Best Answer

Answer by steakpinball · Apr 24, 2015 at 07:39 PM

There are a couple issues. Prefab references should be of type GameObject. Change the evolution field to that

 public GameObject evolution;

You need to then cast it to GameObject when you instantiate it.

 GameObject evolved_player = Instantiate(evolution, child.position, child.rotation) as GameObject;
 evolved_player.transform.parent = transform;
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 Rtakasas · Apr 24, 2015 at 08:09 PM 0
Share

Thanks, works flawlessly.

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

AddForce not working on Instantiated Object 0 Answers

Instantiate script for randomly selecting sound is suddenly creating New Game Object in hierarcy?? 2 Answers

[4.6] Instantiating an object within a ScrollView makes the object invisible 0 Answers

Equivelant "set" method for "getInstantiatedObject"? 0 Answers

Unable to instantiate Objects One Below another. 2 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