I am trying to import the Unity Integration 1.3 in the Linux Unity Editor 5.4.0f1 and the console prompt the following error
"Assets/Wwise/Deployment/API/Generated/Common/AkDeviceSettings.cs(102,10): error CS0246: The type or namespace name `AkThreadProperties' could not be found. Are you missing a using directive or an assembly reference?"
I found that #if UNITY_STANDALONE_LINUX && ! UNITY_EDITOR is preventing the code to be compiled by Unity.
Will it cause any problem if I change the first line to
#if (UNITY_STANDALONE_LINUX !UNITY_EDITOR) || UNITY_EDITOR_LINUX