Помогите, не получается обратиться к классу rect.commentLabel
public class PlantInfoClass
{
public bool enable;
public Vector3 position;
public class PlantInfoRect {public Rect commentLabel, growIcon, growLabel;}
public PlantInfoRect rect;
}
public PlantInfoClass plantInfo;
void Start ()
{
plantInfo = new PlantInfoClass();
plantInfo.rect.commentLabel = new Rect(); //Здесь ошибка
}
Object reference not set to an instance of an object
PlayerController.Start ()
Ссылка на объект не указывает на экземпляр объекта
