CharacterMovement constructor

CharacterMovement({
  1. required Vector3 translation,
  2. required bool grounded,
  3. required bool slidingDownSlope,
})

Implementation

CharacterMovement({
  required this.translation,
  required this.grounded,
  required this.slidingDownSlope,
});