public class School : ScriptableObject
{
public string schoolName;
public Club[] clubs;
}
[Serializable]
public class Club
{
public string clubName;
public Student[] clubMembers;
}
[Serializable]
public class Student
{
public string studentName;
}
I’m trying to make an EditorWindow to display this ScriptableObject.I want to use two ListView to achieve that when one option in the Club List is selected, all students can be displayed in another Club Members List.But i can’t implement the Club Members List because of data binding problem.