- Unity 2018.2.9f1
- Holotoolkit
Enable mouse click to simulate AirTap event:
Edit the script for CustomInputSelector (HoloToolKit):
#if UNITY_2017_2_OR_NEWER
spawnControllers = !XRDevice.isPresent && XRSettings.enabled && simulateHandsInEditor;
#else
spawnControllers = simulateHandsInEditor;
#endif
to just:
spawnControllers = simulateHandsInEditor;