Ejemplo n.º 1
0
    private void Update()
    {
        GetInput();
        Move();
        UpdateAnimations();

        movingObject.CalculateVelocity();
        movingObject.Move();
    }
Ejemplo n.º 2
0
    private void Update()
    {
        GetInput();
        Move();
        characterAnimator.UpdateAnimations(inputDirection);

        movingObject.CalculateVelocity();
        movingObject.Move();
    }