I’m trying to make something happen when I am touching a tag and pressing a key but its not working.
void OnTriggerEnter(Collider other)
{
if (other.gameObject.tag == "House1" && Input.GetButtonDown("Interact")) {
Nothing happens when I try this, If I remove the Input.GetButtonDown it does let me enter it without pressing a button.