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 /
  • Help Room /
avatar image
1
Question by doobry · Feb 21, 2018 at 06:41 PM · prefabprefab-instance

Weird behavior of prefabs generated and saved in a folder using C# script

I'm trying to generate a grid of square planes ("tiles") for my game. My goal is to generate instances of the tile prefab using a script and automatically save them inside a folder.

I prepared a prefab for a single tile and I'm trying to use the following code:

 void GenerateSquare(int side_length){
         int counter = 0;
         int i = 0;
         while(i < side_length){
             int j = 0;
             while(j < side_length){
                 GameObject new_tile = Instantiate(TILE_PREFAB);
                 new_tile.transform.position = new Vector3Int(i, 0, j);
                 new_tile.transform.localScale = new Vector3(0.1f, 0.1f, 0.1f);
 
                 Object prefab = PrefabUtility.CreateEmptyPrefab("Assets/Arena_20x20_prefabs/"+new_tile.gameObject.name+i+j+".prefab");
                 PrefabUtility.ReplacePrefab(new_tile.gameObject, prefab, ReplacePrefabOptions.ConnectToPrefab);
                 print ("created " + counter);
                 print ("position " + i + "," + j);
                 counter++;
                 j++;
             }
             i++;
 
         }
     }


The result of running the game in Unity Editor is pretty weird.

In the game preview screen I can see a nice 20x20 grid of tiles. Everything seems to be generated correctly:

alt text

Then I go to the Hierarchy tab and notice that something might not be right. The text of most tiles that land in the hierarchy tab is formatted in blue, but there are 10 tiles formatted in red (coordinates (1,10) to (1,19))

After I stop the game preview and go to the "Arena_20x20_prefabs" folder, I can only find 390 objects there. The ten previously highlighted in red are missing. After moving the 390 objects to the scene, the grid looks like this:

alt text

Does anyone have any idea what goes wrong here?

przechwytywanie3.png (241.2 kB)
przechwytywanie2.png (150.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

0 Replies

· Add your reply
  • Sort: 

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

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

Related Questions

After being instantiated once and then destroyed, prefab is null 0 Answers

Changing Values in Inspector Only Takes Effect After Playing the Scene Twice? 0 Answers

PrefabUtility.RevertPrefabInstance() not working 2 Answers

how to change a texture on instantiated prefab? 0 Answers

Call method on prefab without instantiating 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