The title says it all. I’m looking for a way to move objects along a path with transition. Has anyone figure out a solution for this? [import]uid: 98652 topic_id: 27105 reply_id: 327105[/import]
Using a for loop perhaps?
EG:
[code]
–Assumes path is a table of paths
for i = 1, #path do
transition.to(object, {x = path[i].x, y = path[y].y})
end
[/code] [import]uid: 84637 topic_id: 27105 reply_id: 110021[/import]
Thanks Danny, that’s pretty easy solution. [import]uid: 98652 topic_id: 27105 reply_id: 110024[/import]