Example #1
0
    void Reculer()
    {
        Vector3 moveDirection = -transform.forward;

        moveDirection.y -= gravity * Time.deltaTime;

        charController.Move(moveDirection * movement_Speed * Time.deltaTime);
        playerAnimations.WalkBatard();
    }