I use Blend 4 (storyboard) to create animation movement for a wisp. But now I was required to have the wisp move in curve path. I have found some solution in code (from programming windows phone 7 book) Part III chapter 2 XNA. However I just wonder if we can make curve movement by Blend 4 or any other easier way?

link|improve this question

feedback

2 Answers

It depends on how dynamic you want the animation. Using Blend, you can use Storyboards to create that type of animation very easily. The downside to storyboards is that they are quite limited in terms of flexibility. If the curves will always be the same, I recommend using the Storyboard approach. If you need a lot of flexibility in the animation (in real time), then you'll have to do it in code.

link|improve this answer
assume that the curves will always be the same, how can I do that? – ng_ducnghia Jul 22 '11 at 3:10
Can you share the XAML for your curves? – Alison Jul 22 '11 at 3:20
feedback

Animation storyboards are the easiest way to go but if you're trying to animate along a complex path like a curvy line then the best way to go is to use the PathListBox class (MSDN). The PathListBox class basically will let you easily animate an object along path no matter how crazy the path may be.

Here are some links for you to check out.

link|improve this answer
Interesting! But we have to put the animation image inside the listBox? – ng_ducnghia Jul 22 '11 at 3:07
My animation is an image, and I may have many wisp flying on the background of the page... – ng_ducnghia Jul 22 '11 at 9:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.