Silverlight animation not smooth - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T22:54:05Z http://stackoverflow.com/feeds/question/1064439 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1064439/silverlight-animation-not-smooth 1 Silverlight animation not smooth Andrej 2009-06-30T15:43:16Z 2009-07-04T14:32:51Z <p>Hi,</p> <p>When trying to animate objects time/frame based in Silverlight (in contrast to using something like DoubleAnimation or Storyboard, which is not suitable e.g. for fast paced games), for example moving a spaceship in a particular direction every frame, the movement is jumpy and not really smooth. The screen even seems to tear.</p> <p>There seems to be no difference between CompositionTarget and DistpatcherTimer. I use the following approach (in pseudocode):</p> <pre><code>Register Handler to Tick-Event of a DispatcherTimer In each Tick: Compute the elapsed time from the last frame in milliseconds Object.X += movementSpeed * ellapsedMilliseconds </code></pre> <p>This should result in a smooth movement, right? But it doesn't. Here is an example (Controls: WASD and Mouse): <a href="http://home.arcor.de/neoinferno/Silverlight/Ion/" rel="nofollow">Silverlight Game</a>. Although the effect I described is not too prevalent in this sample, I can assure you that even moving a single rectangle over a canvas produces a jumpy animation.</p> <p>Does someone have an idea how to minimize this. Are there other approaches to to frame based animation exept using Storyboards/DoubleAnimations which could solve this?</p> <p>Edit: Here a quick and dirty approach, animating a rectangle with minimum code (Controls: A and D) <a href="http://home.arcor.de/neoinferno/Silverlight/Animation/" rel="nofollow">Animation Sample</a></p> <p>Xaml:</p> <pre><code> &lt;Grid x:Name="LayoutRoot" Background="Black"&gt; &lt;Canvas Width="1000" Height="400" Background="Blue"&gt; &lt;Rectangle x:Name="rect" Width="48" Height="48" Fill="White" Canvas.Top="200" Canvas.Left="0"/&gt; &lt;/Canvas&gt; &lt;/Grid&gt; </code></pre> <p>C#:</p> <pre><code>private bool isLeft = false; private bool isRight = false; private DispatcherTimer timer = new DispatcherTimer(); private double lastUpdate; public Page() { InitializeComponent(); timer.Interval = TimeSpan.FromMilliseconds(1); timer.Tick += OnTick; lastUpdate = Environment.TickCount; timer.Start(); } private void OnTick(object sender, EventArgs e) { double diff = Environment.TickCount - lastUpdate; double x = Canvas.GetLeft(rect); if (isRight) x += 1 * diff; else if (isLeft) x -= 1 * diff; Canvas.SetLeft(rect, x); lastUpdate = Environment.TickCount; } private void UserControl_KeyDown(object sender, KeyEventArgs e) { if (e.Key == Key.D) isRight = true; if (e.Key == Key.A) isLeft = true; } private void UserControl_KeyUp(object sender, KeyEventArgs e) { if (e.Key == Key.D) isRight = false; if (e.Key == Key.A) isLeft = false; } </code></pre> <p>Thanks! Andrej</p> http://stackoverflow.com/questions/1064439/silverlight-animation-not-smooth/1082305#1082305 0 Answer by Johannes for Silverlight animation not smooth Johannes 2009-07-04T14:32:51Z 2009-07-04T14:32:51Z <p>Hi Andrej, I have got the same problem. There is one thing that I would do in a different way in the OnTick method: Save the Environment.TickCount once at the beginning of the method so that "lastUpdate" gets exactly the value which was used for the calculation of "diff". However, even with this changed, the jumpy, not smooth animation does not disapear. I hope someone can help us!</p>