Hello,
i want my code to decide for itself whether it will change so Scene1 or Scene2 or Scene3 and so on
i need it like that because i want the game to shuffle through randomly not just in the typical order because it gets to easy then
for better understanding im gonna write it in pseudo code:
func _on_Button_pressed:
case1:
change_scene("Scene1")
case2:
change_scene("Scene2")
case3:
change_scene("Scene3")
and so on