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() { // Logging.Debug("Yey I was clicked!"); } }