This commit is contained in:
haitem
2021-01-29 23:00:16 +01:00
parent 63e2927e83
commit 761861e135
5 changed files with 177 additions and 51 deletions

View File

@@ -9,6 +9,9 @@ public class PlayerManager : MonoBehaviour
public float runSpeed = 20;
public float rotateSpeed = 5;
public float mouseSensitive = 100;
public float jump = 5;
private Vector3 jumpPower = new Vector3();
public bool onGround = false;
private bool run = false;
private Camera playerCamera;
private Rigidbody rigidBody;
@@ -27,7 +30,7 @@ public class PlayerManager : MonoBehaviour
{
Application.Quit(0);
}
Jump();
Move();
RunSwitch();
}
@@ -54,10 +57,22 @@ public class PlayerManager : MonoBehaviour
rigidBody.MovePosition(
transform.position +
(transform.forward * (run ? runSpeed : speed) * Input.GetAxis("Vertical") * Time.deltaTime) +
(transform.right * (run ? runSpeed : speed) * Input.GetAxis("Horizontal") * Time.deltaTime)
(transform.right * (run ? runSpeed : speed) * Input.GetAxis("Horizontal") * Time.deltaTime) +
jumpPower
);
}
void Jump()
{
Debug.Log(rigidBody.velocity.y);
if (Input.GetAxisRaw("Jump") > 0) {
if (rigidBody.velocity.y <= 2 && onGround)
{
jumpPower = transform.up * jump * Time.deltaTime;
}
}
}
void Rotate()
{
rigidBody.freezeRotation = false;
@@ -95,4 +110,21 @@ public class PlayerManager : MonoBehaviour
}
rigidBody.freezeRotation = true;
}
public void OnTriggerEnter(Collider other)
{
if (other.tag == "Ground")
{
jumpPower = Vector3.zero;
onGround = true;
}
}
public void OnTriggerExit(Collider other)
{
if (other.tag == "Ground")
{
onGround = false;
}
}
}