detect mouse in bottom of screen + unity

Code Example - detect mouse in bottom of screen + unity

                
                        //Quick and dirty
private void Update()
{
	Vector3 mousePos = Camera.main.ScreenToWorldPoint(Input.mousePosition);

  if (mousePos.y < 0)
  {
      Debug.Log("Mouse in bottom");
  }
}