HologramSoftware
11 days agoHonored Guest
SDK Linux editor issues
Hey guys,
The SDK has sections like this:
#if UNITY_EDITOR_WIN
***
#elif UNITY_EDITOR_OSX
***
#endif
(this is in installer.cs)
And in 2 places in OVRPlugin
#if OVRPLUGIN_UNSUPPORTED_PLATFORM
return false;
where it should be something like
#if OVRPLUGIN_UNSUPPORTED_PLATFORM
hapticsProperties = new HapticsParametricProperties();
return false;
I'm using Linux, and while I understand that you don't want to support linux, this is just lazy and inconsiderate, because I can't just "hack" this once the SDK is going to keep over writing my changes, can you be more considerate for us Linux users please.