<?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>Codesplosion</title>
	<atom:link href="http://blog.strumpy.net/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.strumpy.net</link>
	<description>gamesgamesgamesgames</description>
	<lastBuildDate>Fri, 02 Jul 2010 03:56:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Unity 3.0 First Impressions</title>
		<link>http://blog.strumpy.net/?p=238</link>
		<comments>http://blog.strumpy.net/?p=238#comments</comments>
		<pubDate>Fri, 02 Jul 2010 03:55:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.strumpy.net/?p=238</guid>
		<description><![CDATA[Sometime in July Unity 3.0 will be released. Unity is a game development middleware engine. The latest offering has recently been released in beta form for those that pre-ordered and I have had a week now to experiment and use many of the new features. It is an amazing update and offers substantially more then [...]]]></description>
			<content:encoded><![CDATA[<p>Sometime in July Unity 3.0 will be released. Unity is a game development middleware engine. The latest offering has recently been released in beta form for those that pre-ordered and I have had a week now to experiment and use many of the new features. It is an amazing update and offers substantially more then the previous release.</p>
<p>Being a programmer there are quite a few new art / asset pipeline features that I have not had the luxury of testing , I urge you to try them out for yourself!</p>
<p><strong>Deferred Rendering / Reworked Shader system<br />
</strong>Looking at all the marketing spiel for Unity 3 there is a lot of talk about the new deferred render that has been added, but not much talk about the reworked shader system. Both are great and easy to use. The deferred render is provided as an option for moderate level hardware  (dx9+), and like all deferred renders decouples geometry scene complexity from lighting. Except for all but a few corner cases (many full screen lights will kill fill-rate limited hardware) this means that you can have hundreds of lights in your scene with very little performance implications. A fallback path is provided that uses a single dominant directional light and spherical harmonics for any object that is transparent or where deferred rendering is not supported. The one downside that I believe exists with the fallback path is that spherical harmonic lighting is calculated at a per vertex basis instead of a per pixel basis. If your mesh has low tessellation this may lead to some lighting artifacts. I assume that the spherical harmnonics are of a low order, and that is why lighting is being calculated per vertex.</p>
<p>The new shader system takes a surface description approach to lighting (think BRDF&#8217;s). Instead of describing &#8216;what&#8217; happens you describe the surface in terms of properties. This is then processed by the shader system into a series of shaders that have lighting permutations calculated. The move towards surface description shaders is due to unity now primarily using a deferred renderer. Multiple explicitly written shaders would have a high probability of causing unseemly scene issues as deferred expects geometry to be only rendered once (i.e a multi pass shader where verticies are changed between passes would be bad). This removes some degree of freedom when rendering illuminated objects, but it is still possible to render non illuminated objects using the &#8216;old&#8217; method. I think the move towards surface description shaders is a definite positive for the engine as a whole and will allow for faster scenes and better engine support in future.</p>
<p><strong>Beast / Lightmapping<br />
</strong>Beast is a great solution! I have used / implemented it before in a work project and I have to say that unity have done a great job with it! Beast adds tremendous value to the worlds that you can create. The integration in unity seems quite good, especially for the first release, but there are a few features that I would like to see. Specifically the &#8216;light environment&#8217; baking and implementation into the render pipeline (as the shaders do support spherical harmonics now this should be a logical next step). I would also like to see more of the XML configuration exposed in the unity GUI (Environment texture is a good example). For a very new feature I think that unity have done a great job.</p>
<p><strong>Monodevelop / Source Level Debugging<br />
</strong>Monodevelop is now the default source editor in unity. It&#8217;s a big improvement. Unity also allows for source debugging in scripts. This has already saved me many hours of  fruitlessly adding printf&#8217;s to see where things are going wrong. The ability to debug scripts while the engine is running is a great addition!</p>
<p><strong>Things I think are missing / Not quite there<br />
</strong>I will preface this by saying that Unity3 is not released yet and is beta, and it could all be wrong. I will also say that these (small) issues I have are pretty corner case and 95% of users will probably never have any issue. But I still feel they are worth mentioning from development point of view.</p>
<p><em>Rendering shortcomings<br />
</em>Unity has a great render, but there are a few fundamental features that are not exposed to 3&#8242;rd party users, which would make life much easier. Currently unity only supports rendering of the current scene. This is done via rendering a camera. It is possible to &#8216;hook&#8217; this camera, but it will still requires scene lights and scene objects. There is no way to render a few arbitrary objects with arbitrary lights without adding them to a scene and then rendering that specific scene. I would very much like to be able to something like the following:</p>
<p>&lt;code&gt;<br />
var utility = new OffscreenUtility();<br />
utility.Camera = Camera;<br />
utility.Lights = LightArray;<br />
utility.AddMesh( position, rotation, mesh, material );<br />
Texture render = utility.Render();<br />
TextureCube render2 = utility.RenderCube();<br />
&lt;/code&gt;</p>
<p>I notice that this is similar to how the current preview windows are  rendered in Unity&#8230; but more on that in a minute.</p>
<p>There are a large variety of cases where I would like to do something like this now. It is a very frustrating process to render something into an &#8216;offscreen&#8217; buffer. I have to either configure a scene with layers and use camera masking (not a good solution as it is not cross project / package import compatible), or add my objects to the world with use replace shaders to only render those objects, and even then they will use the scene lighting and I can not specify my own lights.</p>
<p><em>Editor API shortcomings</em><br />
I believe pretty strongly that any inspector / api window that comes with unity should be able to be created by end users using the editor API&#8217;s that are provided with the engine. For the most part this is the case, but there is no way to generate a few of the inspector types that exist in engine currently. This is not helped by the fact that the current documentation / example code for editor extension is quite weak. A great example of this is the handles class, I could find almost no documentation on this class in either unity2.6 or 3 or online. If I was Unity I would probably put together an example project showcasing editor extension, demonstrating how to use many of the handles and inspectors that exist in the engine.</p>
<p><strong>Conclusions<br />
</strong>Unity 3 is a great step forward! If you are making games (and not messing with tech rendering stuff  like I do). Then you will be right at home. It feel like a natural evolution from unity 2.6. Similar, but enhanced! I would easily recommend that you upgrade as soon as you can.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.strumpy.net/?feed=rss2&amp;p=238</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Unity: Lava runner</title>
		<link>http://blog.strumpy.net/?p=235</link>
		<comments>http://blog.strumpy.net/?p=235#comments</comments>
		<pubDate>Sun, 18 Apr 2010 13:55:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.strumpy.net/?p=235</guid>
		<description><![CDATA[Lava runner is coming! Please view the full post to see the Unity content.]]></description>
			<content:encoded><![CDATA[<p>Lava runner is coming!<span id="more-235"></span></p>
<p><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /></p>
<p><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" />
<p><em>Please view the full post to see the Unity content.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.strumpy.net/?feed=rss2&amp;p=235</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unity 3d + 2d runner + assets</title>
		<link>http://blog.strumpy.net/?p=232</link>
		<comments>http://blog.strumpy.net/?p=232#comments</comments>
		<pubDate>Sun, 18 Apr 2010 05:53:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.strumpy.net/?p=232</guid>
		<description><![CDATA[Got some assets into the game i am making&#8230; should be pretty sweet! Please view the full post to see the Unity content.]]></description>
			<content:encoded><![CDATA[<p>Got some assets into the game i am making&#8230; should be pretty sweet!<span id="more-232"></span></p>
<p><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /></p>
<p><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" />
<p><em>Please view the full post to see the Unity content.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.strumpy.net/?feed=rss2&amp;p=232</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unity: Platform Test</title>
		<link>http://blog.strumpy.net/?p=230</link>
		<comments>http://blog.strumpy.net/?p=230#comments</comments>
		<pubDate>Mon, 05 Apr 2010 11:53:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.strumpy.net/?p=230</guid>
		<description><![CDATA[Playing with some platformer mechanics: wasd = move space = shoot Please view the full post to see the Unity content.]]></description>
			<content:encoded><![CDATA[<p>Playing with some platformer mechanics:</p>
<p>wasd = move<br />
space = shoot</p>
<p><span id="more-230"></span></p>
<p><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" />
<p><em>Please view the full post to see the Unity content.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.strumpy.net/?feed=rss2&amp;p=230</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nano 09: Simple input &#8211; just dash and jump</title>
		<link>http://blog.strumpy.net/?p=227</link>
		<comments>http://blog.strumpy.net/?p=227#comments</comments>
		<pubDate>Wed, 31 Mar 2010 11:35:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.strumpy.net/?p=227</guid>
		<description><![CDATA[space &#8211; jump ( the longer you hold it the more you jump) f &#8211; dash Please view the full post to see the Unity content.]]></description>
			<content:encoded><![CDATA[<p>space &#8211; jump ( the longer you hold it the more you jump)<br />
f &#8211; dash<img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><span id="more-227"></span></p>
<p><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /></p>
<p><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" />
<p><em>Please view the full post to see the Unity content.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.strumpy.net/?feed=rss2&amp;p=227</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nano 08: Collapsable blocks and more content</title>
		<link>http://blog.strumpy.net/?p=226</link>
		<comments>http://blog.strumpy.net/?p=226#comments</comments>
		<pubDate>Sun, 28 Mar 2010 11:44:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.strumpy.net/?p=226</guid>
		<description><![CDATA[left / right &#8211; slow down / speed up space &#8211; jump ( the longer you hold it the more you jump) f &#8211; dash Please view the full post to see the Unity content.]]></description>
			<content:encoded><![CDATA[<p>left / right &#8211; slow down / speed up<br />
space &#8211; jump ( the longer you hold it the more you jump)<br />
f &#8211; dash<img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /></p>
<p><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><span id="more-226"></span></p>
<p><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" />
<p><em>Please view the full post to see the Unity content.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.strumpy.net/?feed=rss2&amp;p=226</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>nano 07: New camera system&#8230; more intense!</title>
		<link>http://blog.strumpy.net/?p=223</link>
		<comments>http://blog.strumpy.net/?p=223#comments</comments>
		<pubDate>Sun, 28 Mar 2010 06:42:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.strumpy.net/?p=223</guid>
		<description><![CDATA[left / right &#8211; slow down / speed up space &#8211; jump ( the longer you hold it the more you jump) f &#8211; dash Please view the full post to see the Unity content.]]></description>
			<content:encoded><![CDATA[<p>left / right &#8211; slow down / speed up<br />
space &#8211; jump ( the longer you hold it the more you jump)<br />
f &#8211; dash<img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><span id="more-223"></span></p>
<p><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /></p>
<p><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" />
<p><em>Please view the full post to see the Unity content.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.strumpy.net/?feed=rss2&amp;p=223</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nano 06: Removed double jump, working on some levels</title>
		<link>http://blog.strumpy.net/?p=220</link>
		<comments>http://blog.strumpy.net/?p=220#comments</comments>
		<pubDate>Sun, 28 Mar 2010 05:23:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.strumpy.net/?p=220</guid>
		<description><![CDATA[left / right &#8211; slow down / speed up space &#8211; jump ( the longer you hold it the more you jump) f &#8211; dash Currently working on an event system so that there can be triggers in the level that cause things to happen ! Please view the full post to see the Unity [...]]]></description>
			<content:encoded><![CDATA[<p>left / right &#8211; slow down / speed up<br />
space &#8211; jump ( the longer you hold it the more you jump)<br />
f &#8211; dash<img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /></p>
<p>Currently working on an event system so that there can be triggers in the level that cause things to happen !</p>
<p><span id="more-220"></span></p>
<p><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" />
<p><em>Please view the full post to see the Unity content.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.strumpy.net/?feed=rss2&amp;p=220</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nano 05: Scoring + physics fixes</title>
		<link>http://blog.strumpy.net/?p=218</link>
		<comments>http://blog.strumpy.net/?p=218#comments</comments>
		<pubDate>Thu, 25 Mar 2010 10:59:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.strumpy.net/?p=218</guid>
		<description><![CDATA[left / right &#8211; slow down / speed up space &#8211; jump (double jump supported) f &#8211; dash Please view the full post to see the Unity content.]]></description>
			<content:encoded><![CDATA[<p>left / right &#8211; slow down / speed up<br />
space &#8211; jump (double jump supported)<br />
f &#8211; dash<img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><span id="more-218"></span></p>
<p><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" />
<p><em>Please view the full post to see the Unity content.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.strumpy.net/?feed=rss2&amp;p=218</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nano 4: lava + dbl jump</title>
		<link>http://blog.strumpy.net/?p=216</link>
		<comments>http://blog.strumpy.net/?p=216#comments</comments>
		<pubDate>Wed, 24 Mar 2010 08:53:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.strumpy.net/?p=216</guid>
		<description><![CDATA[left / right &#8211; slow down / speed up space &#8211; jump f &#8211; dash Please view the full post to see the Unity content.]]></description>
			<content:encoded><![CDATA[<p>left / right &#8211; slow down / speed up<br />
space &#8211; jump<br />
f &#8211; dash<img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /></p>
<p><span id="more-216"></span><img title="More..." src="http://blog.strumpy.net/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" />
<p><em>Please view the full post to see the Unity content.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.strumpy.net/?feed=rss2&amp;p=216</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
