Collision not working despite settings...

Hi, so here’s the settings for my two objects:

alt text


alt text


And my code, very simply, attached to the first object, Player:

void OnTriggerEnter(Collider col) {
		Destroy(col.gameObject);
	}

Why on earth is this not working? (Note, OnCollisionEnter isn’t working either).

Thanks!

[SOLVED]

The solution was to call OnCollisionEnter2D, as my game is 2D - I was unaware there are 2 collision types.