投稿日: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でオブジェクトを掴む方法を説明していきます。

 

前の記事 次の記事

I study here http://pornhd.in.net/ pornh Katherine Jackson and the star's three children had argued that AEG Live were negligent in failing to properly investigate Murray before hiring him and ignoring signs that the singer was in poor health.

 I study here http://pornhd.in.net/ pornh Katherine Jackson and the star's three children had argued that AEG Live were negligent in failing to properly investigate Murray before hiring him and ignoring signs that the singer was in poor health.

Please wait http://xvideos.doctor/ porno xvideos Kong, a 5 Alarm grand prize winner in 2011, fried his chicken in duck fat, as a nod to the dish that helped him win the whole competition two years ago — a pork belly negimaki stuffed with pulled duck.

 Please wait http://xvideos.doctor/ porno xvideos Kong, a 5 Alarm grand prize winner in 2011, fried his chicken in duck fat, as a nod to the dish that helped him win the whole competition two years ago — a pork belly negimaki stuffed with pulled duck.

Where do you come from? http://pornhd.in.net/ porn.hd E-commerce and mobile apps are other areas Twitter could take advantage of to make revenue, Peck said. Three-quarters of its monthly active users are considered mobile users, Twitter said in a filing.

 Where do you come from? http://pornhd.in.net/ porn.hd E-commerce and mobile apps are other areas Twitter could take advantage of to make revenue, Peck said. Three-quarters of its monthly active users are considered mobile users, Twitter said in a filing.

Canada>Canada http://tiava.in.net/ tiava tube Deutsche Telekom said it expected T-Mobile US to add between 500,000 and 700,000 new customers in the second half of the year, resulting in total annual customer growth of 1-million to 1.2-million customers.

 Canada>Canada http://tiava.in.net/ tiava tube Deutsche Telekom said it expected T-Mobile US to add between 500,000 and 700,000 new customers in the second half of the year, resulting in total annual customer growth of 1-million to 1.2-million customers.

Sorry, I ran out of credit http://dinotube.in.net/ dinoporn The artist used her dad's old calligraphy pen to create what she called "modern day snail mail." She was a design major in college, so this wasn't the first time she'd dabbled in typography.

 Sorry, I ran out of credit http://dinotube.in.net/ dinoporn The artist used her dad's old calligraphy pen to create what she called "modern day snail mail." She was a design major in college, so this wasn't the first time she'd dabbled in typography.

I came here to work http://txxx.in.net/ t xxx The United States tightened security at its diplomatic missions in Lebanon and Turkey on September 6 amid "potential threats," which arose about a week before the anniversary of the September 11 attacks.

 I came here to work http://txxx.in.net/ t xxx The United States tightened security at its diplomatic missions in Lebanon and Turkey on September 6 amid "potential threats," which arose about a week before the anniversary of the September 11 attacks.

Sorry, you must have the wrong number http://thumbzilla.fun/ thumbzilla The second and third planes are currently in the final statges of assembly, Boeing said on its website.

 Sorry, you must have the wrong number http://thumbzilla.fun/ thumbzilla The second and third planes are currently in the final statges of assembly, Boeing said on its website.

A staff restaurant http://xnxxxvideos.in.net/ jav xnxx "There are no excuses, and I take full responsibility for the hurt I have caused," he said in a statement at the time. "I have apologized to Maria, my children and my family. I am truly sorry."

 A staff restaurant http://xnxxxvideos.in.net/ jav xnxx "There are no excuses, and I take full responsibility for the hurt I have caused," he said in a statement at the time. "I have apologized to Maria, my children and my family. I am truly sorry."

What's your number? http://xnxxlove.in.net/ xnxx app Instead of six-shooters, their courage is fortified by a $2billion line of credit provided by a group of lenders led byCitibank that allows them to weather the occasional sharpdeclines in their assets.

 What's your number? http://xnxxlove.in.net/ xnxx app Instead of six-shooters, their courage is fortified by a $2billion line of credit provided by a group of lenders led byCitibank that allows them to weather the occasional sharpdeclines in their assets.

I'm from England http://myvidster.fun/ my vidster It will involve creating a plasma of superheated gas reaching temperatures of more than 200 million C - conditions hot enough to force deuterium and tritium atoms to fuse together and release energy.

 I'm from England http://myvidster.fun/ my vidster It will involve creating a plasma of superheated gas reaching temperatures of more than 200 million C - conditions hot enough to force deuterium and tritium atoms to fuse together and release energy.

Powered By

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