Hundreds of features to explore
Games made in Construct
Your questions answered
Trusted by schools and universities worldwide
Free education resources to use in the classroom
Students do not need accounts with us
What we believe
We are in this together
World class complete documentation
Official and community submitted guides
Learn and share with other game developers
Upload and play games from the Construct community
Game development stories & opinions
For example when I clicked on some button, object will smooth move +20 pixel up. I made something like this with LiteTween but it moves X+20 about global X, so it goes off the screen. Making it relative value does't help.
StickJump
litetween should be able to do what you want... so try looking into the settings or make a small sample for us to look at...
the other way to do it would be to use lerp. which would work fine, but is a manual way to do what litetween does for you.
Develop games in your browser. Powerful, performant & highly capable.
I am always using lerp for that purpose.
On start of layout update your object with a variable containing the original X and Y of the object.
Then move it relative to that.