When I end one layout and want to move to another, what is the best way to get a sprite to go into the next level appearing to continue on the path its traveling on?
What is the logic you've used in the first layout?
Record the Sprites X & Y in global variables, then recreate the sprite on the new layout with those positional values
Or you can set "Global=yes" for this sprite. When you change layout, the sprite will not be destroyed and will keep all its properties, variables etc.
Develop games in your browser. Powerful, performant & highly capable.
I did set global to yes. Then I set up a collision and on collision did a go to to the next layout. Did not work.