I have installed the package on Xubuntu 14.04. My project can be loaded and launched on Linux. Great work, I am happy to see it happen.
However, mouse axis (Input.GetAxis(“Mouse X”) etc.) do not work. For instance in the MouseLook script in the FirstPersonController asset.
Mouse buttons are working.
The mouse is also working for the UI.
On a new project, the following script attached to the main camera display always values equal to zero.
void Update () {
Debug.Log("Input mouse X " + Input.GetAxis("Mouse X"));
Debug.Log("Input mouse Y " + Input.GetAxis("Mouse Y"));
}
Issue seems partially fixed for me on manjaro. GetAxis works - but choppy like it’s not updated every frame. Anyone can confirm this for other distro’s (especially ubuntu based ones)?