add MouseScrollDelta support to InputManager

This commit is contained in:
Sinai
2021-04-22 03:57:11 +10:00
parent 29b453dc91
commit 31fa786574
5 changed files with 32 additions and 5 deletions

View File

@ -8,6 +8,7 @@ namespace UnityExplorer.Core.Input
public class NoInput : IHandleInput
{
public Vector2 MousePosition => Vector2.zero;
public Vector2 MouseScrollDelta => Vector2.zero;
public bool GetKey(KeyCode key) => false;
public bool GetKeyDown(KeyCode key) => false;