Help: 3d Side Scroller, Player turns facing away from camera.

Hi,

When playing my 3d Side Scroller, when I go from left to right and visa versa, my player shows her back to the camera.

Is it easy to make her turn so she faces towards the camera when changing direction?

Hello,
As movement is from event “inputaxis moveright” with +1 / -1 (have a look at projects settings / inputs, if you wonder what i mean), you can’t just add a set actor rotation, but if you add a bool “lefty” true on event “a” and false on event “d” you can use it as condition of a branch which will set your actor rotation 90 or -90 before your add movement input.