UI Single Step Movement

I’m making a menu and I want to know if its possible to make travelling in said menu with Focus single step, so you can’t just hold down buttons to zoom across it, mainly since right before you use it you’re probably already moving and I don’t want it to make you scroll a lot right after.

I don’t think the built in focus system can be adjusted in that way.

You can put something like that in your menu script:

func _input(event: InputEvent) -> void:
	if event.is_echo():
		get_viewport().set_input_as_handled()