UE4 cannot copy movement input to third person controller?

Hey Guys

I am new to unreal engine 4 and i am trying to copy and paste the movement controls into the third person controller but it’s not copying the nodes for movement across?

Examples:

Copy from Character BP:

http://postimg.org/image/yr108ana3/

Pasting to third person controller BP:

http://postimg.org/image/xnlpw5r8r/

I’m sure i’m missing something simple but any information would be appreciated

Thanks

Your Character Blueprint is inherited from Character and the “Add Movement Input” is function that is found from Pawn. Character is descendant of Pawn so the function is also available to Character BP. When you copy and paste your nodes to Player Controller the “Add Movement Input” function disappears because it does not exist on the Controller (since it does not inherit from Pawn). If you want to pass the input values from Controller to your Character you have to “Get Controlled Pawn” (or something like that) on your Controller and use it to pass the values to the Pawn.

Hope this helps, unfortunately I’m not on my development machine so I can’t show the node setup in image form. :slight_smile: