WHAT I AM TRYING TO DO
On the mobile screen, I want to have a steering wheel object that the Player will touch and then drag along the X-axis, which will, in turn (heh heh..."turn"...okay, I'll stop), the Wheel. As you can see in the screenshot, I'm using Lerp and Unlerp to accomplish this.
Regardless of where the initial Touch is at on the screen, dragging left or right from that point should rotate the Wheel accordingly. For the most part, this works...
THE PROBLEM
When I click on the Wheel, it "snaps" to an angle rather than remaining at the angle it was "at rest". Because I store the initial Touch.AbsoluteX value to an instance variable in the Wheel, and the rotation of the Wheel is based upon how far the Touch is dragged from that same initial X value, it doesn't make sense why the Wheel snaps to any other angle simply from an initial Touch.
This problem is repeated upon Touch End. The Wheel does not Tween/rotate to the desired angle when I release the Touch. Instead, it snaps to a different angle.
WHAT I NEED
I'm hoping that along with a possible solution, someone might help me to better understand the Touch behavior because I do not use it very often at all. There are particulars I'm definitely not familiar with concerning Touch devices (that seems obvious to me). Or maybe it's just the way Construct 3 handles these things. I don't know.
I will keep working at this and trying different things, but I would be grateful for some insight.
Thank you.