Hi
I have set up a character SetWalkSpeed on Keypress in the GlobalScript asc which works but is there a setting which will make it more smoother instead of jolting?
I'm not over concerned as it is negotiable, just knowledge seeking for improvement.
if (keycode==eKey4) {
cindy_bones.SetWalkSpeed(20, 20);
}
cheers
barefoot
The WalkSpeed is the amount of pixels the character moves in between frames. To make a character faster, one should decrease Character.AnimationSpeed (which is the number of game loops between frames).
Thank you Khris :=
barefoot