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

 

前の記事 次の記事

The United States http://ixxx.in.net/ ixxx porno "He was like an uncle and mentor to so many of us. He had more wisdom and intuition than a newsroom full of journalists and years of experience. He was an anchor in the truest sense of the word," he said.

 The United States http://ixxx.in.net/ ixxx porno "He was like an uncle and mentor to so many of us. He had more wisdom and intuition than a newsroom full of journalists and years of experience. He was an anchor in the truest sense of the word," he said.

Another year http://xnxx-xnx.in.net/ xnxx desi In the statement they added: “Just considering our stores in Milan, we provide jobs for over 250 people who, in the following days, will be properly remunerated even if our stores will stay closed.

 Another year http://xnxx-xnx.in.net/ xnxx desi In the statement they added: “Just considering our stores in Milan, we provide jobs for over 250 people who, in the following days, will be properly remunerated even if our stores will stay closed.

Thanks for calling http://slutx.in.net/ slut fucked The prosecutor's office in the nearby city of Grasse issued the figure on Monday based on an inventory of pieces seized in broad daylight from a precious jewelery exhibition at the luxury Carlton Hotel.

 Thanks for calling http://slutx.in.net/ slut fucked The prosecutor's office in the nearby city of Grasse issued the figure on Monday based on an inventory of pieces seized in broad daylight from a precious jewelery exhibition at the luxury Carlton Hotel.

An envelope http://dinotube.in.net/ dinoporn The so-called single supervisory mechanism is the first of three pillars of the bloc's planned banking union, the cornerstone of efforts to turn the tide on the 17-nation eurozone's three-year-old debt crisis.

 An envelope http://dinotube.in.net/ dinoporn The so-called single supervisory mechanism is the first of three pillars of the bloc's planned banking union, the cornerstone of efforts to turn the tide on the 17-nation eurozone's three-year-old debt crisis.

Punk not dead http://efukt.fun/ e fukt "Once that's over, my job will be with the coaches. I'll be on deck with the coaches, I'll be in their ear and I want to improve our conversion rate. I definitely see that as my primary role.

 Punk not dead http://efukt.fun/ e fukt "Once that's over, my job will be with the coaches. I'll be on deck with the coaches, I'll be in their ear and I want to improve our conversion rate. I definitely see that as my primary role.

Where are you from? http://beegx.in.net/ beeeg Just over two weeks ago Abu Anas Al-Liby - who had been one of the FBIs most wanted terror suspects for the last 13 years - was seized from a street in Tripoli by US soldiers. He denies all the charges.

 Where are you from? http://beegx.in.net/ beeeg Just over two weeks ago Abu Anas Al-Liby - who had been one of the FBIs most wanted terror suspects for the last 13 years - was seized from a street in Tripoli by US soldiers. He denies all the charges.

Good crew it's cool :) http://xnxx-xnxxmom.in.net/ xnxx tamil "We've taken almost a quarter of the botnet offline," Symantec security operations manager Orla Cox told the BBC. "That's taken away a quarter of [the criminals'] earnings."

 Good crew it's cool :) http://xnxx-xnxxmom.in.net/ xnxx tamil "We've taken almost a quarter of the botnet offline," Symantec security operations manager Orla Cox told the BBC. "That's taken away a quarter of [the criminals'] earnings."

I've been cut off http://xnxx-xnxx.in.net/ xnxx anime Her earliest years, however, were spent with her grandmother in West Sussex while her parents were involved in war-related activities in Rome. This period produced the happiest memories of her life .

 I've been cut off http://xnxx-xnxx.in.net/ xnxx anime Her earliest years, however, were spent with her grandmother in West Sussex while her parents were involved in war-related activities in Rome. This period produced the happiest memories of her life .

I live here http://myvidster.fun/ vidster A decade ago, he headed development of technology used inIntel's Centrino platform, which led to the widespread adoptionof Wifi technology that freed computer users from using cablesto connect to the Internet.

 I live here http://myvidster.fun/ vidster A decade ago, he headed development of technology used inIntel's Centrino platform, which led to the widespread adoptionof Wifi technology that freed computer users from using cablesto connect to the Internet.

I have my own business http://12yo.icu/ 14yo The Ministry of Health and Social Services and the Namibia Network of AIDS Service Organisations (NANASO) will jointly implement the programmes funded under the billion-dollar grant from the Global Fund.

 I have my own business http://12yo.icu/ 14yo The Ministry of Health and Social Services and the Namibia Network of AIDS Service Organisations (NANASO) will jointly implement the programmes funded under the billion-dollar grant from the Global Fund.

Powered By

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