21 lines
370 B
C#
21 lines
370 B
C#
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!");
|
|
}
|
|
}
|