Jump to content
Unity Insider Forum

NullReferenceException Error


Mozart53

Recommended Posts

Ich will Meine Text UI anzeigen lassen.

 

 (playermove klasse) private void OnTriggerEnter(Collider other)
    {
        if (other.gameObject.tag == "NPC")
        {
            Debug.Log("s"); //das debug hier funktioniert noch

            FindObjectOfType<UIManager>().EnableA(true);
        }
    }

    private void OnTriggerExit(Collider other)
    {
        if (other.gameObject.tag == "NPC")
        {
            FindObjectOfType<UIManager>().EnableA(false);
        }
    }
}


 public class UIManager : MonoBehaviour
{
    public GameObject Text;

    public void EnableA(bool enable)
    {
        Text.SetActive(enable);
    }
}

Error: Object reference not set to an instance of an object
PlayerMove.OnTriggerEnter (UnityEngine.Collider other) (at Assets/Scripts/PlayerMove.cs:35)

Screenshot (43).png

Link zu diesem Kommentar
Auf anderen Seiten teilen

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Gast
Auf dieses Thema antworten...

×   Du hast formatierten Text eingefügt.   Formatierung jetzt entfernen

  Only 75 emoji are allowed.

×   Dein Link wurde automatisch eingebettet.   Einbetten rückgängig machen und als Link darstellen

×   Dein vorheriger Inhalt wurde wiederhergestellt.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Lädt...
×
×
  • Neu erstellen...