😎

MagicLeapnのプロジェクトにMRTKを入れたときに数十のエラーに襲われた話

2021/04/22に公開

MagicLeapの公式にてMRTKに対応したとのことなので趣味で開発してるMagicLeapプロジェクトにMRTKを軽い気持ちでぶち込んでみたら数十のエラーに襲われた話。

↓この公式ページの通りに進めればほぼ大丈夫
https://developer.magicleap.com/en-us/learn/guides/unity-mrtk-project-setup

今回のエラーはもしかしたらワシの環境だけで発生してるのかもしれないけど一応メモ

一応手順通りにMRTKをインポートしたところまでは問題なかったがその後の MagicLeap Plugin v1.1 for MRTK 2.6.1 for Unity をインポートしたら数十のエラーが発生、一応臭いものに蓋ではあるが下の対応をした
不覚にもスクショとかは一切撮ってなかった...


Assets\MagicLeap-Tools\Code\Input\Hands\Visualizers\HandAxisVisualizer.cs(57,43): error CS0246: The type or namespace name 'ManagedHand' could not be found (are you missing a using directive or an assembly reference?)

このエラーはManagedHandクラスのnamespaceが MagicLeapToolsからMagicLeap.MRTK.DeviceManagement.Input.Handsへ移動したため以下のエラーが出る、該当スクリプトで↓を追加すれば解消できた。

using MagicLeap.MRTK.DeviceManagement.Input.Hands;

Assets\MagicLeap-Tools\Code\Events\EventTemplates.cs(42,53): error CS0246: The type or namespace name 'InteractionPoint' could not be found (are you missing a using directive or an assembly reference?)

このエラーも InteractionPoint は MagicLeap.MRTK.DeviceManagement.Input.Hands の名前空間にあるので該当スクリプトにて↓を追加すれば解消。

using MagicLeap.MRTK.DeviceManagement.Input.Hands;

Assets\MagicLeap-Tools\Code\Networking\Transmission\TransmissionObject.cs(86,29): error CS0103: The name 'TransformUtilities' does not exist in the current context

このエラーは TransformUtilities クラスが MagicLeap.MRTK.DeviceManagement の名前空間にあるので該当スクリプトにて↓を追加すれば解消。

using  MagicLeap.MRTK.DeviceManagement;

Assets\MagicLeap-Tools\Code\Input\Hands\Inputs\DirectManipulation.cs(369,33): error CS0103: The name 'MotionUtilities' does not exist in the current context

このエラーは該当スクリプトで↓を追加して解消。

using MagicLeap.MRTK.DeviceManagement;

Assets\MagicLeap-Tools\Code\Input\Hands\Objects\ManagedHandCollider.cs(82,52): error CS1061: 'InteractionPoint' does not contain a definition for 'DirectManipulations' and no accessible extension method 'DirectManipulations' accepting a first argument of type 'InteractionPoint' could be found (are you missing a using directive or an assembly reference?)

このエラーは Grasp の DirectManipulations のプロパティが削除されてるので発生してるっぽかった。
該当コードのコメント //only enable if we aren't directly manipulating anything: よりおそらく何かしらのオブジェクトを把持してないときに有効になる条件だと思われるので以下の様にコードを変更 ( 山勘で書いただけなのでもしかしたら違うかも...

if (_managedHand.Gesture.Grasp.DirectManipulations.Count == 0)
// ↑の条件式を↓の形に変更した
if (!_managedHand.Gesture.Grasp.active)

とりあえずこれで動くようにはなったけど臭いものに蓋戦法なので一応自己責任で...
多分フラットなプロジェクトで導入する場合は問題ないような気はするのよね...

Discussion