So, I have an array of four square platforms that rotate in a circle around a center point. They each pass by the square that the player spawns on. When the player jumps onto one of the platforms to ride it around the loop, the Character Controller becomes a child of the platform, but that means that when the player jumps onto the platform, their rotation gets switched to the platform’s current rotation. I’d like the player to be able to move freely while the platform carries them around, but I can’t figure out how to prevent the rotation issue and move the player with the platform without essentially gluing their feet to the it. Are there any ways to allow a player to ride the platforms while still being completely in control of their rotation? The code I’m currently using is below. The platforms are parented by a null object so that they can rotate as a single entity.


It worked perfectly. Thank you for your help. I'm new to Unity/C# programming so it's really cool that there's such a supportive community.
– Mr_Mertz