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 eamonb · Feb 04, 2015 at 08:11 AM · instantiateprefabload

Load a grid of cubes in the scene view before running level?

My game requires a grid of cubes touching one another as the ground and looks something like this alt text

The way I currently implement the grid creation is that I have the following script attached to the camera:

 void Start () 
 {
     float y = 0;
     for (int x=-10; x<10; x++) 
     {
         for (int z = -10; z<10; z++) 
         {
             cube = (GameObject)Instantiate (Resources.Load ("Prefabs/Cube"), new Vector3 (x, y, z), Quaternion.identity);
         }
     }
 }

The problem with this implementation is that the grid isn't displayed until I run the game (which makes it very hard to edit my level because I can only edit it in the scene view when the game is NOT running). Is there any way in Unity to be able to automate the loading of a grid of cubes in the scene (like a script) to be displayed BEFORE running a level and not during? This would save me the tedious work of manually dragging in 100 cubes to be equidistant from each other in the level editor.

ground.jpg (575.8 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

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by GameVortex · Feb 04, 2015 at 08:15 AM

Yes that is quite possible. You will need to learn Editor Scripting. With that you can easily create whatever editor tools you want or need. Take also a look at the manual for extending the editor. Or you can search around the Asset store, there are multiple assets already having that functionality, like this one: http://u3d.as/content/a-lab-software-limited/rapid-unity-array-wizard/1u2

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
avatar image
0

Answer by mhicauber · Feb 04, 2015 at 02:06 PM

Or you can run your level and then pause it. Cubes will be visible in the hierachy, you can copy / paste it in another scene.

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

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

How to reduce time of instantiating a prefab that contains many objects/components in it. 1 Answer

Unespected rotation for Instantiate object 1 Answer

Visualization of saved games inside a Load Menu - Problem with instantiated prefabs 0 Answers

Know when prefab has finished loading after Resources.Load 2 Answers

Terrain: Use as scenario (individual) and prefab (unchanged, reusable) 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