cancel
Showing results for 
Search instead for 
Did you mean: 

OVRPlayerController Jump

Anonymous
Not applicable
I am looking Using the OVRPlayerController Script to try and make the player jump

When I link the Function Jump() to a Button the player jumps but only vertically - you lose any directional momentum?

Any ideas?
4 REPLIES 4

Anonymous
Not applicable
Never mind it was this...

// No positional movement if we are in the air
if (!Controller.isGrounded)
MoveScale = 0f;

CHADALAK1
Explorer
well when i try to jump, it freaks the hell out and throws me out of the map 😞

[EDIT]
Actually i decided to use only the OVRCameraController and then try to make my own PlayerController. works much better 😉 . add ur movement, then add the MouseLook script from the FPS controller. but ONLY the X. one quick way to get a beta controller.

mduda
Honored Guest
Can you share your script for player controller?

Working with the same issue...

Regards,

cybereality
Grand Champion
You can try using the instructions here (I believe they should still work):
viewtopic.php?f=37&t=3018&p=37280#p37280

Make sure to pull the OVRCameraController out of an OVRPlayerController instance. Don't use the one in the prefabs folder as it does NOT work.