Skip to content

Commit

Permalink
Remove debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
LarsZauberer committed Feb 12, 2021
1 parent f1e6094 commit 39cee11
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Assets/Scripts/Objects/Button.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,13 @@ void FixedUpdate() {

void OnCollisionEnter2D(Collision2D col) {
isActive = true;
Debug.Log("Enter: " + col.gameObject);
}

private void OnCollisionStay2D(Collision2D col) {
isActive = true;
Debug.Log("Stay: " + col.gameObject);
}

void OnCollisionExit2D(Collision2D col) {
isActive = false;
Debug.Log("Exit: " + col.gameObject);
}
}

0 comments on commit 39cee11

Please sign in to comment.