I have it set up like this:
func _physics_process(delta): if Input.action_press("ui_up"): print("up pressed")
This still does not work. It must be some kind of setting. It worked before.
Isn't it supposed to be:
func _input(event): if Input.is_action_pressed("ui_up"): print("up pressed")