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
0
Question by LRP · Apr 24, 2019 at 06:00 PM · serializationdatabasegeneric

Serialize a List of generic key value pair in a ScriptableObject

Hi,

I am trying to use ScriptableObjects as databases by storing lists of indexed values. As dictionary are not natively serializable I tried using lists like so

     [System.Serializable]
     public class TableEntry<T>
     {
         public string key;
         public T value;
     }
     
     public abstract class DataTable<T> : ScriptableObject
     {
         public List<TableEntry<T>> entries;
     }
 
     [CreateAssetMenu(menuName = "ObjectTable")]
     public class ObjectTable : DataTable<object>
     {
         public string GetKey(object value)
         {
             for (int i = 0, j = entries.Count; i < j; i++)
             {
                 if (entries[i].value == value)
                 {
                     return entries[i].key;
                 }
             }
             return null;
         }
     
         public object GetValue(string key)
         {
             for (int i = 0, j = entries.Count; i < j; i++)
             {
                 if (entries[i].key == key)
                 {
                     return entries[i].value;
                 }
             }
             return null;
         }
     }
 

But whatever I do Unity seems to refuse serializing containers of generic types. I tried different solutions but I always end up breaking the genericity or with no serialization at all.

Is there a known workaround for this ?

Thanks

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
0

Answer by Bunny83 · Apr 25, 2019 at 12:07 AM

Unity's serializer does not support generic types. The serialization happens on the native C++ side. Every type has to be non generic in order to be serialized. Further more the "object" types (System.Object) is not supported as well since the serialization happens based on values, not references. It also doesn't support inheritance / polymorphism for custom serializable classes (since the fields are serialized by values based on the field type).


If you need inheritance, you have to use either ScriptableObjects or MonoBehaviours as they are the only classes which support inheritance. Though those classes need to be serialized seperately.


See the manual for more information

Comment
Add comment · Show 2 · 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 Bunny83 · Apr 25, 2019 at 12:08 AM 0
Share

Since you haven't said what you need your "ObjectTable" for we can not suggest any workarounds.

avatar image LRP Bunny83 · Apr 25, 2019 at 01:38 PM 0
Share

This is pseudo code, the object table is juste a exmple of derivation from the DataTable class. Could be a string table or custom type table or anything else

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

111 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

Related Questions

List of custom classes in MonoBehaviour's Data gets lost after Re-Opening Unity!!! 0 Answers

(SOLVED) Serializing different JSON objects, contained in an array, in another JSON object. (C#) 2 Answers

Where can I find the default "serialized data" files that Unity save and load during run-time / editor time from the inspector? 0 Answers

Serialize loads of different data 0 Answers

Help saving Voxel Terrain between scenes 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