2D-Character-Controller
2D-Character-Controller copied to clipboard
Fix typo that may cause crouch to always be true
A typo in the if
statement in line 67 may cause the crouch
bool to always check true
. This revision simply changes the (!crouch)
in line 67 to the intended (crouch)
so that the script works as expected. Thank you!