<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Seb Lee-Delisle &#187; Particles</title>
	<atom:link href="http://sebleedelisle.com/category/particles/feed/" rel="self" type="application/rss+xml" />
	<link>http://sebleedelisle.com</link>
	<description>Actionscript Games, Physics and Papervision3D</description>
	<lastBuildDate>Sat, 31 Jul 2010 15:41:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>3D engine in 10 lines*</title>
		<link>http://sebleedelisle.com/2010/03/3d-engine-in-10-lines/</link>
		<comments>http://sebleedelisle.com/2010/03/3d-engine-in-10-lines/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 00:03:55 +0000</pubDate>
		<dc:creator>Seb Lee-Delisle</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash 3D]]></category>
		<category><![CDATA[Particles]]></category>
		<category><![CDATA[Speaking]]></category>
		<category><![CDATA[fgs]]></category>

		<guid isPermaLink="false">http://sebleedelisle.com/?p=913</guid>
		<description><![CDATA[UPDATE &#8211; HTML 5 Canvas version now online During my session at the Flash Gaming Summit, I showed a very simple 3D particle renderer to attempt to demystify the process of converting 3D into 2D. 
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_Particles3D_262359890"
			class="flashmovie"
			width="500"
			height="350">
	<param name="movie" value="http://sebleedelisle.com/wp-content/uploads/2010/03/Particles3D.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://sebleedelisle.com/wp-content/uploads/2010/03/Particles3D.swf"
			name="fm_Particles3D_262359890"
			width="500"
			height="350">
	<!--<![endif]-->
		 
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object> Click and drag. The actual code that converts from 3D to [...]


Related posts:<ol><li><a href='http://sebleedelisle.com/2006/10/new-improved-cacheasbitmap/' rel='bookmark' title='Permanent Link: New improved cacheAsBitmap!'>New improved cacheAsBitmap!</a></li>
<li><a href='http://sebleedelisle.com/2007/06/flash-sparkler/' rel='bookmark' title='Permanent Link: Flash Sparkler'>Flash Sparkler</a></li>
<li><a href='http://sebleedelisle.com/2006/11/a-cacheasbitmap-vs-supercacheasbitmap-demo/' rel='bookmark' title='Permanent Link: A cacheAsBitmap vs superCacheAsBitmap demo'>A cacheAsBitmap vs superCacheAsBitmap demo</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fsebleedelisle.com%252F2010%252F03%252F3d-engine-in-10-lines%252F%22%2C%20%22shorturl%22%3A%20%22http%3A%2F%2Fbit.ly%2FaoZlha%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%223D%20engine%20in%2010%20lines%2A%20%23%22%20%7D);"></div>
<p><strong>UPDATE &#8211; <a href="http://sebleedelisle.com/2010/03/html5-canvas-3d-particle/">HTML 5 Canvas version now online</a></strong></p>
<p>During my session at the Flash Gaming Summit, I showed a very simple 3D particle renderer to attempt to demystify the process of converting 3D into 2D. </p>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_Particles3D_1528460842"
			class="flashmovie"
			width="500"
			height="350">
	<param name="movie" value="http://sebleedelisle.com/wp-content/uploads/2010/03/Particles3D.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://sebleedelisle.com/wp-content/uploads/2010/03/Particles3D.swf"
			name="fm_Particles3D_1528460842"
			width="500"
			height="350">
	<!--<![endif]-->
		<br />
<a href="http://sebleedelisle.com/2010/03/3d-engine-in-10-lines/" ><img src="http://farm3.static.flickr.com/2710/4417877267_f312beb0d8.jpg" width="498" height="348" alt="Flash simple 3D particle renderer" /></a><br />

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object><br />
<em>Click and drag. </em></p>
<p>The actual code that converts from 3D to 2D is easy! First you have to figure out how much you have to resize things depending on how far away they are. (ie what their z position is).</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;">newscale = f<span style="color: #66cc66;">/</span><span style="color: #66cc66;">&#40;</span>f+z<span style="color: #66cc66;">&#41;</span>;</pre></div></div>

<p>Where f is a notional field of view. Changing this will change how wide the (virtual) camera is. A good starting point would be 250. Then you multiply the 3D x and y positions by the newscale to get their 2D x and y positions.</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;">x2d = x3d <span style="color: #66cc66;">*</span> newscale; 
y2d = y3d <span style="color: #66cc66;">*</span> newscale;</pre></div></div>

<p>So that&#8217;s where we put our particle, in this case represented by a MovieClip that we also need to resize by our new scale :</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;">clip.<span style="color: #006600;">scaleX</span> = clip.<span style="color: #006600;">scaleY</span> = newscale;</pre></div></div>

<p>And then the final thing we need to do is sort by the z position so that particles in front appear above particles in the background.</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;">particles.<span style="color: #0066CC;">sortOn</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;z&quot;</span>, <span style="color: #0066CC;">Array</span>.<span style="color: #006600;">DESCENDING</span> <span style="color: #66cc66;">|</span> <span style="color: #0066CC;">Array</span>.<span style="color: #006600;">NUMERIC</span><span style="color: #66cc66;">&#41;</span>; 
<span style="color: #b1b100;">for</span><span style="color: #66cc66;">&#40;</span><span style="color: #000000; font-weight: bold;">var</span> i:<span style="color: #0066CC;">int</span> = <span style="color: #cc66cc;">0</span>; i<span style="color: #66cc66;">&lt;</span> particles.<span style="color: #0066CC;">length</span>;i++<span style="color: #66cc66;">&#41;</span>
<span style="color: #66cc66;">&#123;</span>
	particle = particles<span style="color: #66cc66;">&#91;</span>i<span style="color: #66cc66;">&#93;</span>;
	particleClip.<span style="color: #006600;">setChildIndex</span><span style="color: #66cc66;">&#40;</span>particle.<span style="color: #006600;">clip</span>, i<span style="color: #66cc66;">&#41;</span>; 
<span style="color: #66cc66;">&#125;</span></pre></div></div>

<p>There&#8217;s some other stuff in there too, to create the depth of field blur and also the bitmap trails, but have a look and see what you can do with it.</p>
<p><a href="http://sebleedelisle.com/wp-content/uploads/2010/03/Particles3D.zip">Download the source code for simple 3D engine.</a></p>
<p>* I haven&#8217;t actually counted the number of lines. I&#8217;m guessing it&#8217;s about 10. <img src='http://sebleedelisle.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  </p>



<p>Related posts:<ol><li><a href='http://sebleedelisle.com/2006/10/new-improved-cacheasbitmap/' rel='bookmark' title='Permanent Link: New improved cacheAsBitmap!'>New improved cacheAsBitmap!</a></li>
<li><a href='http://sebleedelisle.com/2007/06/flash-sparkler/' rel='bookmark' title='Permanent Link: Flash Sparkler'>Flash Sparkler</a></li>
<li><a href='http://sebleedelisle.com/2006/11/a-cacheasbitmap-vs-supercacheasbitmap-demo/' rel='bookmark' title='Permanent Link: A cacheAsBitmap vs superCacheAsBitmap demo'>A cacheAsBitmap vs superCacheAsBitmap demo</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://sebleedelisle.com/2010/03/3d-engine-in-10-lines/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Papervision3D snow</title>
		<link>http://sebleedelisle.com/2008/12/papervision3d-snow/</link>
		<comments>http://sebleedelisle.com/2008/12/papervision3d-snow/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 00:00:58 +0000</pubDate>
		<dc:creator>Seb Lee-Delisle</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash 3D]]></category>
		<category><![CDATA[Papervision3D]]></category>
		<category><![CDATA[Particles]]></category>

		<guid isPermaLink="false">http://www.sebleedelisle.com/?p=335</guid>
		<description><![CDATA[I don&#8217;t know about you guys, but at the moment I&#8217;m getting several calls a day asking for Flash Christmas cards. And what do you need in a Flash Christmas card? Christmas snow! Remember last year I completed the 3D-Flash-snow-in-15-minutes challenge at FlashBrighton&#8217;s Big Day Out? Well this year I thought I&#8217;d do the same [...]


Related posts:<ol><li><a href='http://sebleedelisle.com/2007/12/flash-snow-in-15-minutes/' rel='bookmark' title='Permanent Link: Flash snow in 15 minutes!'>Flash snow in 15 minutes!</a></li>
<li><a href='http://sebleedelisle.com/2008/08/changing-a-cubes-material-dynamically-in-papervision3d/' rel='bookmark' title='Permanent Link: Changing a cube&#039;s material dynamically in Papervision3D'>Changing a cube&#039;s material dynamically in Papervision3D</a></li>
<li><a href='http://sebleedelisle.com/2008/02/papervision-billboard-particles/' rel='bookmark' title='Permanent Link: Papervision &quot;billboard&quot; particles'>Papervision &quot;billboard&quot; particles</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fsebleedelisle.com%252F2008%252F12%252Fpapervision3d-snow%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Papervision3D%20snow%20%23%22%20%7D);"></div>
<p>I don&#8217;t know about you guys, but at the moment I&#8217;m getting several calls a day asking for Flash Christmas cards. And what do you need in a Flash Christmas card? Christmas snow! Remember last year I completed the <a href="http://www.sebleedelisle.com/?p=144">3D-Flash-snow-in-15-minutes</a> challenge at <a href="http://flashbrighton.org">FlashBrighton&#8217;s</a> Big Day Out? Well this year I thought I&#8217;d do the same thing with Papervision; now you can add snow to your own 3D scenes!</p>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_ChristmasCard2008_148919930"
			class="flashmovie"
			width="480"
			height="370">
	<param name="movie" value="http://sebleedelisle.com/wp-content/uploads/2008/12/ChristmasCard2008.swf" />
	<param name="quality" value="high" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://sebleedelisle.com/wp-content/uploads/2008/12/ChristmasCard2008.swf"
			name="fm_ChristmasCard2008_148919930"
			width="480"
			height="370">
		<param name="quality" value="high" />
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p>Snowstorm is a DisplayObject3D so you just add it to your scene. And there&#8217;s also a Snowflake.as file too.</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">new</span> SnowStorm<span style="color: #66cc66;">&#40;</span> quantity, flakeSize, cubesize<span style="color: #66cc66;">&#41;</span>;</pre></div></div>

<p>It basically makes a big cube full of snow flakes! The parameters should be fairly self explanatory. <img src='http://sebleedelisle.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Download the source <a href="http://sebleedelisle.com/wp-content/uploads/2008/12/snowstorm.zip">here</a>.</p>



<p>Related posts:<ol><li><a href='http://sebleedelisle.com/2007/12/flash-snow-in-15-minutes/' rel='bookmark' title='Permanent Link: Flash snow in 15 minutes!'>Flash snow in 15 minutes!</a></li>
<li><a href='http://sebleedelisle.com/2008/08/changing-a-cubes-material-dynamically-in-papervision3d/' rel='bookmark' title='Permanent Link: Changing a cube&#039;s material dynamically in Papervision3D'>Changing a cube&#039;s material dynamically in Papervision3D</a></li>
<li><a href='http://sebleedelisle.com/2008/02/papervision-billboard-particles/' rel='bookmark' title='Permanent Link: Papervision &quot;billboard&quot; particles'>Papervision &quot;billboard&quot; particles</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://sebleedelisle.com/2008/12/papervision3d-snow/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>Happy Birthday Keith Peters!</title>
		<link>http://sebleedelisle.com/2008/10/happy-birthday-keith-peters/</link>
		<comments>http://sebleedelisle.com/2008/10/happy-birthday-keith-peters/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 21:15:15 +0000</pubDate>
		<dc:creator>Seb Lee-Delisle</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash 3D]]></category>
		<category><![CDATA[Particles]]></category>

		<guid isPermaLink="false">http://www.sebleedelisle.com/?p=276</guid>
		<description><![CDATA[John, Andy and I thought we&#8217;d chuck a little something together for Keith now that he&#8217;s 44, (or 14 x Pi if you&#8217;re talking his language). Happy Birthday! Related posts:Outline drawing by Keith Peters Snowing screensaver &#8211; happy Christmas from Plug-in Media! Silverlight particles


Related posts:<ol><li><a href='http://sebleedelisle.com/2007/06/outline-drawing-by-keith-peters/' rel='bookmark' title='Permanent Link: Outline drawing by Keith Peters'>Outline drawing by Keith Peters</a></li>
<li><a href='http://sebleedelisle.com/2006/12/snowing-screensaver-happy-christmas-from-plug-in-media/' rel='bookmark' title='Permanent Link: Snowing screensaver &#8211; happy Christmas from Plug-in Media!'>Snowing screensaver &#8211; happy Christmas from Plug-in Media!</a></li>
<li><a href='http://sebleedelisle.com/2007/12/silverlight-particles/' rel='bookmark' title='Permanent Link: Silverlight particles'>Silverlight particles</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fsebleedelisle.com%252F2008%252F10%252Fhappy-birthday-keith-peters%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Happy%20Birthday%20Keith%20Peters%21%20%23%22%20%7D);"></div>
<p><a href="http://rockonflash.wordpress.com/2008/10/20/happy-birthday-keith/">John</a>, <a href="http://blog.zupko.info/">Andy</a> and I thought we&#8217;d chuck a little something together for <a href="http://www.bit-101.com/blog/?p=1586">Keith</a> now that he&#8217;s 44, (or 14 x Pi if you&#8217;re talking his language). <a href="http://www.rockonflash.com/papervision3d/keithbirthday/KeithBDAY.html">Happy Birthday</a>!</p>



<p>Related posts:<ol><li><a href='http://sebleedelisle.com/2007/06/outline-drawing-by-keith-peters/' rel='bookmark' title='Permanent Link: Outline drawing by Keith Peters'>Outline drawing by Keith Peters</a></li>
<li><a href='http://sebleedelisle.com/2006/12/snowing-screensaver-happy-christmas-from-plug-in-media/' rel='bookmark' title='Permanent Link: Snowing screensaver &#8211; happy Christmas from Plug-in Media!'>Snowing screensaver &#8211; happy Christmas from Plug-in Media!</a></li>
<li><a href='http://sebleedelisle.com/2007/12/silverlight-particles/' rel='bookmark' title='Permanent Link: Silverlight particles'>Silverlight particles</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://sebleedelisle.com/2008/10/happy-birthday-keith-peters/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My stuff any use to you? Pay it forward for cancer research.</title>
		<link>http://sebleedelisle.com/2008/10/my-stuff-any-use-to-you-pay-it-forward-for-cancer-research/</link>
		<comments>http://sebleedelisle.com/2008/10/my-stuff-any-use-to-you-pay-it-forward-for-cancer-research/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 18:11:24 +0000</pubDate>
		<dc:creator>Seb Lee-Delisle</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash 3D]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Papervision3D]]></category>
		<category><![CDATA[Particles]]></category>

		<guid isPermaLink="false">http://www.sebleedelisle.com/?p=274</guid>
		<description><![CDATA[Have you ever found any use for any of my stuff? That nifty particle effect on your game? That 3D Papervision website? Or perhaps you&#8217;ve just found my wry sense of humour somewhat amusing? Now&#8217;s your chance to thank me! But I don&#8217;t want anything from you. No, I&#8217;m asking you to pay it forward! [...]


Related posts:<ol><li><a href='http://sebleedelisle.com/2008/10/meet-carlos-ulloa-and-me-at-the-magic-circle/' rel='bookmark' title='Permanent Link: Meet Carlos Ulloa and me at the Magic Circle'>Meet Carlos Ulloa and me at the Magic Circle</a></li>
<li><a href='http://sebleedelisle.com/2008/10/so-close-to-my-target-please-sponsor-my-10k-run/' rel='bookmark' title='Permanent Link: So close to my target &#8211; please sponsor my 10K run!'>So close to my target &#8211; please sponsor my 10K run!</a></li>
<li><a href='http://sebleedelisle.com/2008/10/10k-geekathon-in-pictures/' rel='bookmark' title='Permanent Link: 10K Geekathon, in pictures'>10K Geekathon, in pictures</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fsebleedelisle.com%252F2008%252F10%252Fmy-stuff-any-use-to-you-pay-it-forward-for-cancer-research%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22My%20stuff%20any%20use%20to%20you%3F%20Pay%20it%20forward%20for%20cancer%20research.%20%23%22%20%7D);"></div>
<p>Have you ever found any use for any of my stuff? That nifty particle effect on your game? That 3D Papervision website? Or perhaps you&#8217;ve just found my wry sense of humour somewhat amusing?</p>
<p>Now&#8217;s your chance to thank me! But I don&#8217;t want anything from you. No, I&#8217;m asking you to <em>pay it forward</em>! But unlike the little kid in the film, I&#8217;m actually doing something physical &#8211; next Sunday, just before my presentation at the <a href="http://headconference.com">&lt;head&gt; conference</a>, I&#8217;m running 10K for Cancer Research UK.</p>
<p>My target is £500, but this blog get has thousands of subscribers, so if you all donate a small amount, then maybe I&#8217;ll get to £1000? Or even £2000? Hell maybe even £10,000???</p>
<p><em><strong><a href="http://www.run10ksponsorme.org/sebleedelisle">Please sponsor my run here.</a></strong></em> You&#8217;ll get a warm fuzzy feeling. Or your money back.*</p>
<p><small>* You probably won&#8217;t actually get your money back <img src='http://sebleedelisle.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </small></p>



<p>Related posts:<ol><li><a href='http://sebleedelisle.com/2008/10/meet-carlos-ulloa-and-me-at-the-magic-circle/' rel='bookmark' title='Permanent Link: Meet Carlos Ulloa and me at the Magic Circle'>Meet Carlos Ulloa and me at the Magic Circle</a></li>
<li><a href='http://sebleedelisle.com/2008/10/so-close-to-my-target-please-sponsor-my-10k-run/' rel='bookmark' title='Permanent Link: So close to my target &#8211; please sponsor my 10K run!'>So close to my target &#8211; please sponsor my 10K run!</a></li>
<li><a href='http://sebleedelisle.com/2008/10/10k-geekathon-in-pictures/' rel='bookmark' title='Permanent Link: 10K Geekathon, in pictures'>10K Geekathon, in pictures</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://sebleedelisle.com/2008/10/my-stuff-any-use-to-you-pay-it-forward-for-cancer-research/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Particle tutorial part 2 in Computer Arts magazine</title>
		<link>http://sebleedelisle.com/2008/08/particle-tutorial-part-2-in-computer-arts-magazine/</link>
		<comments>http://sebleedelisle.com/2008/08/particle-tutorial-part-2-in-computer-arts-magazine/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 21:57:02 +0000</pubDate>
		<dc:creator>Seb Lee-Delisle</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash Physics]]></category>
		<category><![CDATA[Journalism]]></category>
		<category><![CDATA[Particles]]></category>

		<guid isPermaLink="false">http://www.sebleedelisle.com/?p=206</guid>
		<description><![CDATA[Part two of my particle tutorial in Computer Arts is featured in issue 152, August 2008. Using the skeletons on the Plug-in Media website as an example, I take you through how to blow things up in Flash! 
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_particlesskeletonswithtextfragged_633166937"
			class="flashmovie"
			width="480"
			height="300">
	<param name="movie" value="http://sebleedelisle.com/wp-content/uploads/2008/08/particlesskeletonswithtextfragged.swf" />
	<param name="quality" value="high" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://sebleedelisle.com/wp-content/uploads/2008/08/particlesskeletonswithtextfragged.swf"
			name="fm_particlesskeletonswithtextfragged_633166937"
			width="480"
			height="300">
		<param name="quality" value="high" />
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object> Source files are included on the CD &#8211; let me [...]


Related posts:<ol><li><a href='http://sebleedelisle.com/2008/02/flash-particle-article-in-computer-arts-magazine/' rel='bookmark' title='Permanent Link: Flash particle tutorial in Computer Arts magazine'>Flash particle tutorial in Computer Arts magazine</a></li>
<li><a href='http://sebleedelisle.com/2008/05/computer-arts-particle-article-now-online/' rel='bookmark' title='Permanent Link: Computer Arts Particle Article now online'>Computer Arts Particle Article now online</a></li>
<li><a href='http://sebleedelisle.com/2007/10/fitc-hollywood-session-blowing-things-up-in-flash/' rel='bookmark' title='Permanent Link: FITC Hollywood Session &#8211; AS3 Particle effects'>FITC Hollywood Session &#8211; AS3 Particle effects</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fsebleedelisle.com%252F2008%252F08%252Fparticle-tutorial-part-2-in-computer-arts-magazine%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Particle%20tutorial%20part%202%20in%20Computer%20Arts%20magazine%20%23%22%20%7D);"></div>
<p>Part two of my particle tutorial in <a href="http://www.computerarts.co.uk/">Computer Arts</a> is featured in issue 152, August 2008.</p>
<p><a href="http://www.computerarts.co.uk/"><img src="http://farm4.static.flickr.com/3035/2787276595_5eefdc2e07.jpg?v=0" alt="Particle tutorial part 2 in Computer Arts magazine" /></a></p>
<p>Using the skeletons on the <a href="http://www.pluginmedia.net">Plug-in Media website</a> as an example, I take you through how to blow things up in Flash!</p>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_particlesskeletonswithtextfragged_103097235"
			class="flashmovie"
			width="480"
			height="300">
	<param name="movie" value="http://sebleedelisle.com/wp-content/uploads/2008/08/particlesskeletonswithtextfragged.swf" />
	<param name="quality" value="high" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://sebleedelisle.com/wp-content/uploads/2008/08/particlesskeletonswithtextfragged.swf"
			name="fm_particlesskeletonswithtextfragged_103097235"
			width="480"
			height="300">
		<param name="quality" value="high" />
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p>Source files are included on the CD &#8211; let me know how you get along and show me what you&#8217;re blowing up!</p>
<p>[UPDATE] You can now find <a href="http://www.computerarts.co.uk/tutorials/new_media/generate_particle_explosions">this tutorial</a> free online <a href="http://www.computerarts.co.uk/tutorials/new_media/generate_particle_explosions">here</a>.</p>



<p>Related posts:<ol><li><a href='http://sebleedelisle.com/2008/02/flash-particle-article-in-computer-arts-magazine/' rel='bookmark' title='Permanent Link: Flash particle tutorial in Computer Arts magazine'>Flash particle tutorial in Computer Arts magazine</a></li>
<li><a href='http://sebleedelisle.com/2008/05/computer-arts-particle-article-now-online/' rel='bookmark' title='Permanent Link: Computer Arts Particle Article now online'>Computer Arts Particle Article now online</a></li>
<li><a href='http://sebleedelisle.com/2007/10/fitc-hollywood-session-blowing-things-up-in-flash/' rel='bookmark' title='Permanent Link: FITC Hollywood Session &#8211; AS3 Particle effects'>FITC Hollywood Session &#8211; AS3 Particle effects</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://sebleedelisle.com/2008/08/particle-tutorial-part-2-in-computer-arts-magazine/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>So long and thanks for all the particles&#8230;</title>
		<link>http://sebleedelisle.com/2008/06/so-long-and-thanks-for-all-the-particles/</link>
		<comments>http://sebleedelisle.com/2008/06/so-long-and-thanks-for-all-the-particles/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 13:50:47 +0000</pubDate>
		<dc:creator>Seb Lee-Delisle</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Particles]]></category>
		<category><![CDATA[Speaking]]></category>

		<guid isPermaLink="false">http://www.sebleedelisle.com/?p=187</guid>
		<description><![CDATA[
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_introweb_888426261"
			class="flashmovie"
			width="445"
			height="340">
	<param name="movie" value="http://sebleedelisle.com/wp-content/uploads/2007/10/introweb.swf" />
	<param name="quality" value="high" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://sebleedelisle.com/wp-content/uploads/2007/10/introweb.swf"
			name="fm_introweb_888426261"
			width="445"
			height="340">
		<param name="quality" value="high" />
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object> After yesterday&#8217;s rather well received Papervision3D session, I&#8217;m now gearing up for what will probably be the last time I present my particles session, Kaboom!!! Blowing things up in Flash I feel like I&#8217;m laying a close friend to rest, they&#8217;ve been with me through the years, the [...]


Related posts:<ol><li><a href='http://sebleedelisle.com/2007/09/as3-particles-1000-extra-free/' rel='bookmark' title='Permanent Link: AS3 Particles &#8211; 1000% extra free!'>AS3 Particles &#8211; 1000% extra free!</a></li>
<li><a href='http://sebleedelisle.com/2008/04/blowing-things-up-in-toronto/' rel='bookmark' title='Permanent Link: Blowing things up in Toronto'>Blowing things up in Toronto</a></li>
<li><a href='http://sebleedelisle.com/2007/06/flash-particles-now-1000-extra-free/' rel='bookmark' title='Permanent Link: Flash Particles &#8211; now 1000% extra free!'>Flash Particles &#8211; now 1000% extra free!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fsebleedelisle.com%252F2008%252F06%252Fso-long-and-thanks-for-all-the-particles%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22So%20long%20and%20thanks%20for%20all%20the%20particles...%20%23%22%20%7D);"></div>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_introweb_1253237569"
			class="flashmovie"
			width="445"
			height="340">
	<param name="movie" value="http://sebleedelisle.com/wp-content/uploads/2007/10/introweb.swf" />
	<param name="quality" value="high" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://sebleedelisle.com/wp-content/uploads/2007/10/introweb.swf"
			name="fm_introweb_1253237569"
			width="445"
			height="340">
		<param name="quality" value="high" />
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p>After yesterday&#8217;s rather well received Papervision3D session, I&#8217;m now gearing up for what will probably be the last time I present my particles session, <em>Kaboom!!! Blowing things up in Flash</em></p>
<p>I feel like I&#8217;m laying a close friend to rest, they&#8217;ve been with me through the years, the ups, the downs, the collisions off the floor. But now I have to move on. I&#8217;m sure it&#8217;s not the last I&#8217;ll see of them though, my work with particles continues, and who knows, perhaps I&#8217;ll get them together again for a reunion tour in a couple of years.</p>
<p>As ever, bring your laptop and join in with the fun&#8230; <a href="http://www.sebleedelisle.com/wp-content/uploads/2007/09/sebleedelisle-as3particles.zip">download the source files here</a>.</p>



<p>Related posts:<ol><li><a href='http://sebleedelisle.com/2007/09/as3-particles-1000-extra-free/' rel='bookmark' title='Permanent Link: AS3 Particles &#8211; 1000% extra free!'>AS3 Particles &#8211; 1000% extra free!</a></li>
<li><a href='http://sebleedelisle.com/2008/04/blowing-things-up-in-toronto/' rel='bookmark' title='Permanent Link: Blowing things up in Toronto'>Blowing things up in Toronto</a></li>
<li><a href='http://sebleedelisle.com/2007/06/flash-particles-now-1000-extra-free/' rel='bookmark' title='Permanent Link: Flash Particles &#8211; now 1000% extra free!'>Flash Particles &#8211; now 1000% extra free!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://sebleedelisle.com/2008/06/so-long-and-thanks-for-all-the-particles/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>FlashBelt is gonna rock!</title>
		<link>http://sebleedelisle.com/2008/05/flashbelt-is-gonna-rock/</link>
		<comments>http://sebleedelisle.com/2008/05/flashbelt-is-gonna-rock/#comments</comments>
		<pubDate>Thu, 29 May 2008 17:27:36 +0000</pubDate>
		<dc:creator>Seb Lee-Delisle</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Papervision3D]]></category>
		<category><![CDATA[Particles]]></category>
		<category><![CDATA[Speaking]]></category>

		<guid isPermaLink="false">http://www.sebleedelisle.com/?p=184</guid>
		<description><![CDATA[I&#8217;m really looking forward to FlashBelt this year, meeting up with Dave Schroeder, and all my good flasher friends, especially Jeremy Thorp, who hasn&#8217;t made it to any other conferences since last year&#8217;s FlashBelt. It&#8217;s always a great one, hitting above it&#8217;s weight in terms of the calibre of speakers Dave attracts. And I&#8217;m giving [...]


Related posts:<ol><li><a href='http://sebleedelisle.com/2007/06/speaking-at-adobe-live-flashbelt-and-flash-on-the-beach/' rel='bookmark' title='Permanent Link: Speaking at Adobe Live, FlashBelt and Flash on the Beach'>Speaking at Adobe Live, FlashBelt and Flash on the Beach</a></li>
<li><a href='http://sebleedelisle.com/2008/06/flashbelt-source-files/' rel='bookmark' title='Permanent Link: FlashBelt source files'>FlashBelt source files</a></li>
<li><a href='http://sebleedelisle.com/2010/05/flashbelt-may-just-change-your-life/' rel='bookmark' title='Permanent Link: Flashbelt may just change your life&#8230;'>Flashbelt may just change your life&#8230;</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fsebleedelisle.com%252F2008%252F05%252Fflashbelt-is-gonna-rock%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22FlashBelt%20is%20gonna%20rock%21%20%23%22%20%7D);"></div>
<p>I&#8217;m really looking forward to FlashBelt this year, meeting up with Dave Schroeder, and all my good flasher friends, especially Jeremy Thorp, who hasn&#8217;t made it to any other conferences since last year&#8217;s FlashBelt. It&#8217;s always a great one, hitting above it&#8217;s weight in terms of the calibre of speakers Dave attracts.</p>
<p>And I&#8217;m giving two presentations there this year! One is a new session, <em>Papervision3D, Simplified</em>, all about getting stuck into PV with the minimum amount of fuss and stress&#8230; I&#8217;ll show you how to set up a PV project, load collada files, bake textures and even make a simple 3D game! All in an hour! (Yes I know, I must be mad). I&#8217;ll be uploading files probably the night before &#8211; as you know I like to leave it to the last minute&#8230; <img src='http://sebleedelisle.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>And then I&#8217;m also doing the well tested particles session &#8211; <em>Kaboom!!! Blowing things up in Flash</em>, and this will probably be the last outing EVER for this session. I&#8217;m going to miss it, it&#8217;s become a well trusted old friend. And I&#8217;ve had the most fun with it. But I have to move on, so now I&#8217;m going to concentrate on Papervision for a little while.</p>
<p>But before that, I&#8217;m taking my fianceé Jenny to Italy for a week! Up north in the lake district. I&#8217;m really looking forward to it, but I must admit to feeling a little anxious &#8211; I&#8217;m shutting off my computer and mobile phone for a whole week! Who knows I may even relax a little <img src='http://sebleedelisle.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>And I&#8217;ll be back online next Sunday&#8230; see you then!</p>



<p>Related posts:<ol><li><a href='http://sebleedelisle.com/2007/06/speaking-at-adobe-live-flashbelt-and-flash-on-the-beach/' rel='bookmark' title='Permanent Link: Speaking at Adobe Live, FlashBelt and Flash on the Beach'>Speaking at Adobe Live, FlashBelt and Flash on the Beach</a></li>
<li><a href='http://sebleedelisle.com/2008/06/flashbelt-source-files/' rel='bookmark' title='Permanent Link: FlashBelt source files'>FlashBelt source files</a></li>
<li><a href='http://sebleedelisle.com/2010/05/flashbelt-may-just-change-your-life/' rel='bookmark' title='Permanent Link: Flashbelt may just change your life&#8230;'>Flashbelt may just change your life&#8230;</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://sebleedelisle.com/2008/05/flashbelt-is-gonna-rock/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Computer Arts Particle Article now online</title>
		<link>http://sebleedelisle.com/2008/05/computer-arts-particle-article-now-online/</link>
		<comments>http://sebleedelisle.com/2008/05/computer-arts-particle-article-now-online/#comments</comments>
		<pubDate>Thu, 08 May 2008 18:01:19 +0000</pubDate>
		<dc:creator>Seb Lee-Delisle</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash Physics]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Particles]]></category>

		<guid isPermaLink="false">http://www.sebleedelisle.com/?p=175</guid>
		<description><![CDATA[
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_sparkparticles_1302456912"
			class="flashmovie"
			width="480"
			height="300">
	<param name="movie" value="http://sebleedelisle.com/wp-content/uploads/2008/02/sparkparticles.swf" />
	<param name="quality" value="high" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://sebleedelisle.com/wp-content/uploads/2008/02/sparkparticles.swf"
			name="fm_sparkparticles_1302456912"
			width="480"
			height="300">
		<param name="quality" value="high" />
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object> Excellent! I just found out that Computer Arts magazine have posted the article I wrote for them online as a PDF. So you can learn how to make a particle class from scratch and using it to create basic particle effects such as sparks and smoke. Here&#8217;s the [...]


Related posts:<ol><li><a href='http://sebleedelisle.com/2008/02/flash-particle-article-in-computer-arts-magazine/' rel='bookmark' title='Permanent Link: Flash particle tutorial in Computer Arts magazine'>Flash particle tutorial in Computer Arts magazine</a></li>
<li><a href='http://sebleedelisle.com/2008/08/particle-tutorial-part-2-in-computer-arts-magazine/' rel='bookmark' title='Permanent Link: Particle tutorial part 2 in Computer Arts magazine'>Particle tutorial part 2 in Computer Arts magazine</a></li>
<li><a href='http://sebleedelisle.com/2008/03/particle-tutorial-now-on-lyndacom/' rel='bookmark' title='Permanent Link: Particle tutorial now on Lynda.com'>Particle tutorial now on Lynda.com</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fsebleedelisle.com%252F2008%252F05%252Fcomputer-arts-particle-article-now-online%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Computer%20Arts%20Particle%20Article%20now%20online%20%23%22%20%7D);"></div>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_sparkparticles_1393190042"
			class="flashmovie"
			width="480"
			height="300">
	<param name="movie" value="http://sebleedelisle.com/wp-content/uploads/2008/02/sparkparticles.swf" />
	<param name="quality" value="high" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://sebleedelisle.com/wp-content/uploads/2008/02/sparkparticles.swf"
			name="fm_sparkparticles_1393190042"
			width="480"
			height="300">
		<param name="quality" value="high" />
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p>Excellent! I just found out that <a href="http://www.computerarts.co.uk">Computer Arts magazine</a> have posted <a href="http://www.computerarts.co.uk/tutorials/new_media/cool_particle_effects_in_flash">the article I wrote for them online as a PDF</a>. So you can learn how to make a particle class from scratch and using it to create basic particle effects such as sparks and smoke.</p>
<p><a href='http://www.computerarts.co.uk' title='Computer Arts flash particle tutorial'><img src='http://sebleedelisle.com/wp-content/uploads/2008/02/ca_tutorial1.jpg' alt='Computer Arts flash particle tutorial' /></a></p>
<p><a href="http://www.computerarts.co.uk/tutorials/new_media/cool_particle_effects_in_flash">Here&#8217;s the article</a>, and <a href='http://sebleedelisle.com/wp-content/uploads/2008/02/sourcefilescc.zip' title='sourcefilescc.zip'>here are the source files</a>.</p>



<p>Related posts:<ol><li><a href='http://sebleedelisle.com/2008/02/flash-particle-article-in-computer-arts-magazine/' rel='bookmark' title='Permanent Link: Flash particle tutorial in Computer Arts magazine'>Flash particle tutorial in Computer Arts magazine</a></li>
<li><a href='http://sebleedelisle.com/2008/08/particle-tutorial-part-2-in-computer-arts-magazine/' rel='bookmark' title='Permanent Link: Particle tutorial part 2 in Computer Arts magazine'>Particle tutorial part 2 in Computer Arts magazine</a></li>
<li><a href='http://sebleedelisle.com/2008/03/particle-tutorial-now-on-lyndacom/' rel='bookmark' title='Permanent Link: Particle tutorial now on Lynda.com'>Particle tutorial now on Lynda.com</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://sebleedelisle.com/2008/05/computer-arts-particle-article-now-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interactive Digital Fireworks &#8211; new video!</title>
		<link>http://sebleedelisle.com/2008/05/interactive-digital-fireworks-new-video/</link>
		<comments>http://sebleedelisle.com/2008/05/interactive-digital-fireworks-new-video/#comments</comments>
		<pubDate>Thu, 01 May 2008 22:28:03 +0000</pubDate>
		<dc:creator>Seb Lee-Delisle</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash Physics]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Particles]]></category>

		<guid isPermaLink="false">http://www.sebleedelisle.com/?p=178</guid>
		<description><![CDATA[It seems like I&#8217;ve been promising to write this one up ever since November! And now I can finally reveal the official video of the event! Which gives me the perfect excuse to get around to this blog post. So it gives me great pleasure to present Pyro(technics) to the People &#8211; The Movie Click [...]


Related posts:<ol><li><a href='http://sebleedelisle.com/2007/11/hollywood-flash-on-the-beach-and-digital-fireworks/' rel='bookmark' title='Permanent Link: Hollywood, Flash on the Beach and digital fireworks'>Hollywood, Flash on the Beach and digital fireworks</a></li>
<li><a href='http://sebleedelisle.com/2007/03/3d-video-projections-in-flash/' rel='bookmark' title='Permanent Link: 3D video projections in Flash'>3D video projections in Flash</a></li>
<li><a href='http://sebleedelisle.com/2008/01/seamlessly-looping-video-in-flash/' rel='bookmark' title='Permanent Link: Seamlessly looping video in Flash'>Seamlessly looping video in Flash</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fsebleedelisle.com%252F2008%252F05%252Finteractive-digital-fireworks-new-video%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Interactive%20Digital%20Fireworks%20-%20new%20video%21%20%23%22%20%7D);"></div>
<p>It seems like I&#8217;ve been promising to write this one up ever since November! And now I can finally reveal the official video of the event! Which gives me the perfect excuse to get around to this blog post. <img src='http://sebleedelisle.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>So it gives me great pleasure to present <em>Pyro(technics) to the People</em> &#8211; The Movie <img src='http://sebleedelisle.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><object type="application/x-shockwave-flash" width="480" height="360" data="http://www.vimeo.com/moogaloop.swf?clip_id=944162&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color="><param name="quality" value="best" /><param name="allowfullscreen" value="true" /><param name="scale" value="showAll" /><param name="movie" value="http://www.vimeo.com/moogaloop.swf?clip_id=944162&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=" /></object><br />
<a href="http://www.vimeo.com/944162">Click here to see the video on Vimeo</a><br />
<a href="http://www.vimeo.com/download/video:57957613?e=1209684698&#038;h=a32422f34a3a133876914134ddb0ae93">Download the full-quality Quicktime movie</a></p>
<p><em>Pyro(technics) to the People</em> was an massive interactive digital fireworks display that was here in Brighton last November 5th. (Which is <a href="http://en.wikipedia.org/wiki/Guy_Fawkes_Night">Guy Fawkes Night</a> for readers outside the UK). It was squeezed kicking and screaming into the world by my team at <a href="http://www.pluginmedia.net">Plug-in Media</a>, and it was made entirely in Flash.</p>
<p>Ever since seeing the awesome work with <a href="http://graffitiresearchlab.com">Graffiti Research Labs</a>&#8216; (GRL) <a href="http://graffitiresearchlab.com/?page_id=76">Laser Tag</a> project, I&#8217;ve become utterly obsessed with the idea of projecting various things onto the sides of buildings.</p>
<p>And as you may have noticed, I like Flash particles. <img src='http://sebleedelisle.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  And over the last couple of years I&#8217;ve been toying with the idea of an interactive fireworks display. And I walked past the Brighton Unitarian Church pretty much every day. And I just found myself staring at it&#8230;</p>
<p><img src="http://farm3.static.flickr.com/2190/2458023700_674c6dd9b3.jpg?v=0" alt="The Brighton Unitarian Church" /></p>
<p><strong>Tour-de-force</strong></p>
<p>So when <a href="http://www.tarasolesbury.co.uk">Tara Solesbury</a> (then of <a href="http://www.wiredsussex.com">Wired Sussex</a>) asked us if we had any ideas for the Brighton Digital Festival, it was the perfect time to tell her of my plans! Tara, being the one-woman tour-de-force that she is, set about making it happen; coming up with the catchy title, writing a super convincing art blurb that made me sound like an actual artist, and putting all the various and many different pieces in place for it to actually happen.</p>
<p><strong>Flash</strong></p>
<p>Thanks to the massive speed increases in Actionscript 3 it&#8217;s now possible to use Flash for this kind of ambitious project, where previously we would have had to use <a href="http://processing.org/">Processing</a> or native code. But still, there was only about 2 weeks to go and a lot of unanswered questions&#8230;</p>
<p>Before we could do anything else, we had to make a nice firework effect. Using the <a href="http://www.pluginmedia.net">Plug-in Media</a> particle system, we created this :</p>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_rocket02_630685423"
			class="flashmovie"
			width="480"
			height="366">
	<param name="movie" value="http://sebleedelisle.com/wp-content/uploads/2008/05/rocket02.swf" />
	<param name="quality" value="high" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://sebleedelisle.com/wp-content/uploads/2008/05/rocket02.swf"
			name="fm_rocket02_630685423"
			width="480"
			height="366">
		<param name="quality" value="high" />
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object> Drag the slider down to increase the number of rockets.<br />
<br />
In order to achieve the kind of numbers of particles we needed, we used only bitmap objects, drawn onto a big bitmap, which is much faster that moving around a whole load of sprites.<br />
<br />
Once we got that working, of course we just didn&#8217;t know what stuff would look like when it was projected onto this rather strangely shaped building! And we obviously couldn&#8217;t just hoik our stuff down to the church and have a go! So the <a href="http://www.pluginmedia.net">Plug-in Media</a> team built a scale model. We were so busy my gorgeous fianceé Jenny even helped out : </p>
<p><img src="http://farm3.static.flickr.com/2416/1918165725_5788589153.jpg?v=0" alt="Building a model of the Unitarian Church" /></p>
<p>And thankfully, when we projected fireworks onto it, it looked kinda cool.</p>
<p><img src="http://farm3.static.flickr.com/2024/1918164625_4889b62c97.jpg?v=0" alt="Cool practise projections" /></p>
<p><strong>Motion detection</strong></p>
<p>The motion detection and sensors were all done with a single video camera, plugged into the computer and picked up by Flash as a Camera object. We&#8217;d just take the current frame, invert it and overlay it over the last frame. Anything that was different between the frames would show up. Then we&#8217;d apply a threshold and use that to detect the changed pixels.</p>
<p>Here&#8217;s an example of how it works :<br />

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_motiontest3_1763140066"
			class="flashmovie"
			width="445"
			height="340">
	<param name="movie" value="http://sebleedelisle.com/wp-content/uploads/2008/05/motiontest3.swf" />
	<param name="quality" value="high" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://sebleedelisle.com/wp-content/uploads/2008/05/motiontest3.swf"
			name="fm_motiontest3_1763140066"
			width="445"
			height="340">
		<param name="quality" value="high" />
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object><br />
Drag the red detection area around to see the effect. And you&#8217;ll need a web-cam otherwise it won&#8217;t have a video feed to test!</p>
<p><strong>Calibration</strong></p>
<p>Naturally the main fireworks Flash object (swf) took up the entire screen for the projector, and I needed to calibrate and control this from my laptop screen. So I had to make a secondary controller swf that communicated with the fireworks swf. It was a bit of a nightmare to program with the horrible LocalConnection object, but we managed to get it working in the end.</p>
<p><img src='http://sebleedelisle.com/wp-content/uploads/2008/05/pyro26.JPG' alt='Me at the controls' /><br />
<small>Photo by <a href="http://www.serpell-rand.com/">Nic Serpell-Rand</a></small></p>
<p>The calibration tool allowed us to move the collision areas, adjust their sensitivity, and as a nice last minute touch, we could type messages that were then projected to the audience during the show.</p>
<p><strong>Projector woes</strong></p>
<p>Having seen how GRL did it, we thought we knew all about projectors. How hard can it be? Just get a big arse projector and point it at the building, right? Well it&#8217;s a little more complicated than that. Wide lenses, zoom lenses, throw ratios, contrast ratios, power requirements, and of course the all important lumens brightness rating.</p>
<p>Thankfully, Tara had enlisted Mark Scarratt and <a href="http://brightonart.tv">brightonart.tv</a>, who have considerable experience in this type of large digital event. GRL were using a 5000 lumens Panasonic projector. But that wasn&#8217;t going to be enough for us!</p>
<p>We asked <a href="http://www.xlvideo.com">XL Video</a> about hiring one of their <a href="http://www.xlvideo.com/UK/EN/Our_Equipment/Projectors/Barco/Barco_FLM.aspx">Barco projectors</a> &#8211; an awesome 20,000 lumens! But rather frustratingly they were all booked out. (We later found out that <a href="http://www.haque.co.uk">Haque Research and Design</a> were hogging 4 of them for their astonishing and beautiful <a href="http://www.haque.co.uk/evoke.php">Evoke installation</a> at York Minster)</p>
<p>After discounting the <a href="http://www.christiedigital.com/AMEN/Products/christieRoadie25K.htm"> Christie Roadie 25K lumens projector</a> (it needs 3 phase power) Mark and his team hunted down a brand new <a href="http://www.engadget.com/2007/06/19/sanyo-debuts-worlds-brightest-plc-xf47-and-plc-xp100l-project/">Sanyo XF47</a> &#8211; the first in the UK and with a contrast ratio of 2000:1. You can&#8217;t really tell from the picture, but it&#8217;s HUGE! Just under a metre long in its cradle.</p>
<p>Oh and it costs over £1000 per day to hire. Eek!</p>
<p><img src='http://sebleedelisle.com/wp-content/uploads/2008/05/sanyo-pro-projector.jpg' alt='Sanyo Projector' /></p>
<p><strong>Sound</strong></p>
<p>And of course what would fireworks be without the pops bangs and fizzes that usually occur? So we set up a mixer, and a couple of radio sets that transmitted the sound effects from the computer, across the road to a 16K sound system provided by Andy Mead and his company <a href="http://www.fireflysolar.co.uk/">Firefly Solar</a>.</p>
<p><strong>The Future</strong></p>
<p>We&#8217;re already planning bigger and better things for version 2 that I can&#8217;t really talk about. But keep an eye on the blog and I&#8217;ll let you know. <img src='http://sebleedelisle.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>



<p>Related posts:<ol><li><a href='http://sebleedelisle.com/2007/11/hollywood-flash-on-the-beach-and-digital-fireworks/' rel='bookmark' title='Permanent Link: Hollywood, Flash on the Beach and digital fireworks'>Hollywood, Flash on the Beach and digital fireworks</a></li>
<li><a href='http://sebleedelisle.com/2007/03/3d-video-projections-in-flash/' rel='bookmark' title='Permanent Link: 3D video projections in Flash'>3D video projections in Flash</a></li>
<li><a href='http://sebleedelisle.com/2008/01/seamlessly-looping-video-in-flash/' rel='bookmark' title='Permanent Link: Seamlessly looping video in Flash'>Seamlessly looping video in Flash</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://sebleedelisle.com/2008/05/interactive-digital-fireworks-new-video/feed/</wfw:commentRss>
		<slash:comments>32</slash:comments>
		</item>
		<item>
		<title>Blowing things up in Toronto</title>
		<link>http://sebleedelisle.com/2008/04/blowing-things-up-in-toronto/</link>
		<comments>http://sebleedelisle.com/2008/04/blowing-things-up-in-toronto/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 10:46:01 +0000</pubDate>
		<dc:creator>Seb Lee-Delisle</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash Physics]]></category>
		<category><![CDATA[Particles]]></category>
		<category><![CDATA[Speaking]]></category>

		<guid isPermaLink="false">http://www.sebleedelisle.com/?p=173</guid>
		<description><![CDATA[
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_introweb_2074022206"
			class="flashmovie"
			width="445"
			height="340">
	<param name="movie" value="http://sebleedelisle.com/wp-content/uploads/2007/10/introweb.swf" />
	<param name="quality" value="high" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://sebleedelisle.com/wp-content/uploads/2007/10/introweb.swf"
			name="fm_introweb_2074022206"
			width="445"
			height="340">
		<param name="quality" value="high" />
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object> Having a fantastic time here in Toronto, although in a supreme display of poor planning my session is at 9am this morning! Never fear! We shall fight the hangovers from the awesome party last night (thanks Influxis) and produce more crazy particle effects! As ever, bring your laptop [...]


Related posts:<ol><li><a href='http://sebleedelisle.com/2008/03/particle-tutorial-now-on-lyndacom/' rel='bookmark' title='Permanent Link: Particle tutorial now on Lynda.com'>Particle tutorial now on Lynda.com</a></li>
<li><a href='http://sebleedelisle.com/2008/02/flash-particle-article-in-computer-arts-magazine/' rel='bookmark' title='Permanent Link: Flash particle tutorial in Computer Arts magazine'>Flash particle tutorial in Computer Arts magazine</a></li>
<li><a href='http://sebleedelisle.com/2007/11/hollywood-flash-on-the-beach-and-digital-fireworks/' rel='bookmark' title='Permanent Link: Hollywood, Flash on the Beach and digital fireworks'>Hollywood, Flash on the Beach and digital fireworks</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fsebleedelisle.com%252F2008%252F04%252Fblowing-things-up-in-toronto%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Blowing%20things%20up%20in%20Toronto%20%23%22%20%7D);"></div>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_introweb_1250668021"
			class="flashmovie"
			width="445"
			height="340">
	<param name="movie" value="http://sebleedelisle.com/wp-content/uploads/2007/10/introweb.swf" />
	<param name="quality" value="high" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://sebleedelisle.com/wp-content/uploads/2007/10/introweb.swf"
			name="fm_introweb_1250668021"
			width="445"
			height="340">
		<param name="quality" value="high" />
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p>Having a fantastic time here in Toronto, although in a supreme display of poor planning my session is at 9am this morning! Never fear! We shall fight the hangovers from the awesome party last night (thanks <a href="http://www.influxis.com/">Influxis</a>) and produce more crazy particle effects!</p>
<p>As ever, bring your laptop and join in with the fun&#8230; <a href="http://www.sebleedelisle.com/wp-content/uploads/2007/09/sebleedelisle-as3particles.zip">download the source files here</a>.</p>
<p>[UPDATE] Wow! What an amazing turnout, thanks so much for the support, especially at 9am!</p>



<p>Related posts:<ol><li><a href='http://sebleedelisle.com/2008/03/particle-tutorial-now-on-lyndacom/' rel='bookmark' title='Permanent Link: Particle tutorial now on Lynda.com'>Particle tutorial now on Lynda.com</a></li>
<li><a href='http://sebleedelisle.com/2008/02/flash-particle-article-in-computer-arts-magazine/' rel='bookmark' title='Permanent Link: Flash particle tutorial in Computer Arts magazine'>Flash particle tutorial in Computer Arts magazine</a></li>
<li><a href='http://sebleedelisle.com/2007/11/hollywood-flash-on-the-beach-and-digital-fireworks/' rel='bookmark' title='Permanent Link: Hollywood, Flash on the Beach and digital fireworks'>Hollywood, Flash on the Beach and digital fireworks</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://sebleedelisle.com/2008/04/blowing-things-up-in-toronto/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>
