• 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
Question by DJ_Design · Nov 25, 2014 at 05:49 AM · instantiatelistprefabs

Instanting prefabs at a point then storing them in a list

Hello, Ive got this error and i can't figure it out, I'm new to scripting so bear with me if this is (and probably will be) a incredibly easy fix.

I want to be able to create a prefab at a set location when a button is pressed, (In this case spawnpoint1).. Then, add it to the list of floors for later uses. Ive put an hour in to rearranging code and trying different things and ive just decided to come to you lovely people as i'm sure this is a minuscule problem.

 using UnityEngine;
 using System.Collections;
 using System.Collections.Generic;
 
 public class creation : MonoBehaviour {
     //currency
     public float money=0.0f;
     //build menu
     public bool menu=false;
     //building
     public List<GameObject> floors = new List<GameObject>();
 
     [SerializeField] Transform floorFab;
     
 
     void Start () 
     {
 
     }
 
     void Update () {
 
         if (Input.GetKeyDown(KeyCode.Tab)) {
             menu = !menu;
         }
     }
     
 
     void OnGUI() {
 
         if (menu) 
         {
             GUI.Box (new Rect (0, 0, 100, 500), "Menu");
             GUI.Label(new Rect(10,25,100,25), "$"+money);
 
             if(GUI.Button(new Rect(0, 50, 100, 20), new GUIContent("Floor 1:", "Price: $100"))){
                 GameObject floor = (GameObject) Instantiate(floorFab, GameObject.Find("spawnpoint1"));
                 floors.Add(floor);
             }
             GUI.Label(new Rect(120, 25, 100, 40), GUI.tooltip);
             GUI.tooltip = null;
             
         }
     }
 }
Comment

People who like this

0 Show 0
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

  • Sort: 
avatar image
Best Answer

Answer by HarshadK · Nov 25, 2014 at 05:50 AM

Your Instantiate() function has invalid arguments. It should be:

 GameObject floor = (GameObject) Instantiate(floorFab, GameObject.Find("spawnpoint1").transform.position, Quaternion.identity);

In this above line of code the floorFab will be instantiated at the position of the spawnpoint1 game object. I guess this is what you want.

Note: Whenever you get an error always post the exact error message from console for others to know the exact error so that people don't have to keep on guessing and trying to find out where the error might be.

Comment
DJ_Design
Grish

People who like this

2 Show 3 · 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 DJ_Design · Nov 25, 2014 at 06:26 AM 0
Share

I tried your code and, as it is working the way i would like it to, i'm getting an error message when i press the button: "InvalidCastException: Cannot cast from source type to destination type"

I'm thinking this has something to do with the source of the object i'm trying to spawns location in the project window? perhaps if i changed 'GameObject' to 'Transform' i could clear it up

avatar image HarshadK · Nov 25, 2014 at 06:29 AM 0
Share

Your type of your floorFab variable should be GameObject.

avatar image DJ_Design · Nov 25, 2014 at 06:34 AM 0
Share

I actually managed to fix it BY changing floorFab to Transform instead of a GameObject, my project setup is somewhat scattered for a 5 minute rush-mock-up, But it seemed to work out in my favor in the end. Thanks for helping HarshadK, Appreciate it.

Unity Answers is in Read-Only mode

Unity Answers content will be migrated to a new Community platform and we are aiming to launch a public beta by June 9. Please note, Unity Answers is now in read-only so we can prepare for the final data migration.

For more information and updates, please read our full announcement thread in the Unity Forum.

Follow this Question

Answers Answers and Comments

2 People are following this question.

avatar image avatar image

Related Questions

A node in a childnode? 1 Answer

Problem not remove all prefab from list aftre the instantiate 1 Answer

Cannot cast from source type to destination type when trying to add Prefab instantiate to a list 0 Answers

change value of prefab field in a array of prefabs 0 Answers

How to get the position of a new Instantiated prefab 1 Answer


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