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 superlevani · Mar 25, 2014 at 04:02 PM · editorserializationsaveserialize

object list not serializing

i have an editor window that modifies variable of scene gameobject. the variable was List and it was working fine, but then i changed modified the code and i needed it to be List. and now it's not serializing (it's cleared when entering play mode).

 //Before
 [SerializeField]
 public List<GameObject> returnValues;
 
 //After
 [SerializeField]
 public List<object> returnValues;

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

Answer by frarees · Mar 25, 2014 at 04:44 PM

You can't serialize object. Make a List of a serializable object type instead e.g. Vector3, int, float, ... check this.

If you want to hold custom classes e.g. MyData make sure you mark the class as Serializable i.e.:

 [System.Serializable]
 public class MyData {
     public int intValue;
     public UnityEngine.Object objectValue;
     public float floatValue;
     public string stringValue;
     ...
 }

 [SerializeField]
 List<MyData> returnValues;


Comment
Add comment · Show 4 · 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 superlevani · Mar 25, 2014 at 04:47 PM 0
Share

but i need a list that will hold different values (string, int or GameObject in my case). why object can't be serialized?

avatar image frarees · Mar 25, 2014 at 04:53 PM 0
Share

Unity won't be able to render object to disk, there's no serialized representation for it.

You can't hold different values there unless all of them are inherit from a common serializable class e.g. UnityEngine.Object, where you can hold Texture2D, GameObject, Component...

Also, worth mentioning polymorphic serialization (not officially supported by Unity yet AFAI$$anonymous$$, but you can make it work)

avatar image frarees · Mar 25, 2014 at 05:08 PM 0
Share

I've changed the code snippet so that $$anonymous$$yData can hold the values you want to store. You just need to know which type is each $$anonymous$$yData instance to retrieve it property (as SerializedProperty does, for example)

avatar image superlevani · Mar 25, 2014 at 05:56 PM 0
Share

ok thanks. i will see polymorphic serialization

avatar image
-2

Answer by gamesappstudio · Jul 11, 2017 at 06:58 PM

You can find plugin here (easy to implement ) http:// assetstore.unity3d.com/en/#!/content/94493

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 andybak · Feb 17, 2018 at 03:07 PM 0
Share

That link is dead.

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

24 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

Related Questions

Got a Problem when serializing Class Dictionary with Custom Editor 1 Answer

Don't save gameobjects to scene file (No hide flags) 0 Answers

Save Data from Editor Script, Serialize Nested Class List 1 Answer

SerializedProperty with children class fields 2 Answers

Delete a serialized binary save file 2 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