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 turgoz · Oct 21, 2011 at 11:49 PM · c#gameobjectarray

Read different game objects into array at same time?

How do I read different GameObjects into a GameObject array all at once in C#? I tried the syntax "GameObject[] EnemyWaveW1 = new int[] { 1, 3, 5, 7, 9 };" but it is throwing me an error. Unexpected Symbol '{'

 public class EnemySpawnerScript : MonoBehaviour {
 
 //These are assigned to prefabs through the inspector
 
         public GameObject ENM_1;
         public GameObject ENM_2;
         public GameObject ENM_3;
        
         GameObject[] EnemyArrayW1 = new GameObject[3];       
        
        
         // Use this for initialization
         void Start () {
                 //I COULD read in each GameObject separately, but how do I do it all at once?
                 EnemyArrayW1[0] = ENM_1;
                 EnemyArrayW1[1] = ENM_2;
                 EnemyArrayW1[2] = ENM_3;
 }
  
         
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 syclamoth · Oct 22, 2011 at 12:25 AM 1
Share

I'm not sure what you mean, here. Logically, there isn't any way of doing this, unless you know some pattern of how the objects are going to appear, or are using some function like GetComponentsInChildren! As, @gruhm says, for your specific example, you should just make the array public and do it in the inspector, but in a more general case what you are trying to do here is really not straightforward.

2 Replies

· Add your reply
  • Sort: 
avatar image
2

Answer by gruhm · Oct 21, 2011 at 11:54 PM

You could simply make the array of gameobjects public and drop them in via the inspector:

 public GameObject[]  EnemyArrayW1;
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 Bunny83 · Oct 22, 2011 at 12:35 AM 0
Share

exactly, that's what arrays are made for :D. If you have seperate variables they can't be treated as one thing (well with reflection it would be possible but it wouldn't be simpler then using just an array).

avatar image turgoz · Oct 22, 2011 at 05:20 AM 0
Share

ahh that makes a lot of sense, thank you!

avatar image
0

Answer by TukangSendal · Nov 05, 2019 at 07:13 AM

just add simply array, and go drop your game object via inspector

 public GameObject[] EnemyArray;
Comment
Add comment · 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

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

6 People are following this question.

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

Related Questions

How to put gameObjects to the list? 4 Answers

How to modify specific GameObjects in an array of GameObjects? 1 Answer

Make an array of all visible objects 1 Answer

2D array of GameObjects C# 2 Answers

How do I create / Instatiate an array of GameObjects in C# 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