General changes

1. Added tetzlaff ui changes (code may need to be shortened)
This commit is contained in:
Evan Nydahl
2022-02-09 13:51:06 -06:00
parent 8fbedf486d
commit 6cd3024767
15 changed files with 1646 additions and 901 deletions

View File

@@ -33,7 +33,7 @@ public class dDash : NetworkBehaviour{
void DashPlayer(){
//if (!IsLocalPlayer) { return; }
if(characterController.enabled == true){
if ((Input.GetKeyDown(KeyCode.E) || Input.GetAxis("Dash") != 0) && isOnCoolDown == false)
if ((Input.GetKeyDown(KeyCode.R) || Input.GetAxis("Dash") != 0) && isOnCoolDown == false)
{
currentDashTime = 0;
StartCoroutine(startCoolDown());