I’m trying to script a component that extends from a generic abstract class.
For example:
[AddComponentMenu("MyComponents/MyComponent")]
public class MyComponent : MyBaseComponent<Object>
{
}
public abstract class MyBaseComponent<T> : MonoBehaviour {
}
But it’s not available as a component in the inspector. What am I doing wrong?