Exemple #1
0
    private void Update()
    {
        GetInput();
        Move();
        UpdateAnimations();

        movingObject.CalculateVelocity();
        movingObject.Move();
    }
Exemple #2
0
    private void Update()
    {
        GetInput();
        Move();
        characterAnimator.UpdateAnimations(inputDirection);

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