Grapple Finally Feels Satisfactory

This commit is contained in:
Melbyj1125
2022-04-27 01:42:29 -05:00
parent c5bbdd1c77
commit 6560a303d5
7 changed files with 454 additions and 65 deletions

View File

@@ -9,7 +9,7 @@ public class AerialGlidingState : AerialBaseState
//Modify base traction
aSM.pStats.CurTraction = 1.0f;
aSM.pStats.GravVel = -1;
aSM.pStats.GravVel = -4;
}
public override void ExitState(AerialStateManager aSM, AerialBaseState nextState){
@@ -44,7 +44,7 @@ public class AerialGlidingState : AerialBaseState
public override void FixedUpdateState(AerialStateManager aSM){
//modified gravity calculation to fall slower
aSM.GravityCalculation(8);
aSM.GravityCalculation(9);
//if grapple released apply release force
if(aSM.pStats.HasGrapple){