I'm working on a game where the player constantly moves to the right, and objects need to be interacted with on the go.
It's crucial the player keeps moving to the right. As a result, I turned blocking off. However, whenever the player clicks the floor or any of the objects, the player stops short. How can I fix this?
Usually, if something happens in the game, there is a script command or game setting that tells game to do so.
You need to find out if there are any scripts that control player reaction on clicks. Search for "on_mouse_click" function in all the script modules you have in the project, and see what they do.
Additionally, check the option states in the "General Settings" -> "Character movement" group.