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 /
avatar image
0
Question by fredkoto · Dec 20, 2017 at 05:38 PM · random.rangeinstantiate prefabplatforms

Instantiate 4 prefabs at 4 locations, shuffled

What I have are 4 platforms that I instantiate at 4 locations. What I want is for the platforms to be shuffled every time. My code so far:

 using UnityEngine;
 
 public class PlatformCreator : MonoBehaviour {
 
     public GameObject[] platforms;
     public Transform[] points;
 
     private void Start()
     {
 
         for (int i = 0; i < points.Length; i++)
         {
             Instantiate(platforms[i], points[i].position, Quaternion.identity);
         }
     }
 }

For example the platforms now always spawn in the same order - pink, yellow, blue, purple

I want them to be spawned in different order every time, for example - yellow, blue, purple, pink. I've tried creating an int index with random.range, but I am messing something up.

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
Best Answer

Answer by Larry-Dietz · Dec 20, 2017 at 06:28 PM

Try something like this...

 public void Shuffle()
     {
         GameObject tmp;
 
         for (int i = 0; i < 100; i++)
         {
             int a = Random.Range(0, platforms.Length);
             int b = Random.Range(0, platforms.Length);
             
             tmp = platforms[a];
             platforms[a] = platforms[b];
             platforms[b] = tmp;
         }
     }

Then add a call to Shuffle in start before your loop.

I haven't tested this. I normally use List instead of an array, and i know this method will work with a list. I just modified it for an array off the top of my head. If it doesn't work, let me know.

I'm always ending up with off by 1 errors, so if you get an index out of bounds error, change the .Length lines in the Random.Range to .Length - 1

Hope this helps, -Larry

Comment
Add comment · Show 4 · 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 fredkoto · Dec 20, 2017 at 07:27 PM 0
Share

I don't $$anonymous$$d using a list ins$$anonymous$$d of an array. How would go about creating this with a List, ins$$anonymous$$d of an Array?

avatar image Larry-Dietz fredkoto · Dec 20, 2017 at 07:37 PM 0
Share

Either way is fine.. But if you want to use a list, change your declaration to public List platforms = new List();

then in the Shuffle routine, change the .Length to .Count

Let me know if you have any problems with this. -Larry

avatar image fredkoto Larry-Dietz · Dec 20, 2017 at 08:29 PM 0
Share

It actually works both with Lists and Arrays! it's a great method, would you please explain how this exactly works? I'm having a hard time understanding it. Thanks!

Show more comments

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

72 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

Related Questions

Instantiated Object does not fall 3 Answers

Instantiate Prefab Gameobject vs Transform 2 Answers

Prefab attached to script is destroying itself before Instantiate() is called 1 Answer

Spawn a prefab off screen? 1 Answer

Instanciate prefab responsively 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