mirror of
https://github.com/Leahnaya/TheKingsRace.git
synced 2026-08-21 09:54:28 -05:00
bug fixes
This commit is contained in:
@@ -50,7 +50,7 @@ public class dAerialStateManager : NetworkBehaviour
|
||||
public int curJumpNum; // current Jumps Used
|
||||
public bool jumpHeld; // Jump is Held
|
||||
public bool canJump = true; // can the player jump
|
||||
bool jumpPressed; // Jamp was pressed
|
||||
public bool jumpPressed; // Jamp was pressed
|
||||
public float coyJumpTimer = 0.13f; // Default Coyote Jump time
|
||||
public float curCoyJumpTimer = 0.13f; // current Coyote Jump time
|
||||
public float lowJumpMultiplier; // Short jump multiplier
|
||||
@@ -100,7 +100,7 @@ public class dAerialStateManager : NetworkBehaviour
|
||||
Vector3 impact = Vector3.zero; // Impact Vector
|
||||
|
||||
//Grapple Variables
|
||||
float maxGrabDistance = 30;// Max Distance can cast grapple
|
||||
float maxGrabDistance = 60;// Max Distance can cast grapple
|
||||
public GameObject hookPoint; // Actual Hook points
|
||||
public GameObject[] hookPoints; // Hook point list
|
||||
public int hookPointIndex; // Hook point Index
|
||||
@@ -190,8 +190,6 @@ public class dAerialStateManager : NetworkBehaviour
|
||||
rB.AddForce(new Vector3(0,pStats.GravVel,0));
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
public void SwitchState(dAerialBaseState state){
|
||||
|
||||
Reference in New Issue
Block a user