Hello guys. I just want to know when the player takes a print screen, but somehow Godot seems unable to detect that key in particular.
func _input(event):
if Input.is_key_pressed(KEY_DELETE): #or any other key
print("works fine")
if Input.is_key_pressed(KEY_PRINT):
print("...this not :c")