if event.is_action_pressed("object_zero"):
object = 0
elif event.is_action_pressed("object_one"):
object = 1
elif event.is_action_pressed("object_two"):
object = 2
elif event.is_action_pressed("object_three"):
object = 3
is there anyway i can put this into a match statement instead of elifs?