I have a seemingly unique question as I can't find anything online about it. I'm making a Pokemon Snap / Penko Park like and have pretty much all of the prototyping done. The issue I'm running into is the ability for the cart to change tracks. Using one PathFollow is perfectly fine but in those games you sometimes get the option to go on a different path. I'm wondering if there's a way to make something like that happen. I'm unsure if any of these processes would be the best but I've thought about a couple ways to try to make it work.

  1. Make the "main path" run through the whole thing and then perform a check at given percentage points to then snap the cart to another path. Then when that path reaches 100% snap it back onto the "main path" at the correct percentage.

  2. Much like a regular train network have separate paths for each section. Once the cart reaches 100% on the red line, check to see which direction is being held and if it's left then jump to the green. If it's right then jump to the blue. Then once either of those paths reach 100% jump onto the purple.

  3. have 2 paths running on top of each other and toggle which one you're following when you choose a direction. Then once you reach the point of the fork happening remove the ability to toggle and lock you onto that path. Then once the paths overlap again bring back the ability to toggle between each of them.

I don't know if any of these would work or if there's an even simpler solution that I'm missing. Any input would be greatly appreciated!

  • xyz replied to this.

    The second looks better because the process of the turn point is easy to get

    UndercoverWitch Maintain a data structure that holds the network of paths and their crossroads. This will be able to handle either number 1 or number 2. I'd opt for number 2 for simplicity.