detect mouse in bottom of screen + unity code example
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");
}
}