2d Raycast From Mouse Code Example
Example: unity 2d raycast mouse
// detect object that was clicked using raycast RaycastHit2D hit = Physics2D.Raycast(Camera.main.ScreenToWorldPoint(Input.mousePosition), Vector2.zero); if(hit.collider != null) { Debug.Log ("Target name: " + hit.collider.name); }
Comments
Post a Comment