diff --git a/Assets/Hamster/Scripts/PlayerController.cs b/Assets/Hamster/Scripts/PlayerController.cs index 9400bde..d7ebf6d 100644 --- a/Assets/Hamster/Scripts/PlayerController.cs +++ b/Assets/Hamster/Scripts/PlayerController.cs @@ -39,7 +39,7 @@ public class PlayerController : MonoBehaviour { void Start() { IsProcessingDeath = false; HitPoints = kInitialHitPoints; -#if UNITY_EDITOR +#if UNITY_EDITOR || UNITY_STANDALONE //Development-only on Mac OS X, Windows or Linux inputController = new InputControllers.KeyboardController(); #else inputController = new InputControllers.TiltController(this);