How do I get Arc Handles with just one axis?

When I add ArcHandles to a part, they look like this, with 3 axes.

However in some games (Theme Park Tycoon 2 as an example) - there are uses of ArcHandles with only one axis visible.

image

I cannot see this as a property under the ArcHandles class. Does anyone know how this is achieved? My only guess is that it uses a custom system made with CylinderHandleAdornments. But creating single-axis ArcHandles using that would take a while.

3 Likes

No need to code your own ArcHandles, this is natively supported. ArcHandles.Axes takes an Axes object.

ArcHandles.Axes = Axes.new(Enum.Axis.X, Enum.Axis.Y, ...)
7 Likes

Oh wow, I’m surprised this didn’t show up in the properties window!

Thanks for saving me some pain.

3 Likes