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 Levantez · Aug 26, 2012 at 05:49 PM · gameobjectcoroutinespawndeletearraylist

Deletion Sequence issue

Hi, I have some problem with this code

 public void FormTileIslandArray()
     {    
         ClearIsland();
         
         for( CardAtt.COLORS color = CardAtt.COLORS.RED; color< CardAtt.COLORS.LENGTH; color++ )    
         {
             for( CardAtt.NUMBERS number = CardAtt.NUMBERS.ONE; number< CardAtt.NUMBERS.LENGTH; number++ )
             {
                 SpawnTileIsland( number, color );
             }
         }
     }
     
     public void ClearIsland()
     {
         foreach( GameObject tileIsland in GameObject.FindGameObjectsWithTag("tileIsland") )
         {
             DestroyObject(tileIsland);
         }
     }

The code was suppose to delete away all of the existing TileIsland Gameobjects before going into a Spawn sequence.

However, all of the TileIsland didn't get deleted before going into spawn sequence, so it caused unwanted errors.

I tried Coroutine, and it didn't helped.

TileIsland is only meant to store list of tiles data. The reason that I made TileIslands into GameObjects, was so that I can check their data in the inspector. If I made Tile Island into an ArrayList instead, I don't know how to check what's inside.

Can anyone suggest me an alternative way to solve this? THX in advance.

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

Answer by CHPedersen · Aug 26, 2012 at 06:36 PM

I think this happens because Destroy doesn't destroy the objects right away, it only schedules them for destruction which occurs after the update loop, see link for more information.

Try with DestroyImmediate and see if that results in the desired behavior.

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 CHPedersen · Aug 26, 2012 at 06:40 PM 0
Share

You're welcome, glad you got it working. :)

avatar image
0

Answer by Levantez · Aug 26, 2012 at 06:39 PM

THX Christian, I just checked around and found that I can get the data to appear in the inspector by using using System.Collections.Generic; [System.Serializable] It worked better for me this way now. None the less, Thank you for your reply

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

8 People are following this question.

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

Related Questions

How do you Place/Spawn a GameObject or Prefab in front of Player 2 Answers

Spawn Script 1 Answer

How can I change the index of an array object? 2 Answers

Makes object appear and disappear after a few seconds 3 Answers

object spawn on trigger 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