Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 /
  • Help Room /
avatar image
0
Question by liuxuqing11 · Nov 03, 2015 at 08:50 AM · unity 5instantiatearrayarray of gameobjects

Instantiate prefabs at different position

hi guys. i have an array containing 3 different prefabs, and each prefab have its own position. Right now i could only instantiate them at one position. I want to know is there anyway i could set them at a specific position? like [o] at new vector3(0,0,0) [1] at new vector3(1,1,1) Thanks in advance!

ps. this is my code. public GameObject[] drops; for (int i = 0; i < drops.Length; i ++) {

         Debug.Log(drops[i].ToString());
         Instantiate(drops[i],transform.position, transform.rotation);

         yield return new WaitForSeconds(waitTime);
         }
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 Fire_Cube · Nov 03, 2015 at 09:26 AM 0
Share

in the instantiate method, you can specify the position of the objec. Ifit don't work, change the transform.position of the returned gameobject by the instantiate method : Gameobject go = Instantiate(prefab, position, rotation); go.transform.position = position;

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by LynoHD · Nov 03, 2015 at 10:58 AM

 GameObject drop Instantiate(drops[i],transform.position, transform.rotation) as GameObject;
 drop[0].transform.position = new vector3(1,1,1);

I THINK this should work

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 liuxuqing11 · Nov 04, 2015 at 01:01 AM 0
Share

hi thanks for the reply! I've tried your code but it didnt work it just appear on the gameobject(the empty object i placed my script in) position ins$$anonymous$$d of vector3 1,1,1.

avatar image
0

Answer by Garazbolg · Nov 03, 2015 at 09:32 AM

When instantiating you can specify the position with the second argument of the function :

 Instantiate(yourPrefab, thePosition, theRotation);

You're actually already doing it but you're probably not moving the GameObject which has this script (transform.position refer to the position of that GameObject).

See for more informations : Instantiate Documentation

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 liuxuqing11 · Nov 04, 2015 at 02:27 AM 0
Share

thanks for the reply! yea, but i want to set different position for different prefabs, but right now i can only set it all in one position

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

7 People are following this question.

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

Related Questions

save one big json string vs multi seperate json strings in playerprefs 0 Answers

How to compare a position of an object within an array 1 Answer

Instantiate Object in camera View 0 Answers

bullet holes parenting 1 Answer

how to Import unity3d project to an existed ios native app 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