Bonjours sa fait plusieurs jours que j'essaye de reussir ce probleme avec unity3d il me dise
NullReferenceException: Object reference not set to an instance of an object sur la ligne 79
je comprend pas ce qui doit etre changer aider moi plz
72 /// <summary>
73 /// Updates the card with the specified card information.
74 /// </summary>
75 /// <param name="card">Card to display a preview of.</param>
76 public void SetCardData(int cardId)
77 {
78 Card = GameManager.Instance.GetCard(cardId);
79 Image.sprite = Resources.Load<Sprite>(Card.GetStringAttribute("Image"));
80 CostText.text = Card.GetIntegerAttribute("Cost").ToString();
81 NameText.text = Card.Name;
82 BodyText.text = Card.GetStringAttribute("Text");
83 if (Card.Definition == "Creature")
84 {