How to stay in crouching position?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: 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?

:bust_in_silhouette: Reply From: lincolnpepper

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.

Thanks that worked!

agnus | 2018-08-06 14:40

Is there a video about this ?

kareem_farrag | 2022-12-28 16:00