Hi there, I was wondering if it was possible in C3 to make a line reveal animation similar to this? https://images.app.goo.gl/4usWn5LLeBd1NRFD6
Basically I have a bunch of lines connecting nodes in my world map and as you complete one node I want the next to be revealed with the line being drawn from the current node to the next.
Yes, you can do this with the drawing canvas object.
Thanks, I've had a little look at the DrawingCanvas & am not sure how I would implement this kind of animation through it. If you could provide me with further instruction it would be greatly appreciated =)
Is this close to what you want to achieve?
Here the flexible version with less events, reducing complication: connect_match.capx
Here's one way to do it. You place sprites in order to make the path. Then as time passes they are made visible. An added nice feature is to draw lines between the points, as well as to a sprite moving along the path.
dropbox.com/s/48gr76yk5flvasa/drawPath_overTime.capx
This example only does one path. To do multiple paths the events would have to be tweaked.
Develop games in your browser. Powerful, performant & highly capable.
Cheers R0J0hound this is exactly what I was looking for!