Added a little change for ppl who got frustated with always having to 'set target' when starting tween. Download on the first page.
Explanation about the frustration:
1. Say we have an apple sprite on coordinate (50,50) with Litetween behaviour and DragDrop on it.
2. We set target to x: 100 relative and y: relative on the "On Layout Start" condition.
3. When apple is mouse right-clicked, we set it to start the tween.
What supposed to happen for MOST people:
Apple dragged to 100, 100 using dragdrop
Apple right clicked
Apple moves to 200, 200
What really happened:
Apple dragged to 100, 100 using dragdrop
Apple right clicked
Apple teleports to 50,50 then moves to 150,150
How to fix it in the old litetween:
Do not set target x:100, y:100 in the start layout, force target recalculation on the On Right mouse click, just before starting tween.
Some people complains to me about this. This is not a bug, but a rather poor design due to my inconclusiveness -.- (sorry).
So, I added a little fix on the litetween, when you are starting tween, you can force recalculation using the new option, the default is the old litetween behaviour.
PS: For people who are affected by this, I hope you guys can give me input about how I should tackle this.