<?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>Life at the Feeding Edge &#187; unity3d</title>
	<atom:link href="http://www.feedingedge.co.uk/blog/tag/unity3d/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.feedingedge.co.uk/blog</link>
	<description>Taking a bite on new technology so you don't have to</description>
	<lastBuildDate>Tue, 27 Jul 2010 10:01:02 +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>Look just how simple things can be. Unity3d accessing the web</title>
		<link>http://www.feedingedge.co.uk/blog/2010/02/07/look-just-how-simple-things-can-be-unity3d-accessing-the-web/</link>
		<comments>http://www.feedingedge.co.uk/blog/2010/02/07/look-just-how-simple-things-can-be-unity3d-accessing-the-web/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 11:59:35 +0000</pubDate>
		<dc:creator>epredator</dc:creator>
				<category><![CDATA[metaverse]]></category>
		<category><![CDATA[unity3d]]></category>

		<guid isPermaLink="false">http://www.feedingedge.co.uk/blog/?p=518</guid>
		<description><![CDATA[<p>I have been doing a lot of Unity3d with data flying around, but I am still amazed at just how easy it is to get things to work.
For the non-techies out there this should still make sense as its all drag and drop and a little bit of text.
So you need a web based walk around [...]]]></description>
			<content:encoded><![CDATA[<p>I have been doing a lot of <a href="http://www.unity3d.com">Unity3d </a>with data flying around, but I am still amazed at just how easy it is to get things to work.<br />
For the non-techies out there this should still make sense as its all drag and drop and a little bit of text.<br />
So you need a web based walk around some of your <a href="http://www.flickr.com">flickr</a> pictures?<br />
Unity3d makes it very easy to say &#8220;create scene&#8221;, &#8220;add terrain&#8221;, &#8220;add light&#8221;, &#8220;add first person walker (the thing that lets you move around&#8221; and finally to say &#8220;create cube&#8221;.<br />
It is as simple as any other package to create things, just like adding a graph in a spreadsheet, or rezzing cubes in Second Life.<br />
Once the Scene is created is it very easy to add a behaviour to an object in this case this script is types in and dragged and dropped onto each cube in the scene. (its in the help text too)<br />
<code><br />
var url = "http://farm3.static.flickr.com/2656/4250994754_6b071014d4_s.jpg";<br />
function Start () {<br />
     // Start a download of the given URL<br />
    var www : WWW = new WWW (url);</p>
<p>    // Wait for download to complete<br />
    yield www;</p>
<p>    // assign texture<br />
    renderer.material.mainTexture = www.texture;<br />
}</code></p>
<p>Basically you tell it a URL of an image, 3 lines of code later that image is on the surface of your object running live.<br />
The other thing that is easy to do is drag a predefined behaviour of &#8220;DragRigidBody&#8221; on the cube(s). Then you get the ability to move the cubes when they are running by holding onto them with the mouse and left click.<br />
<a href="http://www.flickr.com/photos/epredator/4336645171/" title="UnityScreenSnapz001 by epredator, on Flickr"><img src="http://farm3.static.flickr.com/2745/4336645171_b1f79a0153.jpg" width="500" height="372" alt="UnityScreenSnapz001" /></a><br />
<a href="http://www.flickr.com/photos/epredator/4337390536/" title="UnityScreenSnapz003 by epredator, on Flickr"><img src="http://farm5.static.flickr.com/4056/4337390536_149dff8dee.jpg" width="500" height="372" alt="UnityScreenSnapz003" /></a></p>
<p>Now the other clever piece (for the techies and programmers amongst us) is that you can create an object of collection of objects and bring them out of the scene and create a &#8220;prefab&#8221;. This prefab means that you can create lots of live versions of an object in the scene. However if you need to change them, add a new behaviour etc you simply change the root prefab and the changes are inherited by all the prefabs in the scene. You are also able to override settings on each prefab.<br />
So I have a cube prefab, with the &#8220;Go get an image&#8221; script on it.<br />
I drag a few of those into the scene and for each one I can individually set the URL they are going to use. All good Object Orientated stuff.<br />
This is not supposed to be a state of the art game <img src='http://www.feedingedge.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> , but you can see how the drag and drop works and moving around using live images I drag in from my Flickr <a href="http://www.feedingedge.co.uk/unity/cubepics.html">in this sample</a><br />
Click in the view and W and A moves back and forwards, left click and hold the mouse over a block to move it around.<br />
Downward gravity is reduced (just a number) and of course the URL&#8217;s could be entered live and change on the fly. I only used the square thumbnail URLs form my Flickr photos so they are not hi quality <img src='http://www.feedingedge.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
This is also not a multiuser example (busy doing lots of that with Smartfox server at the moment) but it is just so accessible to be able to make and publish ideas.<br />
The code is less complicated that the HTML source of this page I would suggest. Its also free to do!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.feedingedge.co.uk/blog/2010/02/07/look-just-how-simple-things-can-be-unity3d-accessing-the-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Virtual World/Augmented Reality Olympics, World Cup?</title>
		<link>http://www.feedingedge.co.uk/blog/2010/01/13/virtual-worldaugmented-reality-olympics-world-cup/</link>
		<comments>http://www.feedingedge.co.uk/blog/2010/01/13/virtual-worldaugmented-reality-olympics-world-cup/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 10:33:33 +0000</pubDate>
		<dc:creator>epredator</dc:creator>
				<category><![CDATA[business]]></category>
		<category><![CDATA[future]]></category>
		<category><![CDATA[metaverse]]></category>
		<category><![CDATA[unity3d]]></category>

		<guid isPermaLink="false">http://www.feedingedge.co.uk/blog/?p=487</guid>
		<description><![CDATA[<p>In a report just published by EngageExpo on the future of virtual goods there is an interesting comment by Tom Hale the Chief Product Officer at Linden Lab (Of Second Life fame) that says.
&#8220;Continue to see large brands experiment with engagement based investment to maximize exposure during zeitgeist events, for example the Olympics.&#8221;

Now I am hoping [...]]]></description>
			<content:encoded><![CDATA[<p>In a report just published by <a href="http://www.engagedigitalmedia.com/research/2010/edmvgforecast10.pdf">EngageExpo on the future of virtual goods</a> there is an interesting comment by Tom Hale the Chief Product Officer at Linden Lab (Of Second Life fame) that says.<br />
&#8220;Continue to see large brands experiment with engagement based investment to maximize exposure during zeitgeist events, for example the Olympics.&#8221;<br />
<a href="http://www.feedingedge.co.uk/blog/wp-content/uploads/2010/01/london20121.jpg"><img src="http://www.feedingedge.co.uk/blog/wp-content/uploads/2010/01/london20121-300x251.jpg" alt="" title="london2012 " width="300" height="251" class="alignnone size-medium wp-image-488" /></a><br />
Now I am hoping that it really does get taken seriously by the organizing bodies. The ways of representing sporting events are open for massive innovation.<br />
I wrote that here in <a href="http://www.feedingedge.co.uk/blog/2009/04/28/dear-london-2012-olympic-people-wakeup-to-virtual/">April</a> and http://www.feedingedge.co.uk/blog/2009/11/04/blink-and-you-miss-the-future-of-sports-broadcasting/ and here in <a href="http://eightbar.co.uk/2008/11/27/virtual-worlds-and-london-2012-olympics/">2008 on eightbar </a> and have proved the potential with the Wimbledon work since 2006 in Second Life.<br />
I also received an invite to a conference (via Layar) for the <a href="http://www.camerjam.com/events/m-football/">M-Football conference </a> whose aim is to ensure that the 2010 world cup (soccer) acts as a catalysts for mobile applications (inluding augmented reality ones).<br />
Now with 2 years to go it really is time for the UK in particular to wake up and start doing things. It wont be enough to throw some things into Second Life or a quick Facebook app on there 2 mins before the event.<br />
We are all here to help and to work that direction. We can indeed make this the best Olympics ever.<br />
<a href="http://www.flickr.com/photos/epredator/365184803/" title="Wimbledon/World Cup mashup bleak times by epredator, on Flickr"><img src="http://farm1.static.flickr.com/117/365184803_e25cd4787b.jpg" width="500" height="347" alt="Wimbledon/World Cup mashup bleak times" /></a><br />
Back in 2006 when England went out of the World cup Yossarian and I shared the experience enhanced with Second Life as a back channel at the prototype Wimbledon. It was simple, effective and very memorable (and I had Avatared up as Sven (The coach).<br />
Head in hands as we crashed out.<br />
Imagine what we can all do if we actually plan this !<br />
Apologies to any agencies working on this in earnest already. I do get the feeling we have not really started yet though. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.feedingedge.co.uk/blog/2010/01/13/virtual-worldaugmented-reality-olympics-world-cup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This looks very promising &#8211; A World For Us Unity3d meeting rooms</title>
		<link>http://www.feedingedge.co.uk/blog/2009/12/15/this-looks-very-promising-a-world-for-us-unity3d-meeting-rooms/</link>
		<comments>http://www.feedingedge.co.uk/blog/2009/12/15/this-looks-very-promising-a-world-for-us-unity3d-meeting-rooms/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 12:06:16 +0000</pubDate>
		<dc:creator>epredator</dc:creator>
				<category><![CDATA[business]]></category>
		<category><![CDATA[unity3d]]></category>
		<category><![CDATA[meetings]]></category>
		<category><![CDATA[virtual worlds]]></category>

		<guid isPermaLink="false">http://www.feedingedge.co.uk/blog/?p=444</guid>
		<description><![CDATA[<p>Henri just commented on my previous blog post about Unity3d and Opensim. It would appear we have an interesting to player in the game now.
A World For Us have produced a web based virtual world meeting application using, amongst other things, Unity3d for as the engine. I had a very quick look and got a good [...]]]></description>
			<content:encoded><![CDATA[<p>Henri just commented on my previous blog post about Unity3d and Opensim. It would appear we have an interesting to player in the game now.<br />
<a href="http://www.aworldforus.com/">A World For Us</a> have produced a web based virtual world meeting application using, amongst other things, Unity3d for as the engine. I had a very quick look and got a good initial guy feel. Partly this is because I know and appreciate what Unity can do. Whilst there will be lots of questions (to be answered in depth later) about whitboards, web sharing, physics and dynamic interaction etc, this just worked. Voice worked, chat worked, I did some avatar customization (no green hair though <img src='http://www.feedingedge.co.uk/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  ) I sat in a chair, I zoomed into a presentation and moved through it. Most of all it ran on my Mac! A key point about Unity is that it does not care quite so much as many of the windows based plugin&#8217;s.</p>
<p>Picture from A World For Us<br />
<a href="http://www.flickr.com/photos/epredator/4250376343/" title="A world for us by epredator, on Flickr"><img src="http://farm5.static.flickr.com/4044/4250376343_f26fe94d00.jpg" width="500" height="271" alt="A world for us" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.feedingedge.co.uk/blog/2009/12/15/this-looks-very-promising-a-world-for-us-unity3d-meeting-rooms/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>We have all the pieces &#8211; Unity3d, Opensim, Evolver, Smartfox</title>
		<link>http://www.feedingedge.co.uk/blog/2009/12/15/we-have-all-the-pieces-unity3d-opensim-evolver-smartfox/</link>
		<comments>http://www.feedingedge.co.uk/blog/2009/12/15/we-have-all-the-pieces-unity3d-opensim-evolver-smartfox/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 10:30:03 +0000</pubDate>
		<dc:creator>epredator</dc:creator>
				<category><![CDATA[business]]></category>
		<category><![CDATA[metaverse]]></category>
		<category><![CDATA[evolver]]></category>
		<category><![CDATA[opensim]]></category>
		<category><![CDATA[smartfox]]></category>
		<category><![CDATA[unity3d]]></category>

		<guid isPermaLink="false">http://www.feedingedge.co.uk/blog/?p=442</guid>
		<description><![CDATA[<p>I have now had this conversation several times with people about the potential future that a mix of open source and open minded development may bring to the virtual world industry. Much of what is happening seems to be driven by some of the direction Second Life has taken or is taking, though not so much [...]]]></description>
			<content:encoded><![CDATA[<p>I have now had this conversation several times with people about the potential future that a mix of open source and open minded development may bring to the virtual world industry. Much of what is happening seems to be driven by some of the direction <a href="http://www.secondlife.com">Second Life</a> has taken or is taking, though not so much to follow it into corporate lockdown but to breakout and provide the flexibility and creativity that is needed for the next generation of virtual worlds.<br />
In the early days of 2006 many of us said it would be great to be able to run a Second Life server, our own one under out control. That has taken a while to start to emerge, but it has emerged as an expensive product aimed at corporate IT departments. Luckily the opensource community had rallied and created the excellent <a href="http://www.opensimulator.org">Opensim</a>. This ticks all the boxes of being able to be run locally, be run in the cloud, be provided as a service. So we have an extensible virtual world server ready to be built upon.<br />
The other component missing was a more controllable and rich interface. Yes there is the Second Life Snowglobe open source client but the need to certify and lockdown variants to align with the product needs for Second Life means that lots of the flexibility is lost. Likewise the initial open source Linden based client was under a GPL licence which caused all sorts of development to not happen at the time it really could have done with it.<br />
This is where <a href="http://www.unity3d.com">Unity3d</a> steps in I believe. It was Rob Smart who first started to show me this way back. Unity3d is a great front end, very flexible in how you build games and content for it.<br />
This was a movie form back in September 2008, using a message from Second Life to several unity clients to create a cube. This is loose integration, telling one place something has happened and letting the other place get on with it.<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/FNYbeT1JSak&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/FNYbeT1JSak&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object><br />
Unity3d has a plugin architecture too. It runs in a browser or deploys to application platforms like mac and windows. The visuals can be made very good very quickly too. Unity3d needs a server of some sort to operate as a multiuser platform (though it does do some peer 2 peer) hence applications like <a href="http://www.smartfoxserver.com/labs/API/">Smartfox</a> are ideal for producing Unity multiplayer and MMO style games.<br />
However Opensim has all the other layers of things needed to maintain a virtual world. It has assets databases, chat, positional awareness, server side scripting (as does Second Life that is was originally based on of course).<br />
So we have an extensible and easy to get hold of Unity3D client engine, and extensible and easy to get hold of Server/Persistence VW engine in Opensim. There may well be challenges in making the two understand one another but with the flexibility both sides of the equation that makes them very solvable. This is a high level view, <a href="http://robsmart.co.uk/2009/11/12/the-challenges-of-writing-an-opensim-client-in-unity3d/">Rob has some more detail here on the challenges.</a> Add in some interoperation definition with <a href="http://www.vastpark.com">Vastpark</a> to help bind the two and make some mappings.<br />
Throw into the mix an open minded avatar wizard such as Evolver. There we can build avatars that we know definitely can be dropped into Unity3d.<br />
So&#8230;..I create an Evolver avatar, dropped as a resource bundle into a web deployed Unity3d client that tells the opensim server where I am in the coordinate system, and which bundle I am using. Other people with a Unity3d client see the rich detailed avatar and the shiny Unity3d environment. However we do not have to stick to that one client. Other people using a Second Life style client see the Second Life style rendering of the world?<br />
This is already happening in some respects, the Iphone application <a href="http://www.pocketmetaverse.com/product/">Touch Life</a> lets you logon to the public Second Life. In a sort of bugblatter beast of traal moment everyone can see you, but you cant see them. You navigate your avatar around the map, have full chat, inventory and economy access, but a very different view of the world to everyone else. (Of course Unity3d runs well on an Iphone too, so imagine that as an extension to Touch Life?)<br />
Once there is an acceptance that there can be more that one view of the data, one where people without the full equipment can still see what is going on and participate things get a lot easier to consider. Whilst a gaming assumption tends to be we all need the same view at the same speed in order to be able to have balanced gameplay (lag gets you killed) in collaborative spaces, education, meetings and art galleries this is less of an issue.<br />
As the parts of the jigsaw come together over the next year the ability to have the same experience will re-emerge.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.feedingedge.co.uk/blog/2009/12/15/we-have-all-the-pieces-unity3d-opensim-evolver-smartfox/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Evolver Avatar on the Iphone via Unity3d</title>
		<link>http://www.feedingedge.co.uk/blog/2009/10/23/evolver-avatar-on-the-iphone-via-unity3d/</link>
		<comments>http://www.feedingedge.co.uk/blog/2009/10/23/evolver-avatar-on-the-iphone-via-unity3d/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 07:27:58 +0000</pubDate>
		<dc:creator>epredator</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[evolver]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[unity3d]]></category>

		<guid isPermaLink="false">http://www.feedingedge.co.uk/blog/?p=368</guid>
		<description><![CDATA[<p>It has been a busy week for travel and meetings this week. However in the gaps between pieces of work I have been exploring what I can do quickly and simply with the Iphone 3GS. I had been looking at the various 3d toolkits, doing model import by hand.
In the end it struck me as obvious [...]]]></description>
			<content:encoded><![CDATA[<p>It has been a busy week for travel and meetings this week. However in the gaps between pieces of work I have been exploring what I can do quickly and simply with the Iphone 3GS. I had been looking at the various 3d toolkits, doing model import by hand.<br />
In the end it struck me as obvious to use <a href="http://www.unity3d.com">unity3d</a> iphone as this just takes away the underlying hassle.<br />
Using unity3d it was very easy to bring things in such as my <a href="http://www.evolver.com">Evolver 3d model</a> into an app and make it draggable and rotatable using touch. This took approximately 10 minutes to do. I spent more time wondering about the various particle effect parameters than anything else.<br />
<a href="http://www.flickr.com/photos/epredator/4036108051/" title="Iphone evolver avatar by epredator, on Flickr"><img src="http://farm3.static.flickr.com/2675/4036108051_0c03ef1004_o.jpg" width="320" height="480" alt="Iphone evolver avatar" /></a><br />
<a href="http://www.flickr.com/photos/epredator/4036108237/" title="Screenshot 2009.10.23 08.12.27 by epredator, on Flickr"><img src="http://farm3.static.flickr.com/2683/4036108237_c599989b8f_o.jpg" width="320" height="480" alt="Screenshot 2009.10.23 08.12.27" /></a><br />
Obviously you can do a whole lot more, but it is a massive leap in productivity. It does not require any other strange contortions or going via windows in order to get a good 3d model in.<br />
There are a few quirks in the tool chain but things like the Unity Remote application that lets you see whats going on via your Mac and streaming media from the iphone are great. (Hint if you cant get unity remote to compile and deploy just grab a version from the iphone store (lost a few minutes thinking about that!)<br />
I know the hardcore techs will be saying you can build all this from the various bits, cocos, SIO2 etc but I have had to do that one to many times and I want to explore the ideas for applications rather than the guts of the platform.<br />
Just having this in my hands and using it has created rather a long list of &#8220;I wonder if&#8230;&#8221; apps to create. Including using the touch interface to control some Opensim objects.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.feedingedge.co.uk/blog/2009/10/23/evolver-avatar-on-the-iphone-via-unity3d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flocking Brilliant (fill in own joke here)</title>
		<link>http://www.feedingedge.co.uk/blog/2009/05/11/flocking-brilliant-fill-in-own-joke-here/</link>
		<comments>http://www.feedingedge.co.uk/blog/2009/05/11/flocking-brilliant-fill-in-own-joke-here/#comments</comments>
		<pubDate>Mon, 11 May 2009 12:47:20 +0000</pubDate>
		<dc:creator>epredator</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[unity3d]]></category>
		<category><![CDATA[flocking]]></category>
		<category><![CDATA[organic]]></category>

		<guid isPermaLink="false">http://www.feedingedge.co.uk/blog/?p=126</guid>
		<description><![CDATA[<p>In my exploration of what unity3d does and how easy it can be to get things going I was about to set upon implementing the Craig Reynolds flocking code in the environment. I have done a fair few things related to using this flocking algorithm. Not all were published publicly, though I did about 4 years [...]]]></description>
			<content:encoded><![CDATA[<p>In my exploration of what unity3d does and how easy it can be to get things going I was about to set upon implementing the<a href="http://www.red3d.com/cwr/boids/"> Craig Reynolds flocking code</a> in the environment. I have done a fair few things related to using this flocking algorithm. Not all were published publicly, though I did about 4 years back create an organizational structure viewer where on selecting a person their related people would flock around them so that you could navigate through a organization based on relationships and drag flocks around.<br />
The principle of the flocking code is very simple. Each individual in a flock has a motivation to aim for a destination, but to back from a collision with any other member of the flock. The code used is pretty much the same everywhere based on Craig originals. Flocking can provide some dynamic insight into relationships between objects, in particular when more than one flock, or the focus of the flock can be changed.<br />
Before I set about my coding example I had a look around, and not surprisingly I found that the <a href="http://www.unifycommunity.com/wiki/index.php?title=Flocking">Unify community wiki had already done the work needed in both C# and JS. </a></p>
<p><a href="http://www.unifycommunity.com/wiki/index.php?title=Flocking"></a>Once set in motion the boids (as they are referred to everywhere) a cast out into the world. They then try and reach a point at the centre of the flock, never bumping into one another, as they get close they back off and then try again. An element of random direction provides an interesting display. Bear in mind these are simply acting under a simple rule, the path and shape of the flock is just emergent from those simple rules.</p>
<p>I have <a href="http://www.feedingedge.co.uk/unity/flocking.html">simply published a version of that on this page</a> (it will do the plugin download for you) as you need to see the beauty in both the complexity and simplicity of movement.<br />
As you can see a still just does not do it justice.<br />
<a title="Flocking by epredator, on Flickr" href="http://www.flickr.com/photos/epredator/3522138052/"><img src="http://farm4.static.flickr.com/3660/3522138052_947516af8a_o.jpg" alt="Flocking" width="601" height="451" /></a><br />
So now I have this I can see what I can apply it to. (Flickr Flock of Photo maybe? )</p>
]]></content:encoded>
			<wfw:commentRss>http://www.feedingedge.co.uk/blog/2009/05/11/flocking-brilliant-fill-in-own-joke-here/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A quick study with Unity3d, dropping things.</title>
		<link>http://www.feedingedge.co.uk/blog/2009/04/25/a-quick-study-with-unity3d-dropping-things/</link>
		<comments>http://www.feedingedge.co.uk/blog/2009/04/25/a-quick-study-with-unity3d-dropping-things/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 09:24:46 +0000</pubDate>
		<dc:creator>epredator</dc:creator>
				<category><![CDATA[branding]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[cheetah3d]]></category>
		<category><![CDATA[unity3d]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.feedingedge.co.uk/blog/?p=97</guid>
		<description><![CDATA[<p>I have been looking into Unity3d a little more recently. As a programmer since I was 14 (thats a long while ago) I tend to look at languages and toolkits with a sort of skim pattern approach. I look for tiny pieces of flexibility knowing that if they exist then a lot more can be combined with [...]]]></description>
			<content:encoded><![CDATA[<p>I have been looking into <a href="http://www.unity3d.com">Unity3d</a> a little more recently. As a programmer since I was 14 (thats a long while ago) I tend to look at languages and toolkits with a sort of skim pattern approach. I look for tiny pieces of flexibility knowing that if they exist then a lot more can be combined with more effort and time to produce the required results.<br />
Unity3d has this flexibility in so many ways, as well as providing a whole host of useful tools to help create things on a grand scale.<br />
I had already explored being able to get image resources from the web from places like Flickr, once that inbound route is possible then the web can be used for all sorts of triggers to an application. However I wanted to explore the physics and character animation potential.<br />
I am not a graphic designer, nor an expert in high end 3d packages but I do know a little of what I need to do. I started to use the excellent <a href="http://www.cheetah3d.com">Cheetah3d</a> on the Mac as it is low cost, suites my needs and works well with Unity natively.<br />
Whilst at the airport I built a little person, and also rigged it with bones and joints. The only problem I had was having created the individual prims I could not see how to get them to become one mesh. It turns out you have to use &#8220;Import Children&#8221; in Cheetah3d. However having done that it leaves copies of the children in the heirarchy, which is helpful but confused me as I thought it was not working. Once that was done though we were all systems go.<br />
<a title="myman2pic by epredator, on Flickr" href="http://www.flickr.com/photos/epredator/3472292177/"><img src="http://farm4.static.flickr.com/3660/3472292177_e7ac9db376.jpg" alt="myman2pic" width="500" height="372" /></a><br />
Telling Unity3d about the figure was very simple, a drag and drop in fact.<br />
Once in Unity3d it was easy to create a terrain, select some foliage, have it autiomatically populat the terrain with that foliage. I then used the ragdoll wizard to tell Unity3d about the joints and parts on the Cheetah3d figure.<br />
<a title="unitypic by epredator, on Flickr" href="http://www.flickr.com/photos/epredator/3473100826/"><img src="http://farm4.static.flickr.com/3337/3473100826_1c4c5631a1.jpg" alt="unitypic" width="500" height="284" /></a><br />
The rest was a few clicks to see what worked.<br />
<span style="text-decoration: line-through;"> This example is not &#8220;interactive&#8221; as such</span>, but just a little example for my own benefit, but I liked the result so I thought I would share it <img src='http://www.feedingedge.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>****Update I just added  little bounce button to throw the things back up in the air again (once they have landed). This is doing a publish of a message to a set of listeners. once again a nice implementation. Of course all the ragdoll physics may make it a little clunky for now real reason, but optimization is another subject:)</p>
<p>You can launch the <a href="http://www.feedingedge.co.uk/unity/bodies.html" target="_blank">example here it should do all the plugin checking for you I hope</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.feedingedge.co.uk/blog/2009/04/25/a-quick-study-with-unity3d-dropping-things/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
