using MontanaJohns.Actors; using System.Collections; using System.Collections.Generic; using UnityEngine; public class BoobyTrap : MonoBehaviour { private void OnTriggerEnter2D(Collider2D collision) { if (collision.gameObject.tag == "Player") { gameObject.GetComponent().sprite = null; //TODO spawn the boulder } } }