cancel
Showing results for 
Search instead for 
Did you mean: 

Showcase of using Oculus Samsung Gear VR 2017 with Controller

MohamedElmazen
Protege
Hi

i just finished my last project using Oculus Gear VR with controller,
my client chosen is done with Gear with controller for the most reason MOBILITY && Zero Setup time in comparison with other VR equipment., so from this point i'm very hasty for the new Oculus GO for my next projects.

Thanks Oculus for the best VR of 2017 Oculus Gear VR with controller.

here is the video of my last project & experience with Gear VR 2017
https://youtu.be/1jxFiYYDUwI 

&& welcome to new projects needed.

Thanks 
6 REPLIES 6

SohelSayyad
Honored Guest
Hi, you have done a great job!! I am using OVRPlayerCOntroller prefab for first person controller. But unfortunately in VR my first person is not moving in any direction using gear VR controller. Could you please help me?

MohamedElmazen
Protege
@SohelSayyad
Hi Sohel
you can Get Axis from controller

Vector2 primaryTouchpad = OVRInput.Get(OVRInput.Axis2D.PrimaryTouchpad);
& use primaryTouchpad.y to move your FPS
if(primaryTouchpad.y > 0)
{
   transform.position += transform.forward * Time.deltaTime * speed;
}

i like to not move my camera to still in comfort & away from user dizziness.
so the teleportation mode is best for me.

vimevim
Honored Guest
Hi muhammed, i want to ask you this: i posted before but no reply, i want to detect touchpad's movements. Like swipe up or down or left or right or right-up or left-down. I only can use gear vr controller so... 

MohamedElmazen
Protege
@vimevim
Hi Vimevim 
you can Get Axis from controller

Vector2 primaryTouchpad = OVRInput.Get(OVRInput.Axis2D.PrimaryTouchpad);
use primaryTouchpad.y to move your object 
if(primaryTouchpad.y > 0)
{
   transform.position += transform.forward * Time.deltaTime * speed;
}

vimevim
Honored Guest
I want to use touchpad like a joystick. When joystick swipe to left i want to show this text "you are swiping to left". I am new in programming, am am new with english. I have a project that i need to create for efficiency. I do not know what should i learn, i just want to type with touchpad into a textbox like when i swipe left i want to type this "<" as a shortcut and when i swipe to right i want it to type ">" into the textbox. Sir with a perfect name pls help me.

MohamedElmazen
Protege
Vector2 primaryTouchpad = OVRInput.Get(OVRInput.Axis2D.PrimaryTouchpad);
if(primaryTouchpad.x > 0)
{
  infoText.text = "swiping left";
}
if(primaryTouchpad.x < 0)
{
  infoText.text = "swiping right";
}
you need to learn basic coding & some advanced programming.