Endless Runner?

jasontuttle

New member
Hi @Justin,

I'm working on an endless runner and can't figure out how to go about setting my player to start running as soon as the game starts. Any help would be greatly appreciated.

Thanks!
 
You could use Move Towards to start the character moving towards a fixed point: https://opsive.com/support/document...er/character/abilities/move-towards-location/

You can also manually call CharacterLocomotion.Move every tick to manually move your character without requiring player input. For example, characterLocomotion.Move(0, 1, 0) will move the character forward. (You'll need to get a reference to the character's CharacterLocomotion component, which exists inside of the Opsive.UltimateCharacterController.Character namespace).
 
You could use Move Towards to start the character moving towards a fixed point: https://opsive.com/support/document...er/character/abilities/move-towards-location/

You can also manually call CharacterLocomotion.Move every tick to manually move your character without requiring player input. For example, characterLocomotion.Move(0, 1, 0) will move the character forward. (You'll need to get a reference to the character's CharacterLocomotion component, which exists inside of the Opsive.UltimateCharacterController.Character namespace).

Thanks Andrew -- I'll give your suggestions a try.
:)
 
Top