Created
September 12, 2020 14:20
-
-
Save snarlynarwhal/9b5b8b56fbd7182e96205974602c37d7 to your computer and use it in GitHub Desktop.
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