Fine tuned animations

This commit is contained in:
Evan Nydahl
2022-04-27 18:49:42 -05:00
parent 3ebde4266d
commit 6856a88702
54 changed files with 178405 additions and 23215 deletions

View File

@@ -123,6 +123,7 @@ public class AerialStateManager : NetworkBehaviour
rB = GetComponent<Rigidbody>(); //set Rigid Body
parentObj = transform.parent.gameObject; // set parent object
animator = GetComponent<Animator>(); // set animator
animationManager = GetComponent<AnimationManager>();
////
////Initialize Scripts
@@ -514,7 +515,7 @@ public class AerialStateManager : NetworkBehaviour
}
//Calculate wall direction
float CalculateSide(){
public float CalculateSide(){
if(isWallRunning)
{
Vector3 heading = lastWallPosition - transform.position;