hello, i was wondering how to load a different level based on how much points that was collected in the previous level
for example if a player collected 0 points then level A will load next
but if the player collected 1 point then level B will load next
Just check if point number is equal or higher then specific amount of points using branch and =< nodes, connect true nodes to corresponding level switch, false to next branch creating the chain, do it order of highest condition to lowest.
also if you want to have more than two options you could use a select node or a switch. these two options would allow you to determine which level based on the int input.