Question by
IndiaVenom · Mar 27, 2021 at 03:29 PM ·
editorunityeditor
How do I add parent class values to the unity editor for a child?
I have public abstract class foo : MonoBehaviour { public static int fireRate; }
I also have public class foo2: foo { ... }
I am trying to be able to edit fireRate from Unity's editor. How would I do this?
Comment