Character controller problem jump/move

eferaga

26-05-2012 18:38:27

Hello, the problem i have is that when i try to jump and move at the same time i cant do it, it just jump but not move at all in the air, how can i acheive the movement in the air?

saejox

27-05-2012 14:15:36

Hello, the problem i have is that when i try to jump and move at the same time i cant do it, it just jump but not move at all in the air, how can i acheive the movement in the air?

character controller that comes with critter is just an example.
Create your own character controller by inheriting Critter::CharacterBase. Use CritterAnimatedCharacter.cpp as an example.
InputHelper also does nothing, dont use it.

eferaga

27-05-2012 14:57:08

aThanks for your reply, finally i made it to jump and move at the same time doing the two calls ACC::forward() and ACC::up() at the same time before making setInput(inputHelper), but i still have some little problems with it, i'll try making my own character controller