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

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

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