Topic was automatically imported from the old Question2Answer platform.
Asked By
agnus
I want my character to stay in a crouching position when I press the down key once, and stand up again when pressing the up key.
I don’t want to hold down the entire time while chrouching, but that is the only way I found so far.
Is there an easy way for this?
A simple way to fix this is to create a boolean called something like crouched. Then you can toggle the boolean between true and false with crouched = !crouched and make the player crouch if the crouched variable is true and not be crouching if the crouched variable is false.