Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: Gurok on Fri 10/01/2014 09:51:18

Title: Keyboard Stops Movement
Post by: Gurok on Fri 10/01/2014 09:51:18
Hello,

If I press a key on the keyboard while my player character is moving, the character stops moving. Is there any way to prevent this?
Title: Re: Keyboard Stops Movement
Post by: Khris on Fri 10/01/2014 10:03:19
Any key..? Only the arrow keys should stop them.

Regardless, it's the KeyboardMovement module. Remove it from the Project tree (Scripts node), then go to game_start in GlobalScript.asc and remove the setup line.
Title: Re: Keyboard Stops Movement
Post by: Gurok on Fri 10/01/2014 10:07:51
Removing the initialisation code in game_start did the trick. Now to work out why it's happening with any key.