UnityでOculusに使えるGUI 「VRGUI」のご紹介
OculusでOnGUIを使うとビルドした時にうまくいかなかったので
調べたらVRGUIというのが見つかったので試したらうまくいきました。
使い方は、簡単です。
ログインして「Unity GUI Package + Example」からVRGUI.zipをダウンロードしてください。
https://developer.oculusvr.com/forums/viewtopic.php?f=37&t=4944
MonoBehaviourを継承しているのでOnGUIと書き方は変わらない感じでした。
VRGuiSample
public class VRGuiSample : VRGUI
{
public override void OnVRGUI()
{
GUILayout.BeginArea(new Rect(0f, 0f, Screen.width, Screen.height));
if (GUILayout.Button("Click Me!"));
GUILayout.EndArea();
}
}
Author And Source
この問題について(UnityでOculusに使えるGUI 「VRGUI」のご紹介), 我々は、より多くの情報をここで見つけました https://qiita.com/amano-kiyoyuki/items/4bc54336d2e0d16aea71著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .