Cant move the player when i open a level

When i try to open a new level when i press a button (EASY) it should open the new level and i should move my character with joystick but in this case i dont know what i missed…

2 Likes

Is simulate physics checked on your player characters detail window?

I have a few cases to test:

  • on this level, do your GameMode selects the player as Player Pawn?
  • did your controls are calling the input events properly?
  • there is any physics blocking it?

in the level TopDownExampleMap everything is default . when i play in editor in this level everything is ok… but when i start from START LEVEL and move to TopDownExampleMap i cant move the player

Can you show how are you calling the TopDownExampleMap?

This will not be the most helpful answer but…

Go over all your settings. GamemodeBase (As of 4.14 and higher, make sure to use GameModeBase, not GameMode).
Your GameStateBase, Pawn Controller, world settings etc. It is very basic but I often solved similar problems by just going trough all those options 3 times in a row without actually knowing what I did ^^

It is worth a shot. I will try to think of a better answer :wink:

Hey kokostas2001!

This might sound stupid, but it looks like you’re setting your input mode to UI only in your level BP this is going to disable your characters ability to move when you enter the level. If you’re setting your input to UI only without resetting it with another event, your char will be stuck in the UI only mode which will disable your chars ability to move.

If you’d like you can PM me your project and I can see where the errors are.

Hope I can help more!

Entro

1 Like

I will try it right now thanks

Yes i found it, when the topdownexamplemap level (on begin play) i had set the game only input but i had not a target!!! THANKS A LOT