diff --git a/OWML.Launcher/OWML.Manifest.json b/OWML.Launcher/OWML.Manifest.json index 349c4950..eece9be7 100644 --- a/OWML.Launcher/OWML.Manifest.json +++ b/OWML.Launcher/OWML.Manifest.json @@ -2,6 +2,6 @@ "author": "Alek", "name": "OWML", "uniqueName": "Alek.OWML", - "version": "0.3.51", + "version": "0.3.52", "description": "The mod loader and mod framework for Outer Wilds" } diff --git a/OWML.ModHelper/ControllerButton.cs b/OWML.ModHelper/ControllerButton.cs index d47cd89a..5f514368 100644 --- a/OWML.ModHelper/ControllerButton.cs +++ b/OWML.ModHelper/ControllerButton.cs @@ -1,12 +1,18 @@ using OWML.ModHelper.Events; using UnityEngine; +using UnityEngine.UI; namespace OWML.ModHelper { public class ControllerButton : MonoBehaviour { + private Button _button; + private SingleAxisCommand _inputCommand; + public void Init(SingleAxisCommand inputCommand) { + _button = GetComponent