Editor Inheritence Nesting #1931
-
Hi All, sorry for the incessant questions. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Can you send the |
Beta Was this translation helpful? Give feedback.
-
Thanks for getting back to me. While writing this I did wonder if it has to do with setting the default values. But I use the same method in Level 1 and 2. The classes all follow the same pattern. All data except for a method to set the noise parameters.
Level 2 is the NoiseType abstract class and Perlin etc inherit from that.
Concrete noise type.
Level 3 is the FractalType and the DomainWarpType abstract classes. The are the same structure.
And the concrete class
There is a Level 4 that just follows the same pattern.. |
Beta Was this translation helpful? Give feedback.
You need to put DataContract on your abstract classes as well. Otherwise we don't generate serializers for those classes and any member defined in your base class is omitted from runtime.