Hi,
simple question: How can i tell a Draggable that all values during dragging and during throwing are rounded values. During dragging it seams that it uses rounded values already, but when it came to the second part, where a tween for throwing takes control, the values are not rounded anymore. This leads to blurry text or little gaps i.e. between images (translate3D(23.3234233, ...).
I know i can request the tween (via draggable.tween), which is created after onDragEnd, but i have no chance to set roundProps to a tween instance which is already created?
In my view, the easiest solution would be to have a roundProps-properties to set via the vars-object when creating a Draggable.
Draggable.create("#yourID", {type:"x", throwProps:true, roundProps:["x"]});
Thanks.