using Input; using UnityEngine; public class ScrapbookController : MonoBehaviour { private void OnEnable() { InputManager.Instance.SetInputMode(InputMode.UI); } private void OnDisable() { InputManager.Instance.SetInputMode (InputMode.Game); } public void DebugClick() { Debug.Log("Yey I was clicked!"); } }