Search Unity

Unity Trigger code error help please

Discussion in 'Documentation' started by tetmc2, Jul 24, 2018.

  1. tetmc2

    tetmc2

    Joined:
    Jul 24, 2018
    Posts:
    1
    hi i have got a bit problem i try to make a game like flappy bird but i have got problem i work at on trigger enter code for 3 days
    Code (CSharp):
    1. void OnTriggerEnter2D(Collider2D trigger)
    2.     {
    3.         if(trigger.gameObject.tag=="Trigger")
    4.         {
    5.             Debug.Log("Done");
    6.         }
    7.     }
    this code dont work why i dont understand it please help me!!!
     
  2. Graham-Dunnett

    Graham-Dunnett

    Administrator

    Joined:
    Jun 2, 2009
    Posts:
    4,287
    Do you have "Trigger" as a tag?