I have BasicCode project.
When i launch game, i have Camera movement WASD and Mouse camera movement, how to change that? how to make my own WASD behaviour and Mouse behavior.
But first of all, how to turn off default camera handling? so when i press WASD or Mouse, nothing should happen.
thx.
PS: i am looking starting point for creating my own input for game.
SOLVED:
AMyGameMode()::AMyGameMode()
{
this->DefaultPawnClass = APawn::StaticClass();
}
Thus, all camera input is handled by Pawns or Characters themsevles.
By default is used ADefaultPawn, with implemented WASD camera control and Mouse control.