My understanding is that these differ in the following examples:
if (gameObject.tag = “Player”) —> means if the G.O. tag equals “Player”
if (gameObject.tag != “Player”) —> means if the G.O. tag does not equal “Player”
if (gameObject.tag == “Player”) —> means ??
Could someone please clarify this for me. Thank you