trying to mimic the movement of this game.

https://itunes.apple.com/us/app/spinner-prologue/id284967502?mt=8

i have the rotating working but
i think the problem im having is adjusting the reference point of the world so it always rotates from the center of the screen

Do you rotate the maze with a runtime?

If yes there are two ways that I would suggest.

  1. Use the object.xReference and object.yReference trait. You only need some mathematics to estimate the cordinates when the maze is rotated.

  2. Always rotate the maze around the same point and change it’s position instead. You will also need some basic math here.

Do you rotate the maze with a runtime?

If yes there are two ways that I would suggest.

  1. Use the object.xReference and object.yReference trait. You only need some mathematics to estimate the cordinates when the maze is rotated.

  2. Always rotate the maze around the same point and change it’s position instead. You will also need some basic math here.