Ejemplo n.º 1
0
 void ManageWalk(InputInfo inputInfo)
 {
     playerWalk.InformIfJustOneMovementKeyIsPressed(inputInfo.IsJustOneMovementKeyPressed());
     playerWalk.Walk(inputInfo.GetW(), inputInfo.GetS(), inputInfo.GetA(), inputInfo.GetD());
 }
Ejemplo n.º 2
0
 void FixedUpdate()
 {
     walkScript.Walk(WalkInputProcess());
     WalkAnimationProcess(WalkInputProcess());
 }