Make trigger be activated only by the player

How to the collider be triggered only by the player?

Do determine the object you just collided with you can examine the Collider passed to the function or more specific the gameobject like in my example.

C#:

	void OnTriggerEnter(Collider c){
		if(c.gameObject.name == "Player")
			Debug.Log ("Player triggered");
		else
			Debug.Log ("Something else triggered");
	}

You should try to search for your question first, but here you are anyway:

function OnTriggerEnter (other : Collider) {
if(other.tag == "Player") {
//DO SOMETHING
}
}