Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 489 Bytes

ReadMe.md

File metadata and controls

22 lines (19 loc) · 489 Bytes

MiNIHackathon

Requirements

  • Unity 2018.2.9f1
  • Holotoolkit

Config

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;

Source: microsoft/MixedRealityToolkit-Unity#1537