Hi, I am wanting to create a 2d sprite game and have come a long way. However, when I press my F key to change to my attack the attack happens but the branch stays True for ever and never returns false. I want to know if its possible to change it to false or reset the F key press.
Bools are defaulted to false. In your attack, you probably set it to true. You need to reset that bool back to false after your attack. So, set bool variable to FALSE after your attack is complete.
THANK YOU !!! That worked perfectly thank you so much.