how I make my character run away in a wall equal to the game Prince of Persia?
This requiers you to know Python.
If you do not know it yet, i hope you want to learn it because you can do all this crazy stuff way more easier in python then in logic bricks.
About the wall walking.
You should have a sensor that checks to any axis but z and -z.
If he is positive and you pressed jump, then move the player against the wall,
continou to reset his position and velocity,
simulate this all with physic calculations like, behave in an arc.
And finaly when the timer has reached the limit, disable the walk,
stop pushing player against the wall and reseting position.
That should be it.
Greets Equal
well, if you turn off world gravity, that’s a start.
Then, add an always that connects to a movement actuator.
add a force of 9.8 down the Z axis. this means that whatever orientation the player is in, it pushes along it’s Z axis (make sure the L button is on)
then, use python to rotate the player, and it should still work.