I can't even make my Character move!

247939-mv.jpg

NOTHING happens when I press W,A,S,D…

This used to work in previous Engine builds!

(The strings DO get printed when I press WASD though…)

Are you sure the character is possessed by a player controller?

Which class is the APACharacter derived from?

(I suspect the parent class might not have SetupPlayerInputComponent() due to the IntelliSense error.)

The problem was: I needed to add Super::StartPlay() in the GameMode’s StartPlay() method.

The question is why…

Because the base class of these virtual functions have logic in them, always call base on unreal virtuals (unless you know what youre doing and explicity dont want your game to call that wngine function)