Godot Help
If you are looking to ask a question about or need help with an issue using the Godot game engine. Please don't forget to mark the "Best Answer" if a solution is posted.
Latest engine news:

Is there a better way to assign different weapons to different number keys?
- 09kingarthur replied
- I feel like YandereDev coding like this, but I can't come up with a better solution that works: func WEAPONSELECT(): if Input.is_action_just_pressed("weapon_1"): WEAP = 1 weapon_just_switched.emit() i...