With my road I generate planes in code which end up being the road tiles (like scalextric pieces).
With my road I generate planes in code which end up being the road tiles (like scalextric pieces). Sometimes I have the challenge that my player object can't make the ramp between 2 pieces. - > ______o----------- In essence the player gets stuck in the geometry. What could also happen is the diff in steps are such that -- > ______ ____ o-> Player falls through geometry. I'm having to calculate a slope between the 2 points using pythagoras and generating an intermediate sloping plan. I have to space the steps further aprt. ___________ / / ___ / Sorry for the ascii. It's late and my mind is a bit Destiny2 frazzled. Having to work on the sloping bit, I realised that I haven't used Pythagoras since high school. Did the pythagoras rotation calculation earlier in c#. I need to create the plan and do the spacing tomorrow. Hope it works! BTW, I have it running on my phone now, which is a rea...