mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-05-02 02:14:27 +02:00
Fix Linux Playback/Keyboard Bug (#373)
This commit is contained in:
parent
23ec7b4eb5
commit
208cb6e6da
@ -87,8 +87,8 @@ namespace HeavenStudio
|
|||||||
|
|
||||||
public static InputController GetInputController(int player)
|
public static InputController GetInputController(int player)
|
||||||
{
|
{
|
||||||
// Needed so Keyboard works on MacOS
|
// Needed so Keyboard works on MacOS and Linux
|
||||||
#if UNITY_STANDALONE_OSX || UNITY_EDITOR_OSX
|
#if UNITY_STANDALONE_OSX || UNITY_EDITOR_OSX || UNITY_EDITOR_LINUX || UNITY_STANDALONE_LINUX
|
||||||
inputDevices = new List<InputController>();
|
inputDevices = new List<InputController>();
|
||||||
if(inputDevices.Count < 1)
|
if(inputDevices.Count < 1)
|
||||||
{
|
{
|
||||||
@ -119,8 +119,8 @@ namespace HeavenStudio
|
|||||||
//controller IDs are determined by connection order (the Keyboard is always first)
|
//controller IDs are determined by connection order (the Keyboard is always first)
|
||||||
|
|
||||||
|
|
||||||
// Needed so Keyboard works on MacOS
|
// Needed so Keyboard works on MacOS and Linux
|
||||||
#if UNITY_STANDALONE_OSX || UNITY_EDITOR_OSX
|
#if UNITY_STANDALONE_OSX || UNITY_EDITOR_OSX || UNITY_EDITOR_LINUX || UNITY_STANDALONE_LINUX
|
||||||
inputDevices = new List<InputController>();
|
inputDevices = new List<InputController>();
|
||||||
if(inputDevices.Count < 1)
|
if(inputDevices.Count < 1)
|
||||||
{
|
{
|
||||||
@ -142,8 +142,8 @@ namespace HeavenStudio
|
|||||||
|
|
||||||
public static void UpdateInputControllers()
|
public static void UpdateInputControllers()
|
||||||
{
|
{
|
||||||
// Needed so Keyboard works on MacOS
|
// Needed so Keyboard works on MacOS and Linux
|
||||||
#if UNITY_STANDALONE_OSX || UNITY_EDITOR_OSX
|
#if UNITY_STANDALONE_OSX || UNITY_EDITOR_OSX || UNITY_EDITOR_LINUX || UNITY_STANDALONE_LINUX
|
||||||
inputDevices = new List<InputController>();
|
inputDevices = new List<InputController>();
|
||||||
if(inputDevices.Count < 1)
|
if(inputDevices.Count < 1)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user