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 /
avatar image
1
Question by Nelaha · Apr 06, 2020 at 08:45 AM · editorproceduralgeneration

OnValidate changed fields doesnt save after exit the play mode.

Hello. I have the next code (simplified)

 public class MapComponent : MonoBehaviour
 {
      /* Many other fields  - settings*/
     public GameObject tilePivot;
     
     void OnValidate()
     {
         if (Application.isPlaying) return;
         else if( /* Settings changed */)Regenerate();
     }
 
     private void Regenerate()
     {
         if (tilePivot != null) {
             DestroyImmediate(tilePivot);
         }
         tilePivot = new GameObject("Map");
     
 }

When im spawn object in editor, it use regenerate() method to make himself and spawn child objects. Child objects saving as childrens of a "tilePivot". On some parameter changes, script use tilePivot to remove all child objects, and spawn they again. In editor everything work nice.

When im enter to play mode, "tilePivot" value becomes null, but child objects still exists, and at this step everything wok as expected, because object dosent need changes in playmode.

But after exit the play mode, tilePivot is still null and im getting a duplicated objects at next OnValidate event.

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

Answer by andrew-lukasik · Apr 06, 2020 at 10:09 AM

Does calling EditorUtility.SetDirty( this.gameObject ) after Regenerate() helps?

General idea is that Editor won't always register changes to your scene/objects automagically - as a design decision. In such cases programmer is responsible for telling the editor which changes matter (to serialize/save those thus creating adequate undo steps).

More on that here: How-do-I-make-a-scene-dirty-when-modifying-a-property-via-script

Comment
Add comment · Show 3 · 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 Nelaha · Apr 06, 2020 at 10:12 AM 0
Share

Yes it helps.

Can you please make an answer with more complicated info? As i understand this is serialization problem. But tilePivot is a public variable.

avatar image andrew-lukasik Nelaha · Apr 06, 2020 at 11:13 AM 0
Share

tilePivot is public (serializable) but editor didn't noticed it changed it's value ie. "is dirty" (and needs to be saved again)

avatar image Nelaha · Apr 06, 2020 at 10:32 AM 0
Share

Also, Unity documentation, says what SetDirty is deprecated and i must use Undo.RecordObject ins$$anonymous$$d. But it seems doesnt work as SetDirty (doest save fields).

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

170 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 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

Procedural Random Walk Dungeon Generator? 2 Answers

How do I create a relatively simple random 2d city grid? (includes image) 0 Answers

Tile-based Generation Not Working? 1 Answer

Procedurally Generated Room System... 1 Answer

Drunkard Walk Algorithm C# Question 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