The Problem is default references not getting applied to the child class
I have a scriptable object called parent which contains another scriptable variable data
[CreateAssetMenu(menuName = "parent Data")]
public class Parent : ScriptableObject
{
[SerializeField]Data data;
}
and I have 100 children who wanna access data and inherits from parent
example
[CreateAssetMenu(menuName = "child")]
public class child1 : Parent
{
}
when I set default reference for the parent class it is getting set
but it is not getting set in the child
,