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

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?