Hello. Here is a question - how to Construct 2 to smooth moving object at a certain distance?
For example there is a button. When you click on it the sprite moves smoothly on the job distance.
Develop games in your browser. Powerful, performant & highly capable.
Can you confirm what is meant by "job distance?" Might lerp be what you are looking for? It eases an objects movement in and out.
lerp(x1,x2,1)
Have you seen the 'move to mouse' example in Construct 2's examples folder?