Is it possible to temporarily ignore certain keys that are bound in the project settings input map?
Basically i want to add functionality to this InputEventKey but i already have the 1 key bound and being used in a different script. So i want to temporarily ignore the input map settings while a certain bool is true or something like that.. is it possible?
if event is InputEventKey:
if event.pressed and event.keycode == KEY_1:
print("functionality")