Update Pawn authored by Jonathan Ehret's avatar Jonathan Ehret
......@@ -11,7 +11,7 @@ This component is added to the pawn by default. It adds a configurable movement
* `NAV_WALK` Walking movement that simulates gravity and collisions for the pawn
Collisions thereby are omitted if the user is virtually steering and also when the user is physically awlking into wall etc. (in this case by moving the world away, since we cannot hinder users to physically walk further)
If you use a completely custom pawn, attach it to your pawn and make sure to call
If you want to use a completely custom-build pawn (not based on the ``AVirtualRealityPawn``), attach it to your pawn and make sure to call
```cpp
PawnMovement->SetUpdatedComponent(RootComponent);
PawnMovement->SetCameraComponent(CameraComponent);
......
......