Answers for "Unity Make a 2D object look at the mouse position"

C#
1

unity 2d how to set an object or the mouse position

Vector2 mousePos = new Vector2(camera.ScreenToWorldPoint(Input.mousePosition.x), camera.ScreenToWorldPoint(Input.mousePosition.y));
Posted by: Guest on February-26-2021
0

Unity Make a 2D object look at the mouse position

public class LookAtMouse : MonoBehaviour
{
    void Update()
    {
        Vector3 mousePosition = Camera.main.ScreenToWorldPoint(Input.mousePosition);
        
        Vector2 direction = mousePosition - transform.position;
        float angle = Vector2.SignedAngle(Vector2.right, direction);
        transform.eulerAngles = new Vector3 (0, 0, angle);
    }
}
Posted by: Guest on October-01-2021

Code answers related to "Unity Make a 2D object look at the mouse position"

C# Answers by Framework

Browse Popular Code Answers by Language