Small changes

This commit is contained in:
Melbyj1125
2022-01-31 14:21:38 -06:00
parent 72e33adcbe
commit b63b814fe4
4 changed files with 17 additions and 24 deletions

View File

@@ -31,7 +31,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());