using System.Collections; using System.Collections.Generic; using UnityEngine; public class collusion : MonoBehaviour { void OnCollisionEnter2D() { Debug.Log("hutto"); } void OnTriggerEnter2D(Collider2D other) { Debug.Log("what was that?????"); } }