Search⌘ K
AI Features

Exercise: Linking Worlds

Explore how to build interconnected maze environments by linking multiple spheres into a single multisphere grid. Learn to modify maze cell classes and generate maze paths across these linked worlds using algorithms such as the Recursive Backtracker and Prim's algorithm. This lesson enhances your skills in expanding maze complexity beyond single structures.

We'll cover the following...

We can generate mazes on a sphere now, which is great. But what if we had an environment with multiple spheres instead of a single sphere? What if this were a game, and we had to navigate from a world to its moons?

Problem statement

Link multiple sphere grids into a single multisphere grid. ...