So I’m trying to implement a sprint function, but I’m having trouble because i don’t know how to set it so if the LSHIFT is pressed the ‘sprint’ will take over, when its raised, it will return back to the ‘speed’. However, i’ve tried using the ELSE function but it just produces errors. The code for the else function is;
else {
if(Input.GetKeyDown(KeyCode.LeftShift)){
moveDirection *= sprint;
}
}
However, that code keeps bringing errors.
This is the code I’m currently using.
using UnityEngine;
using System.Collections;
public class characterMovement : MonoBehaviour {
public float speed = 6.0F;
public float sprint = 10.0F;
public float jumpSpeed = 8.0F;
public float gravity = 20.0F;
private Vector3 moveDirection = Vector3.zero;
void Update() {
CharacterController controller = GetComponent<CharacterController>();
if (controller.isGrounded) {
moveDirection = new Vector3(Input.GetAxis("Horizontal"), 0, Input.GetAxis("Vertical"));
moveDirection = transform.TransformDirection(moveDirection);
moveDirection *= speed;
if (Input.GetButton("Jump"))
moveDirection.y = jumpSpeed;
if (Input.GetKeyDown(KeyCode.LeftShift)){
moveDirection *= sprint;
}
}
moveDirection.y -= gravity * Time.deltaTime;
controller.Move(moveDirection * Time.deltaTime);
}
}