投稿日:2017年10月09日  カテゴリー:VR  投稿者:SingularityMaster

■『Avatar Grab Sample』について

OculusTouchを使ったコンテンツを作成するにおいて、『Avatar Grab Sample』という非常に参考になるサンプルがあります。これはOculusの中の人ことmfmfさんが作ったサンプルです。

ただし、少々古いサンプルなので、Unity2017+OculusSDK1.16.0の環境において、いくつか修正しないといけない部分があります。この記事では、その修正とサンプルを使うところまで紹介します。

 

■『Avatar Grab Sample』の入手

まず、『Avatar Grab Sample』を入手します。『Avatar Grab Sample』はOculusDevelopersフォーラムのこちらでダウンロードできます。

 

 

ダウンロードしたらzipファイルを解凍して、中にある「AvatarGrabSample」というUnityPackegeFileを実行して、Unityにインポートしてください。実行する先は、前の記事までで作成してきたプロジェクトにお願いします(Unity2017+OculusUtilities1.16.0-beta + Oculus Avator SDK1.16.0 + Oculus Platform SDK1.16.0の環境)。

インポートが完了すると、Assets内にSamplesというフォルダができているはずです。

 

 

このSample->Contentフォルダ内にAvatarWithGrabというUnityファイルがあるのでこれを開きます。これがサンプルシーンなのですが、エラーが出て実行できないはずです。なのでまずバグを修正します。

 

■バグの修正(その1)

