Input Handler ===================== .. code-block:: csharp public class InputHandler : MonoBehaviour Class to control most of player input like mouse clicks, hotkeys etc. You can get some useful info from it. For example, this script sometimes casts Ray from Camera, using mouse position on screen. .. code-block:: csharp Debug.Log(InputHandler.CurrentCursorWorldHit.point); // will print you actual position of the world point under cursor.