Rub / Rubbing Mecanic / Algorythm

Hi,

I’m looking for a basic gameplay mecanic : rub (rubbing)

I’m using actually this condition :

“Object is being dragged” => Action => Add “Score +1”

Problem is : if I just touch without dragging, the score also increments.

I try to add “Speed of Object > 0” to the condition but it doesn’t work

any ideas ?

For me, the speed of object is not a good choice. I have preference for performing the distance between old and new position of the object after dragging operation.
For that, you memorize in 2 variables the X and Y postion of your object with your “Object is … dragged?”
Then, you must test in a condition that dragging operation is over: in this case, you calculate again the X and Y position of the object, always in variables (new variables)
To terminate, you analyse the difference between the variables to decide if the object has effectively been moves or not.