Merge branch 'sprint3MelbySpring'

This commit is contained in:
Melbyj1125
2022-01-31 14:23:48 -06:00
4 changed files with 17 additions and 24 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) && isOnCoolDown == false)
if (Input.GetKeyDown(KeyCode.R) && isOnCoolDown == false)
{
currentDashTime = 0;
StartCoroutine(startCoolDown());