I am trying to create movement controls in the level blueprint for individual pawns in game, however i don’t know how to have both of them be in the event tick function. currently i have one in the event tick section, moving on button hold as it should, however the one outside of event tick only works every time you hit the button and not hold it.
is there a way to add the code to the event tick or make the code outside continuously update and look for input?
so i dont actually know how to do that.
my original main issue was that i have multiple different pawns each of which i was trying to control with a different key (so like the pawn that is my base it moves with AD and pawn that is the arm moves with WS) [The thing i am creating is a robotic arm]
however when inputting into each possessed pawn, only one pawn can be possessed and read from at a time, meaning i needed to create a way to swap between pawns to receive separate imputs. i curently have this swap set up to a key press and while this works, it is not what i want.
can i create one blueprint with separate meshes together inside of them and then target the separate meshes as rotation points instead of doing them as separate pawns?