「Assets/OVR/Scripts/Util/OVRGrabber.cs(105,33): error CS1061: Type `OvrAvatarDriver' does not contain a definition for `GetCurrentPose' and no extension method `GetCurrentPose' of type `OvrAvatarDriver' could be found. Are you missing an assembly reference?」というエラーが発生しているはずです。

Unity2017+OculusSDK1.16.0環境下では、足りない定義があるのでそれを加えていきます。

 

 

Assets->OvrAvatar->Scriptsの中に、「OvrAvatarLocalDriver.cs」というスクリプトファイルがあるので、それを開きます。このスクリプト中の、40行目あたりに以下の定義一式を追加します。

 

    public bool MyGetCurrentPose(out PoseFrame pose)
    {
        pose = new PoseFrame
        {
            voiceAmplitude = voiceAmplitude,
            headPosition = UnityEngine.VR.InputTracking.GetLocalPosition(UnityEngine.VR.VRNode.CenterEye),
            headRotation = UnityEngine.VR.InputTracking.GetLocalRotation(UnityEngine.VR.VRNode.CenterEye),
            handLeftPosition = OVRInput.GetLocalControllerPosition(OVRInput.Controller.LTouch),
            handLeftRotation = OVRInput.GetLocalControllerRotation(OVRInput.Controller.LTouch),
            handRightPosition = OVRInput.GetLocalControllerPosition(OVRInput.Controller.RTouch),
            handRightRotation = OVRInput.GetLocalControllerRotation(OVRInput.Controller.RTouch),
            controllerLeftPose = GetControllerPose(OVRInput.Controller.LTouch),
            controllerRightPose = GetControllerPose(OVRInput.Controller.RTouch),
        };
        return true;
    }

 

次に、Assets->OVR->Scripts->Utilの中に「OVRGrabber.cs」というスクリプトファイルがあるので、それを開きます。このこのスクリプト中、105行目の

m_avatar.Driver.GetCurrentPose(out frame);

を削除して、

((OvrAvatarLocalDriver)m_avatar.Driver).MyGetCurrentPose(out frame);

に変更します。

 

■バグの修正(その2)

「The referenced script on this Behaviour is missing!」という警告がいっぱい出ているはずです。これは、このサンプルが作られた当初といくつかSDK内のファイル名が違っているのが原因です。

 

 

Assets->OVR->Scripts->Utilの中に、「OVRGrabber.cs」と「OVRGrabbable.cs」いうスクリプトファイルがあります。このファイルの名前のOVRを削除して、それぞれ「Grabber.cs」と「Grabbable.cs」というファイル名に変更します。

 

■バグの修正(その3)

エラーメッセージは表示されなくなりましたが、まだモノを掴むことができません。これは「Grabber.cs」にAvatarオブジェクトが設定されていないせいです。

 

 

HierarchyビューのLocalAvatar->grabber_leftオブジェクトを選択して、Inspectorビューを見ます。Grabberスクリプト中にAvatarという欄がありますが、そこに何も設定されてないはずです。

なので、Assets->OvrAvatar->Content->Orefabの中に、LacalAvatar.prefabというファイルがあるので、これをそのAvatar欄にドラッグして設定します。同様にして、grabber_rightオブジェクトにもLacalAvatar.prefabを設定します。

 

これで『Avatar Grab Sample』を正常に実行することができるはずです。ただし、まだ「No Oculus Rift App ID has been provided.」というエラーが出ていて気持ちが悪いのでこれも修正しておきます。

 

■OculusAppIDの取得、設定

「No Oculus Rift App ID has been provided.」を解決するためには、OculusAppIDを取得し、設定する必要があります。OculusDevelopersサイトのManageにアクセスしてください。このページの「Create New App」をクリックします。するとGearVRかOculusRiftかの選択肢が表示されるので、OculusRiftを選んでください。

 

 

次にアプリ名の入力画面が表示されるので、適当なアプリ名を入れて「Save and Continue」をクリックします。

 

 

次の画面に表示されるAppIDという欄の16桁の数字がOculusAppIDになります。これをコピーします。

 

 

Unityに戻って、ツールバー中の「OculusAvatars」をクリックします。Inspector画面にOculusRiftAppIDの入力欄が表示されるので、コピーしたIDをペーストします。

これでエラー表示はなくなるはずです。

 

■『Avatar Grab Sample』の実行

『Avatar Grab Sample』を実行してみましょう。

 

 

テーブルの上に並んだブロックを手で掴むことができるはずです。掴んだブロックを放り投げたり、他のブロックに衝突させることもできます。

これはOculusTouchを使ったコンテンツを作るうえで非常に参考となるサンプルです。これをベースに様々なコンテンツを作ることができます。これをテンプレートプロジェクトとして保存しておくと良いでしょう。

 

次の記事では、この『Avatar Grab Sample』を参考に、OculusTouchでオブジェクトを掴む方法を説明していきます。

 

前の記事 次の記事

Where do you live? http://xnxx.in.net/ xnxx videos “They’re already comfortable, but sometimes you bring in radio guys and they sort of have to learn how to narrow down what they’re saying and get to their best stuff much quicker,” said Como.

 Where do you live? http://xnxx.in.net/ xnxx videos “They’re already comfortable, but sometimes you bring in radio guys and they sort of have to learn how to narrow down what they’re saying and get to their best stuff much quicker,” said Como.

Wonderfull great site http://efukt.fun/ e fukt Captain Cookey added: "There was a lot of nerves coming into the game. South Africa came out strong and we're a bit disappointed with how we started, but I'm pleased with how we finished.

 Wonderfull great site http://efukt.fun/ e fukt Captain Cookey added: "There was a lot of nerves coming into the game. South Africa came out strong and we're a bit disappointed with how we started, but I'm pleased with how we finished.

this is be cool 8) http://xnxx.zone/ nxnn Most of those out in the streets of the strictly conservative Muslim country were men, although some families in cars joined in the celebrations, many shouting "Zendabad Afghanistan!" (Long Live Afghanistan!).

 this is be cool 8) http://xnxx.zone/ nxnn Most of those out in the streets of the strictly conservative Muslim country were men, although some families in cars joined in the celebrations, many shouting "Zendabad Afghanistan!" (Long Live Afghanistan!).

Could I have , please? http://rulertube.fun/ ruler tube NHS trusts, local councils and other public sector institutions were found to be bogged down with bureaucracy in attempting to comply with the so-called “Public Sector Equality Duty”.

 Could I have , please? http://rulertube.fun/ ruler tube NHS trusts, local councils and other public sector institutions were found to be bogged down with bureaucracy in attempting to comply with the so-called “Public Sector Equality Duty”.

I wanted to live abroad http://xnxx-xnxx.space/ www xnxx Antonio Leanza, the founder of the London School of Photography, says Instagram has helped democratise photography by opening up the medium to those who traditionally could never have afforded it.

 I wanted to live abroad http://xnxx-xnxx.space/ www xnxx Antonio Leanza, the founder of the London School of Photography, says Instagram has helped democratise photography by opening up the medium to those who traditionally could never have afforded it.

A jiffy bag http://fatmomtube.in.net/ bbw tube Over that time, he won three pennants, one World Series, with the Florida Marlins in 1997, and six division titles. Before he came to the Tigers in 2006, they had gone 12 years without a winning season.

 A jiffy bag http://fatmomtube.in.net/ bbw tube Over that time, he won three pennants, one World Series, with the Florida Marlins in 1997, and six division titles. Before he came to the Tigers in 2006, they had gone 12 years without a winning season.

A pension scheme http://xnxx.zone/ xxnx “Metta is just an all-out warrior,” Smith continued. “He can guard (positions) one through five, he makes the big shots, he wants the big shot moments, so we definitely need someone like that on the team.” 

 A pension scheme http://xnxx.zone/ xxnx “Metta is just an all-out warrior,” Smith continued. “He can guard (positions) one through five, he makes the big shots, he wants the big shot moments, so we definitely need someone like that on the team.” 

I work for myself http://beeg.in.net/ beeg tube Having slumped to 10th in the medals standings in 2012, from sixth in Beijing and fourth in Athens and Sydney, Australia has set itself a target of returning to the top five at the next two summer Olympics.

 I work for myself http://beeg.in.net/ beeg tube Having slumped to 10th in the medals standings in 2012, from sixth in Beijing and fourth in Athens and Sydney, Australia has set itself a target of returning to the top five at the next two summer Olympics.

The manager http://fatmomtube.in.net/ fatmomtube com The move stands in sharp contrast to a month ago when thesilver ETF's tonnage tumbled to a 2013 low of 9,882 tonnes,sparking fears that mom-and-pop investors were beginning to losefaith in the metal.

 The manager http://fatmomtube.in.net/ fatmomtube com The move stands in sharp contrast to a month ago when thesilver ETF's tonnage tumbled to a 2013 low of 9,882 tonnes,sparking fears that mom-and-pop investors were beginning to losefaith in the metal.

I came here to work http://madthumbs.fun/ mad thumbs Overall, Whitbread posted 12.4pc sales growth in the 24-week period, and a 2.6pc rise on a like-for-like basis. This was below expectations, and sent shares in the company down 3.6pc in early trading.

 I came here to work http://madthumbs.fun/ mad thumbs Overall, Whitbread posted 12.4pc sales growth in the 24-week period, and a 2.6pc rise on a like-for-like basis. This was below expectations, and sent shares in the company down 3.6pc in early trading.

Powered By

Copyright (C) 2017 テクノロジーカフェシンギュラリティ. All Rights Reserved.