Handles and ArcHandles do not sink input for mobile devices

Hey, I have a very simple question. I have set up a Btools-like system which is perfectly functional. However, it is bugging me like crazy that it’s so hard to use on mobile because the Handles and ArcHandles objects do not sink input. It causes the user to look around at the same time.

Are there any solutions to this other than making my own Handles? I would rather not do that, but I will if I have to since I was already considering it (the default handles look bad)

I have searched online for the past 20 or so minutes, and I can’t find any mention of this.

2 Likes

Hey guys! I found the solution myself using ContextActionService. This is an amazing service now that I know about it. If anyone else needs the solution, this is how I did it:

handles.MouseButton1Down:Connect(function()
	
	ContextActionService:BindAction("MobileInputSinking", function() end, false, Enum.UserInputType.Touch)
end)

handles.MouseButton1Up:Connect(function()
	
	ContextActionService:UnbindAction("MobileInputSinking")
end)