<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: More Timer/Interpolator Tweaks</title>
	<atom:link href="http://blog.nickgravelyn.com/2009/12/more-timerinterpolator-tweaks/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.nickgravelyn.com/2009/12/more-timerinterpolator-tweaks/</link>
	<description></description>
	<lastBuildDate>Fri, 23 Jul 2010 01:34:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Rabid Baboon</title>
		<link>http://blog.nickgravelyn.com/2009/12/more-timerinterpolator-tweaks/comment-page-1/#comment-446</link>
		<dc:creator>Rabid Baboon</dc:creator>
		<pubDate>Tue, 06 Apr 2010 20:18:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nickgravelyn.com/?p=1216#comment-446</guid>
		<description>I found a bug with repeating timers. If you tell a repeating time to stop it keeps repeating. Changing the Timer.Stop() method to the below fixes it.

public void Stop()
{
    valid = false;
    repeats = false;
}</description>
		<content:encoded><![CDATA[<p>I found a bug with repeating timers. If you tell a repeating time to stop it keeps repeating. Changing the Timer.Stop() method to the below fixes it.</p>
<p>public void Stop()<br />
{<br />
    valid = false;<br />
    repeats = false;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://blog.nickgravelyn.com/2009/12/more-timerinterpolator-tweaks/comment-page-1/#comment-372</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Sun, 31 Jan 2010 18:45:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nickgravelyn.com/?p=1216#comment-372</guid>
		<description>That&#039;s a good point. :)</description>
		<content:encoded><![CDATA[<p>That&#8217;s a good point. <img src='http://blog.nickgravelyn.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jaapgr@googlemail.com</title>
		<link>http://blog.nickgravelyn.com/2009/12/more-timerinterpolator-tweaks/comment-page-1/#comment-371</link>
		<dc:creator>jaapgr@googlemail.com</dc:creator>
		<pubDate>Tue, 26 Jan 2010 18:26:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nickgravelyn.com/?p=1216#comment-371</guid>
		<description>hi
thanks for the update, now its a better and more useable system. i used a mod of your system in a project before and ran in some of this issues. i did not solve them as well as you did (i say time pressure).

but shouldnt the timer.stop method look like this?

public void Stop()
{
valid = false;
tick = null;
Tag = null;
}

to avoid referencing classes. i mean, when the timer is stopped, nothing can start it again so its useless. we can as well kill all references cant we?</description>
		<content:encoded><![CDATA[<p>hi<br />
thanks for the update, now its a better and more useable system. i used a mod of your system in a project before and ran in some of this issues. i did not solve them as well as you did (i say time pressure).</p>
<p>but shouldnt the timer.stop method look like this?</p>
<p>public void Stop()<br />
{<br />
valid = false;<br />
tick = null;<br />
Tag = null;<br />
}</p>
<p>to avoid referencing classes. i mean, when the timer is stopped, nothing can start it again so its useless. we can as well kill all references cant we?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
