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 SteByte · Jun 05, 2015 at 02:23 PM · editorexecuteineditmodegetcomponentsinchildren

using ExecuteInEditMode to create platforms in the editor

Im trying to create platforms in the editor using the ExecuteInEditMode, witch is a dangerous tool. http://gyazo.com/0eddbff097fe958d112b5360bd200cd0 i haven't finish punting all the bells and whistles in this but the idea is that you select a platform in the array and type in the length of the platform(between 1 and 10 or something) and you get a 1-10 tiles long platform in the editor scene view.

but when i decrease the number of tiles it the editor i get stuck in a infinit loop(I think) and my computer or unity crashes.

 using UnityEngine;
 using System.Collections;
 
 [ExecuteInEditMode]
 public class mapBuilder : MonoBehaviour {
    
     public GameObject[] groundType;
     [Range (1,10)]
     public  int lenght = 3;
 
 
 
     void Update() {
         while(gameObject.transform.childCount != lenght){
             GameObject instaceOfGround =
             (GameObject)Instantiate(    groundType[0],
                                         transform.position,
                                         Quaternion.identity );
             instaceOfGround.transform.SetParent(gameObject.transform);
         }
 
         if(gameObject.transform.childCount < lenght){
             Transform[] childs;
             childs = GetComponentsInChildren<Transform>();
             foreach(Transform child in childs ){
                 if(child != this.transform)
                     Destroy(child.gameObject);
             }
         }
     }
 
 }



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
1

Answer by Landern · Jun 05, 2015 at 02:26 PM

While loops can be very danguous in particular int he Update method since it's already called every frame. However your problem is that the lenght(should be length) being less then the childCount means the break in the while look will never happen. So make sure you check for that and bail early for your destroy if block.

  using UnityEngine;
  using System.Collections;
  
  [ExecuteInEditMode]
  public class mapBuilder : MonoBehaviour {
     
      public GameObject[] groundType;
      [Range (1,10)]
      public  int lenght = 3;
  
  
  
      void Update() {
          // Add an extra condition on your while loop.
          while(gameObject.transform.childCount != lenght && gameObject.transform.childCount < lenght){
              GameObject instaceOfGround =
              (GameObject)Instantiate(    groundType[0],
                                          transform.position,
                                          Quaternion.identity );
              instaceOfGround.transform.SetParent(gameObject.transform);
          }
  
          if(gameObject.transform.childCount < lenght){
              Transform[] childs;
              childs = GetComponentsInChildren<Transform>();
              foreach(Transform child in childs ){
                  if(child != this.transform)
                      Destroy(child.gameObject);
              }
          }
      }
  }
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 SteByte · Jun 05, 2015 at 03:44 PM 0
Share

I fixed this morning, by simply putting the if loop before the while loop.

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

2 People are following this question.

avatar image avatar image

Related Questions

Weird issue with mesh.Clear() 1 Answer

Script variables filled in editor resetting in play mode 3 Answers

OnGUI() never being called in ExecuteInEditMode script 1 Answer

Fill/populate [SerializeField] automatically via script in editor mode? 3 Answers

How does the particle emitter update in edit mode? 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