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 ChrisBliss · Aug 20, 2016 at 10:09 AM · serializationscriptableobjectinheritance

SubClass Reference becomes BaseClass after Serialization

I hope the title is not misleading because I assume it has to do with Serialization

I have a ScriptableObject Asset-file that stores data for a tool Im writing.

 public class Graph : ScriptableObject {
      public List<GraphObject> graphObjects = new List<GraphObject> ();
 }

And a Base <----> Subclass structure

 [System.Serializable]
 public class GraphObject {
       [...] variables that work and get serialized fine[...]
 
      public void RegisterEvents () {
           GraphEditor.OnGraphUpdate += OnGraphUpdate;
      }
 
      protected virtual void OnGraphUpdate () { 
           Debug.Log("BaseclassReceivesUpdate");
      }
 }

 [System.Serializable]
 public class GraphNode : GraphObject {

      protected override void OnGraphUpdate () {
           Debug.Log("SubclassReceivesUpdate");
      }
 }

I now store a new GraphObject in the Graphs List but as Subclass and call RegisterEvents();

 GraphNode node = new GraphNode ();
 graphObjects.Add (node);
 node.RegisterEvents();

This actually calls the RegisterEvents(): on the Base class but adds the subclasses override OnGraphUpdate to the event. This is intended! Because when I now fire the event the subclass Updates. The base does nothing.

The problem is, when I now close the editor (I do set the Graph Dirty and Save etc. That part works) and re-open it, the List doesnt hold the subClasses anymore, but the base class Type. (Obviously the same as the Type the List was declared with).

When I now look through the List a GetType(); doesn't return "GraphNode" anymore but "GraphObject". RegisterEvents() called on a list-entry will now register the base classes "OnGraphUpdate" and prints "BaseClassUpdate". This is not what I want. I want to keep the reference to the subclass that I originally stored in the list and not have it changed to its baseClass type.

Did the re-serialization somehow do this? Because without editor restart it works fine. Is what I'm trying to do even possible that way?

As a possible solution I will try to create an Interface and store that in a List<[Interface]>. Because the whole point is that I dont want to know whats in that list. I want people to create their own Nodes and just derive from GraphObject. And the system automatically provides them with things like the OnGraphUpdate override method without them having to worry about registration etc

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

53 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

Related Questions

ScriptableObject error with Inheritance 2 Answers

Wrong serialization when using ScriptableObject + [System.Serializable] + inheritance 2 Answers

Scriptable Object List values are always null 1 Answer

Calling a derived class (Serialized in a Scriptable Object) returns the super class. 1 Answer

Manually Save/Load Unity Serialization Data 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