4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Vive Input Utility For UnityをOculus Go/Questと使う(Oculus Go対応修正済み)。

Last updated at Posted at 2019-10-03

はじめに

Vive Input Utilityは、Unity+SteamVRやVive WaveでのVR内ボタン入力などをサポートしてくれる便利なツールです。

image.png

このツール、Github上の最新のコミット(0cebb42418336213451fb52267b9fc47449bc737)ではOculus GoやQuestもサポートするようになっています。まだ正式版ではないですが、試してみる価値はあるかと思います

インストール

公式のGithubページから最新のプロジェクトをダウンロードしてください。また、AssetStoreからOculus Integrationをダウンロードしてください。なお、Vive Focus Plus用のWave SDKはOculus Integrationと相性が悪いので消しておいた方が良いです。

プロジェクトを開いたら、Unity内のPreferenceでSupporting Deviceを選ぶ必要があります。

image.png
Oculus Android Packageをインストールしたら、Oculus Androidにチェックを入れてください。
image.png
すると、「推奨設定」を選ぶウィンドウが出てきます。
image.png
"Use Oculus Mobile Recommended Quality Settings"で"Use recommended"を選ぶとエラーが出てしまうので、それは無視して、それ以外は"Use recommended"を選んでください。

ビルドする際は、さらにAndroid Manifestを作る必要があります。無いとエラーになります。Oculus Integrationをインポートしていれば、Unityエディタ内でManifestを作るメニューがあるので使ってください。

image.png

最後に、Quest向けにビルドする場合は、Oculus Project ConfigでTarget Device TypesをQuestにしてください。

image.png

入力を取る

基本的な使い方はVive Focus Plusなどと同じです。Vive Focus Plus用に作ったプロジェクトでも、基本、変更なしで動きます。ただ、Vive Input Utility付属のViveInputクラスを用いてOculus Goのタッチパッドを触っている位置を取ることがどうしてもできませんでした。 Oculus Questに関しては問題ありません。なので、Goについては Input.GetAxis("HTC_VIU_UnityAxis4")Input.GetAxis("HTC_VIU_UnityAxis5")でとることになります。Vive Focus Plusなどとは別に判定させなければならないので面倒くさいですね。リリース版では改善されることを期待しましょう**(v1.10.5で修整済み)**。

追記

v1.10.5で修整済み → Githubにissueを出していたところ、解決策が提案されました。以下の通りOculusVRModule.csを追記、修正してください。これでGoのタッチパッドもViveInputクラスから入力を取れるようになります。

OculusVRModule.cs

///中略

case OVRPlugin.Node.HandLeft:
    {
        var ctrlState = OVRPlugin.GetControllerState4((uint)OVRPlugin.Controller.LTrackedRemote);
        currState.SetAxisValue(VRModuleRawAxis.TouchpadX, ctrlState.LTouchpad.x);
        currState.SetAxisValue(VRModuleRawAxis.TouchpadY, ctrlState.LTouchpad.y);

///中略

case OVRPlugin.Node.HandRight:
default:
    {
        var ctrlState = OVRPlugin.GetControllerState4((uint)OVRPlugin.Controller.RTrackedRemote);
        currState.SetAxisValue(VRModuleRawAxis.TouchpadX, ctrlState.RTouchpad.x);
        currState.SetAxisValue(VRModuleRawAxis.TouchpadY, ctrlState.RTouchpad.y);

///以下略
4
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?