Fix Linux Playback/Keyboard Bug (#373)

This commit is contained in:
n00btube3D 2023-03-30 20:50:17 +08:00 committed by GitHub
parent 6d2762993b
commit 3239fc16ae
1 changed files with 6 additions and 6 deletions

View File

@ -87,8 +87,8 @@ namespace HeavenStudio
public static InputController GetInputController(int player)
{
// Needed so Keyboard works on MacOS
#if UNITY_STANDALONE_OSX || UNITY_EDITOR_OSX
// Needed so Keyboard works on MacOS and Linux
#if UNITY_STANDALONE_OSX || UNITY_EDITOR_OSX || UNITY_EDITOR_LINUX || UNITY_STANDALONE_LINUX
inputDevices = new List<InputController>();
if(inputDevices.Count < 1)
{
@ -119,8 +119,8 @@ namespace HeavenStudio
//controller IDs are determined by connection order (the Keyboard is always first)
// Needed so Keyboard works on MacOS
#if UNITY_STANDALONE_OSX || UNITY_EDITOR_OSX
// Needed so Keyboard works on MacOS and Linux
#if UNITY_STANDALONE_OSX || UNITY_EDITOR_OSX || UNITY_EDITOR_LINUX || UNITY_STANDALONE_LINUX
inputDevices = new List<InputController>();
if(inputDevices.Count < 1)
{
@ -142,8 +142,8 @@ namespace HeavenStudio
public static void UpdateInputControllers()
{
// Needed so Keyboard works on MacOS
#if UNITY_STANDALONE_OSX || UNITY_EDITOR_OSX
// Needed so Keyboard works on MacOS and Linux
#if UNITY_STANDALONE_OSX || UNITY_EDITOR_OSX || UNITY_EDITOR_LINUX || UNITY_STANDALONE_LINUX
inputDevices = new List<InputController>();
if(inputDevices.Count < 1)
{