3
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.

OculusとSteamVRの両方を同時に開発する方法

Last updated at Posted at 2019-09-18

はじめに

 Unityで利用できるOculus Integrationはクロスプラットフォームで開発することができます。
そのためOculus Integrationのみで開発を行えばPCでも実行でき、OculusGoを始めとするOculusのモバイルやPC版でも実行できるようになります。
まだ未完成ですが、今後編集していくので間違ってるところとかあったら教えてください!

コントローラーの割り当て

 基本的にコントローラーの情報を取得するときはOVRInputを使って取得してきます。


OVRInput.Get(); //Get()は押している
OVRInput.GetDown(Button.PrimaryThumbstick); //GetDown()は押した瞬間
OVRInput.GetUp(); //GetUp()は離した瞬間

HTC Viveコントローラーの場合

-**トラックパッド(タッチパッド)**がAxis2D.PrimaryThumbstickになっています。
-**トラックパッド(タッチパッド) **の押し込みはButton.PrimaryThumbstickに割り当てられています。

3
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
3
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?