mirror of
https://github.com/frizbee19/FebGameJam.git
synced 2026-09-11 08:17:01 +00:00
36 lines
853 B
C#
36 lines
853 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class PlayerMovement : MonoBehaviour
|
|
{
|
|
public Movement controller;
|
|
float horizontalMove = 0f;
|
|
public float runSpeed = 40f;
|
|
bool jump = false;
|
|
bool crouch = false;
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
horizontalMove = Input.GetAxisRaw("Horizontal") * runSpeed;
|
|
if (Input.GetButtonDown("Jump"))
|
|
{
|
|
jump = true;
|
|
}
|
|
if (Input.GetKeyDown(KeyCode.LeftShift))
|
|
{
|
|
crouch = true;
|
|
} else if (Input.GetKeyUp(KeyCode.LeftShift))
|
|
{
|
|
crouch = false;
|
|
}
|
|
}
|
|
|
|
void FixedUpdate()
|
|
{
|
|
controller.Move(horizontalMove *Time.fixedDeltaTime, crouch, jump);
|
|
jump = false;
|
|
}
|
|
}
|