FollowMouse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
public class FollowMouse : MonoBehaviour | |
{ | |
public float positionZ = 0; | |
private void Update() | |
{ | |
Vector3 mouseWorldPosition = Camera.main.ScreenToWorldPoint(Input.mousePosition); | |
mouseWorldPosition.z = positionZ; | |
transform.position = mouseWorldPosition; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment