Forum Discussion

🚨 This forum is archived and read-only. To submit a forum post, please visit our new Developer Forum. 🚨
Hiro_Protag0nist's avatar
6 years ago

Age Old Question - How To Jump

OK, can't believe i can't find this online - i'm using 2018.3.  What script to i have to add to OVRPlayerController.cs to enable jumping with the A button, which i think has the ID 0?  Unfortunately i just  don't know how to program/script.

/// <summary>
/// Jump! Must be enabled manually.
/// </summary>
public bool Jump()
{
if (!Controller.isGrounded)
return false;

        MoveThrottle += new Vector3(0, transform.lossyScale.y * JumpForce, 0);

return true;

Many thanks.

11 Replies

Replies have been turned off for this discussion