Using a config size of 320 x 480, the “content pixels” and “actual pixels on the device” will differ on an iPad. For example, you have to drag an object with your finger 4 actual pixels on the device before the position changes by 1 content pixel. This creates an “unsmooth” effect since the dragged image jumps by 4 content pixels at a time. By printing event.x to the console, I have seen that the “moved” phase of the listener actually gets triggered although event.x remains the same (when dragging just a tiny amount). This means that the listener is triggered by the move although nothing has actually moved on the screen.
My question: can fractional x and y coordinates can be read in a touch listener?
I asked this question along time ago but the only suggestion I got was to change the config size, but that would mean having to re-create all graphics, which is not an option for me. Hopefully there is another solution that I am not aware of…