[HoloLens]MRTK2017.2.1.0 EditorでAirTapできない問題

MixedRealityToolkit-Unity 2017.2.1.0で発生する問題です。

Upgrade Guide Attention! This release is specifically targeted for Unity Editor-2017.2.1f1 This release should be compatible for development for both HoloLen...
HoloLensCameraを使用すると、EditorでShift+クリックすることによってAirTapのエミュレートができます。
ところが、上記バージョンではその操作でのAirTapができません。
次のバージョンですぐ修正されるとは思いますが、修正方法をメモしておきます。
CustomInputSelector.csを開き、56行目の下記のブロックを置き換えます。
置き換え前

#if UNITY_2017_2_OR_NEWER
 spawnControllers = !XRDevice.isPresent && XRSettings.enabled && simulateHandsInEditor;
#else
 spawnControllers = simulateHandsInEditor;
#endif

置き換え後

spawnControllers = Application.isEditor && simulateHandsInEditor;

以上です!

スポンサーリンク

シェアする

  • このエントリーをはてなブックマークに追加

フォローする

スポンサーリンク