<?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>Dan Wolfe &#187; Game Development</title>
	<atom:link href="http://www.danwolfe.net/category/game-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.danwolfe.net</link>
	<description>Just another indie game developer blog</description>
	<lastBuildDate>Thu, 15 Jul 2010 06:02:27 +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>How To: Build Android Apps with FlashDevelop</title>
		<link>http://www.danwolfe.net/how-to-build-android-apps-with-flashdevelop/</link>
		<comments>http://www.danwolfe.net/how-to-build-android-apps-with-flashdevelop/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 06:02:27 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[Game Development]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tools I Like]]></category>

		<guid isPermaLink="false">http://www.danwolfe.net/?p=785</guid>
		<description><![CDATA[WARNING!!! THIS IS NOT A FULL STEP-BY-STEP TUTORIAL! I assume that you already know how to compile a swf with Flash Develop, but I&#8217;ll try to go over the basic steps as a quick review. There are quite a few steps along the way to get everything working, so since I don&#8217;t want to reinvent [...]]]></description>
			<content:encoded><![CDATA[<p><strong>WARNING!!! THIS IS NOT A FULL STEP-BY-STEP TUTORIAL!</strong></p>
<p>I assume that you already know how to compile a swf with Flash Develop, but I&#8217;ll try to go over the basic steps as a quick review. There are quite a few steps along the way to get everything working, so since I don&#8217;t want to reinvent the wheel with this how-to so I&#8217;ll instead direct you to the original sources I followed where it makes sense:</p>
<p>What you need:</p>
<ul>
<li><a href="http://www.flashdevelop.org/" target="_blank">FlashDevelop</a></li>
<li><a href="http://www.java.com/en/download/" target="_blank">JRE 1.6</a></li>
<li><a href="http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4" target="_blank">Flex 4 SDK</a></li>
<li><a href="http://labs.adobe.com/technologies/air2/android/" target="_blank">Air for Android SDK and Runtime for Andoid 2.2 Emulator</a></li>
<li><a href="http://developer.android.com/sdk/index.html" target="_blank">Android SDK</a></li>
<li><a href="http://wiki.github.com/AdamAtomic/flixel/" target="_blank">Flixel</a> (optional)</li>
</ul>
<p><a href="http://www.flashdevelop.org/wikidocs/index.php?title=Installation" target="_blank">Install </a>and <a href="http://www.flashdevelop.org/wikidocs/index.php?title=Configuration" target="_blank">configure</a> FlashDevelop if you haven&#8217;t already. FlashGamesDojo also has a nice <a href="http://flashgamedojo.com/wiki/index.php?title=Installing_FlashDevelop" target="_blank">install/configure tutorial</a>.<span id="more-785"></span></p>
<p>Create a new &#8220;AIR Flex 4 Projector&#8221; project from the Project&gt;New Project menu.</p>
<p>At this point you can follow the &#8220;Hello World tutorial for <a href="http://flashgamedojo.com/wiki/index.php?title=Hello_World_-_FlashDevelop%28Flixel%29" target="_blank">Flixel</a> info if you would like. Otherwise create your game/app/whatever. When you&#8217;re done compile your app into a .swf file (press F8 or Project&gt;Build Project from the menu).</p>
<p>Okay, now we have a .swf file! Let&#8217;s turn it into an Air for Android application:</p>
<p>You need two text files named CreateCertificate.bat and  PackageApplication.bat.  If you created an &#8220;AIR Flex 4 projector&#8221; project to start with these files  will be created for you automatically. If you created a different project type you can either create an &#8220;AIR Flex 4 projector&#8221; project now and move your project file over to the new folder or, create these files manually in the main project directory.  You&#8217;ll need to make some changes  to get them working with the 2.5 Beta SDK. Here are mine to use as  examples, please change the password, application names, and path to SDKs as  appropriate:</p>
<p>CreateCertificate.bat:</p>
<pre class="brush:shell">@echo off

:: AIR certificate generator
:: More information:
:: http://livedocs.adobe.com/flex/3/html/help.html?content=CommandLineTools_5.html#1035959
:: http://livedocs.adobe.com/flex/3/html/distributing_apps_4.html#1037515

:: Path to Flex SDK binaries
set PATH=%PATH%;C:\AIR25_win_sdk\bin

:: Certificate information
set NAME=SelfSigned
set PASSWORD=FD
set CERTIFICATE=SelfSigned.pfx

call adt -certificate -cn %NAME% 1024-RSA %CERTIFICATE% %PASSWORD%
if errorlevel 1 goto failed

echo.
echo Certificate created: %CERTIFICATE%
echo With password: %PASSWORD%
echo.
echo Hint: you may have to wait a few minutes before using this certificate to build your AIR application setup.
echo.
goto end

:failed
echo.
echo Certificate creation FAILED.
echo.
echo Troubleshotting: did you configure the Flex SDK path in this Batch file?
echo.

:end
pause</pre>
<p>PackageApplication.bat:</p>
<pre class="brush:shell">@echo off

:: AIR application packaging
:: More information:
:: http://livedocs.adobe.com/flex/3/html/help.html?content=CommandLineTools_5.html#1035959

:: Path to Flex SDK and ANDROID binaries
set PATH=%PATH%;C:\AIR25_win_sdk\bin
set PATH=%PATH%;C:\android-sdk-windows\tools

:: Signature (see 'CreateCertificate.bat')
set CERTIFICATE=SelfSigned.pfx
set SIGNING_OPTIONS=-storetype pkcs12 -keystore %CERTIFICATE%
if not exist %CERTIFICATE% goto certificate

:: Output AIR
if not exist air md air
set AIR_FILE=air/MyApp.air

:: Output APK
if not exist apk md apk
set APK_FILE=apk/MyApp.apk

:: Input
set APP_XML=application.xml
set FILE_OR_DIR=-C bin .

echo Signing AIR setup using certificate %CERTIFICATE%.
call adt -package %SIGNING_OPTIONS% %AIR_FILE% %APP_XML% %FILE_OR_DIR%
if errorlevel 1 goto failed

echo.
echo AIR setup created: %AIR_FILE%
echo.

echo Signing APK setup using certificate %CERTIFICATE%.
call adt -package -target apk %SIGNING_OPTIONS% %APK_FILE% %APP_XML% %FILE_OR_DIR%
if errorlevel 1 goto failed

echo.
echo APK setup created: %APK_FILE%
echo.

:: APK INSTALL
echo Installing package... %APK_FILE%
call adb install %APK_FILE%
if errorlevel 1 goto failed2

echo.
echo Android setup installed: %APK_FILE%
echo.
goto end

:certificate
echo Certificate not found: %CERTIFICATE%
echo.
echo Troubleshotting:
echo A certificate is required, generate one using 'CreateCertificate.bat'
echo.
goto end

:failed
echo AIR setup creation FAILED.
echo.
echo Troubleshotting:
echo did you configure the Air SDK path in this Batch file?
echo %PATH%
echo.

:failed2
echo Android install FAILED.
echo.

:end
pause</pre>
<p>Next, let&#8217;s <a href="http://developer.android.com/sdk/index.html" target="_blank">install the Android SDK</a>. Then create a virtual device following the <a href="http://developer.android.com/resources/tutorials/hello-world.html" target="_blank">&#8220;Create an AVD&#8221; part of this tutorial</a>. Fire up the virtual device you just created. This will take a while&#8230;</p>
<p>Install the Air Runtime on the Android device by opening a Windows terminal window (Windows Start Menu&gt; type &#8220;cmd&#8221;) and entering the command:</p>
<p>adb install pathToRuntime/Runtime.apk</p>
<p>Now you&#8217;ve compiled your SWF, you have the Android emulator up and running with Air installed on it, all you have to do is right click on CreateCertificate.bat and select &#8220;Execute&#8221; from the popup menu. This will generate a certificate that can be used to sign your application.</p>
<p>Next,  right click on PackageApplication.bat and select &#8220;Execute&#8221; from the popup menu. Fill in the password you specified in CreateCertificate.bat file both times when prompted. Two steps happen here: The first one generates an .air file and the second generates an .apk file (and attempts to install it on an attached Android phone or the already running Android emulator).</p>
<p>And that&#8217;s it. If you&#8217;ve compiled your first Adobe Air for Android application! If you get stuck along the way the &#8220;Developing_AIR_Apps_for_Android&#8221; pdf included in the Adobe Air for Android SDK is an invaluable resource &#8211; just follow the the parts for &#8220;command line tools&#8221;.</p>

<a href="http://www.danwolfe.net/wp-content/gallery/misc/droid_emu.png" title="" class="shutterset_singlepic73" >
	<img class="ngg-singlepic" src="http://www.danwolfe.net/wp-content/gallery/cache/73__320x240_droid_emu.png" alt="droid_emu" title="droid_emu" />
</a>

<p align="left"><a target="_blank" class="tt" href="http://twitter.com/home/?status=How+To%3A+Build+Android+Apps+with+FlashDevelop+http://is.gd/dUeO0" title="Post to Twitter"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://twitter.com/home/?status=How+To%3A+Build+Android+Apps+with+FlashDevelop+http://is.gd/dUeO0" title="Post to Twitter">Twitter</a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/how-to-build-android-apps-with-flashdevelop/&amp;title=How+To%3A+Build+Android+Apps+with+FlashDevelop" title="Post to Delicious"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/how-to-build-android-apps-with-flashdevelop/&amp;title=How+To%3A+Build+Android+Apps+with+FlashDevelop" title="Post to Delicious">Delicious</a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/how-to-build-android-apps-with-flashdevelop/&amp;title=How+To%3A+Build+Android+Apps+with+FlashDevelop" title="Post to Digg"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/how-to-build-android-apps-with-flashdevelop/&amp;title=How+To%3A+Build+Android+Apps+with+FlashDevelop" title="Post to Digg">Digg</a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/how-to-build-android-apps-with-flashdevelop/&amp;t=How+To%3A+Build+Android+Apps+with+FlashDevelop" title="Post to Facebook"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/how-to-build-android-apps-with-flashdevelop/&amp;t=How+To%3A+Build+Android+Apps+with+FlashDevelop" title="Post to Facebook">Facebook</a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/how-to-build-android-apps-with-flashdevelop/&amp;title=How+To%3A+Build+Android+Apps+with+FlashDevelop" title="Post to StumbleUpon"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/how-to-build-android-apps-with-flashdevelop/&amp;title=How+To%3A+Build+Android+Apps+with+FlashDevelop" title="Post to StumbleUpon">StumbleUpon</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.danwolfe.net/how-to-build-android-apps-with-flashdevelop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tiled</title>
		<link>http://www.danwolfe.net/custom-export-plugin-for-tiled/</link>
		<comments>http://www.danwolfe.net/custom-export-plugin-for-tiled/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 13:42:44 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[Game Development]]></category>
		<category><![CDATA[Tools I Like]]></category>

		<guid isPermaLink="false">http://www.danwolfe.net/?p=780</guid>
		<description><![CDATA[Level design is a pain if you don&#8217;t have a decent tool. I&#8217;ve been using Tiled, a nice little open source tile map editor. One nifty thing you can do is write your own plugin so you can support any map format you need! Twitter Delicious Digg Facebook StumbleUpon]]></description>
			<content:encoded><![CDATA[<p>Level design is a pain if you don&#8217;t have a decent tool. I&#8217;ve been using <a href="http://sourceforge.net/projects/tiled/" target="_blank">Tiled</a>, a nice little open source tile map editor. One nifty thing you can do is <a href="http://sourceforge.net/apps/mediawiki/tiled/index.php?title=Writing_your_own_plugin" target="_blank">write your own plugin</a> so you can support any map format you need!</p>

<a href="http://www.danwolfe.net/wp-content/gallery/misc/croppercapture9.png" title="" class="shutterset_singlepic78" >
	<img class="ngg-singlepic" src="http://www.danwolfe.net/wp-content/gallery/cache/78__320x240_croppercapture9.png" alt="croppercapture9" title="croppercapture9" />
</a>

<p align="left"><a target="_blank" class="tt" href="http://twitter.com/home/?status=Tiled+http://is.gd/dUeO3" title="Post to Twitter"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://twitter.com/home/?status=Tiled+http://is.gd/dUeO3" title="Post to Twitter">Twitter</a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/custom-export-plugin-for-tiled/&amp;title=Tiled" title="Post to Delicious"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/custom-export-plugin-for-tiled/&amp;title=Tiled" title="Post to Delicious">Delicious</a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/custom-export-plugin-for-tiled/&amp;title=Tiled" title="Post to Digg"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/custom-export-plugin-for-tiled/&amp;title=Tiled" title="Post to Digg">Digg</a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/custom-export-plugin-for-tiled/&amp;t=Tiled" title="Post to Facebook"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/custom-export-plugin-for-tiled/&amp;t=Tiled" title="Post to Facebook">Facebook</a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/custom-export-plugin-for-tiled/&amp;title=Tiled" title="Post to StumbleUpon"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/custom-export-plugin-for-tiled/&amp;title=Tiled" title="Post to StumbleUpon">StumbleUpon</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.danwolfe.net/custom-export-plugin-for-tiled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hell Invades Mars for ANDROID Phones Coming Soon</title>
		<link>http://www.danwolfe.net/hell-invades-mars-for-android-phones-coming-soon/</link>
		<comments>http://www.danwolfe.net/hell-invades-mars-for-android-phones-coming-soon/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 02:29:25 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[Game Development]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tools I Like]]></category>

		<guid isPermaLink="false">http://www.danwolfe.net/?p=772</guid>
		<description><![CDATA[Adobe and Google have made porting Flash games to the Android platform painfully easy. I&#8217;ve reworked Hell Invades Mars to run on Air for Android. Here are a couple of updated screenshots: UPDATE: I was having problems getting the original version to run on the Android Emulator, so the entire game has been ported to [...]]]></description>
			<content:encoded><![CDATA[<p>Adobe and Google have made porting Flash games to the Android platform painfully easy. I&#8217;ve reworked <em>Hell Invades Mars</em> to run on Air for Android. Here are a couple of updated screenshots:</p>

<div class="ngg-galleryoverview" id="ngg-gallery-15-772">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-74" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.danwolfe.net/wp-content/gallery/hell-invades-mars-android/ha1.png" title=" " class="shutterset_set_15" >
								<img title="ha1" alt="ha1" src="http://www.danwolfe.net/wp-content/gallery/hell-invades-mars-android/thumbs/thumbs_ha1.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-75" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.danwolfe.net/wp-content/gallery/hell-invades-mars-android/ha2.png" title=" " class="shutterset_set_15" >
								<img title="ha2" alt="ha2" src="http://www.danwolfe.net/wp-content/gallery/hell-invades-mars-android/thumbs/thumbs_ha2.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-76" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.danwolfe.net/wp-content/gallery/hell-invades-mars-android/ha3.png" title=" " class="shutterset_set_15" >
								<img title="ha3" alt="ha3" src="http://www.danwolfe.net/wp-content/gallery/hell-invades-mars-android/thumbs/thumbs_ha3.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


<p><strong>UPDATE:</strong></p>
<p>I was having problems getting the original version to run on the Android Emulator, so the entire game has been ported to <a href="http://www.flixel.org" target="_blank">Flixel</a>!</p>

<a href="http://www.danwolfe.net/wp-content/gallery/misc/hellan2.png" title="" class="shutterset_singlepic77" >
	<img class="ngg-singlepic" src="http://www.danwolfe.net/wp-content/gallery/cache/77__320x240_hellan2.png" alt="hellan2" title="hellan2" />
</a>

<p align="left"><a target="_blank" class="tt" href="http://twitter.com/home/?status=Hell+Invades+Mars+for+ANDROID+Phones+Coming+Soon+http://is.gd/dUeO7" title="Post to Twitter"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://twitter.com/home/?status=Hell+Invades+Mars+for+ANDROID+Phones+Coming+Soon+http://is.gd/dUeO7" title="Post to Twitter">Twitter</a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/hell-invades-mars-for-android-phones-coming-soon/&amp;title=Hell+Invades+Mars+for+ANDROID+Phones+Coming+Soon" title="Post to Delicious"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/hell-invades-mars-for-android-phones-coming-soon/&amp;title=Hell+Invades+Mars+for+ANDROID+Phones+Coming+Soon" title="Post to Delicious">Delicious</a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/hell-invades-mars-for-android-phones-coming-soon/&amp;title=Hell+Invades+Mars+for+ANDROID+Phones+Coming+Soon" title="Post to Digg"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/hell-invades-mars-for-android-phones-coming-soon/&amp;title=Hell+Invades+Mars+for+ANDROID+Phones+Coming+Soon" title="Post to Digg">Digg</a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/hell-invades-mars-for-android-phones-coming-soon/&amp;t=Hell+Invades+Mars+for+ANDROID+Phones+Coming+Soon" title="Post to Facebook"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/hell-invades-mars-for-android-phones-coming-soon/&amp;t=Hell+Invades+Mars+for+ANDROID+Phones+Coming+Soon" title="Post to Facebook">Facebook</a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/hell-invades-mars-for-android-phones-coming-soon/&amp;title=Hell+Invades+Mars+for+ANDROID+Phones+Coming+Soon" title="Post to StumbleUpon"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/hell-invades-mars-for-android-phones-coming-soon/&amp;title=Hell+Invades+Mars+for+ANDROID+Phones+Coming+Soon" title="Post to StumbleUpon">StumbleUpon</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.danwolfe.net/hell-invades-mars-for-android-phones-coming-soon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flixel + Air + Android = Awesome</title>
		<link>http://www.danwolfe.net/flixel-air-android-awesome/</link>
		<comments>http://www.danwolfe.net/flixel-air-android-awesome/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 01:17:10 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[Game Development]]></category>
		<category><![CDATA[Tools I Like]]></category>

		<guid isPermaLink="false">http://www.danwolfe.net/?p=767</guid>
		<description><![CDATA[Run, Humanoid, Run! running on the Android SDK emulator: Twitter Delicious Digg Facebook StumbleUpon]]></description>
			<content:encoded><![CDATA[<p><em>Run, Humanoid, Run!</em> running on the Android SDK emulator:</p>

<a href="http://www.danwolfe.net/wp-content/gallery/misc/droid_emu.png" title="" class="shutterset_singlepic73" >
	<img class="ngg-singlepic" src="http://www.danwolfe.net/wp-content/gallery/cache/73__320x240_droid_emu.png" alt="droid_emu" title="droid_emu" />
</a>

<p align="left"><a target="_blank" class="tt" href="http://twitter.com/home/?status=Flixel+%2B+Air+%2B+Android+%3D+Awesome+http://is.gd/dUeO9" title="Post to Twitter"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://twitter.com/home/?status=Flixel+%2B+Air+%2B+Android+%3D+Awesome+http://is.gd/dUeO9" title="Post to Twitter">Twitter</a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/flixel-air-android-awesome/&amp;title=Flixel+%2B+Air+%2B+Android+%3D+Awesome" title="Post to Delicious"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/flixel-air-android-awesome/&amp;title=Flixel+%2B+Air+%2B+Android+%3D+Awesome" title="Post to Delicious">Delicious</a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/flixel-air-android-awesome/&amp;title=Flixel+%2B+Air+%2B+Android+%3D+Awesome" title="Post to Digg"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/flixel-air-android-awesome/&amp;title=Flixel+%2B+Air+%2B+Android+%3D+Awesome" title="Post to Digg">Digg</a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/flixel-air-android-awesome/&amp;t=Flixel+%2B+Air+%2B+Android+%3D+Awesome" title="Post to Facebook"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/flixel-air-android-awesome/&amp;t=Flixel+%2B+Air+%2B+Android+%3D+Awesome" title="Post to Facebook">Facebook</a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/flixel-air-android-awesome/&amp;title=Flixel+%2B+Air+%2B+Android+%3D+Awesome" title="Post to StumbleUpon"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/flixel-air-android-awesome/&amp;title=Flixel+%2B+Air+%2B+Android+%3D+Awesome" title="Post to StumbleUpon">StumbleUpon</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.danwolfe.net/flixel-air-android-awesome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RHR Early May Update</title>
		<link>http://www.danwolfe.net/rhr-early-may-update/</link>
		<comments>http://www.danwolfe.net/rhr-early-may-update/#comments</comments>
		<pubDate>Wed, 12 May 2010 02:22:55 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Game Development]]></category>

		<guid isPermaLink="false">http://www.danwolfe.net/?p=756</guid>
		<description><![CDATA[An updated teaser: Twitter Delicious Digg Facebook StumbleUpon]]></description>
			<content:encoded><![CDATA[<p>An updated teaser:</p>
<p><img class="ngg-singlepic ngg-none" src="http://www.danwolfe.net/wp-content/gallery/misc/5-12-10.png" alt="5-12-10" /></p>
<p align="left"><a target="_blank" class="tt" href="http://twitter.com/home/?status=RHR+Early+May+Update+http://is.gd/dUeOa" title="Post to Twitter"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://twitter.com/home/?status=RHR+Early+May+Update+http://is.gd/dUeOa" title="Post to Twitter">Twitter</a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/rhr-early-may-update/&amp;title=RHR+Early+May+Update" title="Post to Delicious"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/rhr-early-may-update/&amp;title=RHR+Early+May+Update" title="Post to Delicious">Delicious</a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/rhr-early-may-update/&amp;title=RHR+Early+May+Update" title="Post to Digg"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/rhr-early-may-update/&amp;title=RHR+Early+May+Update" title="Post to Digg">Digg</a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/rhr-early-may-update/&amp;t=RHR+Early+May+Update" title="Post to Facebook"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/rhr-early-may-update/&amp;t=RHR+Early+May+Update" title="Post to Facebook">Facebook</a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/rhr-early-may-update/&amp;title=RHR+Early+May+Update" title="Post to StumbleUpon"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/rhr-early-may-update/&amp;title=RHR+Early+May+Update" title="Post to StumbleUpon">StumbleUpon</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.danwolfe.net/rhr-early-may-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>April &#8217;10 Update</title>
		<link>http://www.danwolfe.net/april-10-update/</link>
		<comments>http://www.danwolfe.net/april-10-update/#comments</comments>
		<pubDate>Sat, 01 May 2010 02:17:58 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Game Development]]></category>

		<guid isPermaLink="false">http://www.danwolfe.net/?p=754</guid>
		<description><![CDATA[Slow and steady wins the race. Here&#8217;s a screenshot of some recent in-game artwork: Twitter Delicious Digg Facebook StumbleUpon]]></description>
			<content:encoded><![CDATA[<p>Slow and steady wins the race. Here&#8217;s a screenshot of some recent in-game artwork:</p>

<a href="http://www.danwolfe.net/wp-content/gallery/misc/working_43010.png" title="" class="shutterset_singlepic71" >
	<img class="ngg-singlepic" src="http://www.danwolfe.net/wp-content/gallery/cache/71__322x288_working_43010.png" alt="working_43010" title="working_43010" />
</a>

<p align="left"><a target="_blank" class="tt" href="http://twitter.com/home/?status=April+%E2%80%9910+Update+http://is.gd/dUeOg" title="Post to Twitter"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://twitter.com/home/?status=April+%E2%80%9910+Update+http://is.gd/dUeOg" title="Post to Twitter">Twitter</a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/april-10-update/&amp;title=April+%E2%80%9910+Update" title="Post to Delicious"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/april-10-update/&amp;title=April+%E2%80%9910+Update" title="Post to Delicious">Delicious</a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/april-10-update/&amp;title=April+%E2%80%9910+Update" title="Post to Digg"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/april-10-update/&amp;title=April+%E2%80%9910+Update" title="Post to Digg">Digg</a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/april-10-update/&amp;t=April+%E2%80%9910+Update" title="Post to Facebook"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/april-10-update/&amp;t=April+%E2%80%9910+Update" title="Post to Facebook">Facebook</a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/april-10-update/&amp;title=April+%E2%80%9910+Update" title="Post to StumbleUpon"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/april-10-update/&amp;title=April+%E2%80%9910+Update" title="Post to StumbleUpon">StumbleUpon</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.danwolfe.net/april-10-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now in Color!</title>
		<link>http://www.danwolfe.net/now-in-color/</link>
		<comments>http://www.danwolfe.net/now-in-color/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 02:23:58 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Game Development]]></category>

		<guid isPermaLink="false">http://www.danwolfe.net/?p=748</guid>
		<description><![CDATA[A little teaser pic: Compare to the original: Twitter Delicious Digg Facebook StumbleUpon]]></description>
			<content:encoded><![CDATA[<p>A little teaser pic:</p>

<a href="http://www.danwolfe.net/wp-content/gallery/misc/rhr_color.png" title="" class="shutterset_singlepic70" >
	<img class="ngg-singlepic" src="http://www.danwolfe.net/wp-content/gallery/cache/70__320x480_rhr_color.png" alt="rhr_color" title="rhr_color" />
</a>

<p>Compare to the original:</p>

<a href="http://www.danwolfe.net/wp-content/gallery/runhumanoidrun/rhr1.png" title="" class="shutterset_singlepic64" >
	<img class="ngg-singlepic" src="http://www.danwolfe.net/wp-content/gallery/cache/64__320x240_rhr1.png" alt="rhr1" title="rhr1" />
</a>

<p align="left"><a target="_blank" class="tt" href="http://twitter.com/home/?status=Now+in+Color%21+http://is.gd/dUaCn" title="Post to Twitter"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://twitter.com/home/?status=Now+in+Color%21+http://is.gd/dUaCn" title="Post to Twitter">Twitter</a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/now-in-color/&amp;title=Now+in+Color%21" title="Post to Delicious"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/now-in-color/&amp;title=Now+in+Color%21" title="Post to Delicious">Delicious</a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/now-in-color/&amp;title=Now+in+Color%21" title="Post to Digg"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/now-in-color/&amp;title=Now+in+Color%21" title="Post to Digg">Digg</a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/now-in-color/&amp;t=Now+in+Color%21" title="Post to Facebook"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/now-in-color/&amp;t=Now+in+Color%21" title="Post to Facebook">Facebook</a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/now-in-color/&amp;title=Now+in+Color%21" title="Post to StumbleUpon"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/now-in-color/&amp;title=Now+in+Color%21" title="Post to StumbleUpon">StumbleUpon</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.danwolfe.net/now-in-color/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The return begins&#8230;</title>
		<link>http://www.danwolfe.net/the-return-begins/</link>
		<comments>http://www.danwolfe.net/the-return-begins/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 13:19:42 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[Game Development]]></category>

		<guid isPermaLink="false">http://www.danwolfe.net/?p=746</guid>
		<description><![CDATA[I still have a lot of other commitments that will keep me from doing a lot of game development, but I have begun porting the Run, Humanoid, Run! code over to Flixel 2. In the process I&#8217;m doing a lot of rewrites and redesign a good chunk of the game which will  (hopefully) include semi-dynamically [...]]]></description>
			<content:encoded><![CDATA[<p>I still have a lot of other commitments that will keep me from doing a lot of game development, but I have begun porting the <em>Run, Humanoid, Run!</em> code over to Flixel 2. In the process I&#8217;m doing a lot of rewrites and redesign a good chunk of the game which will  (hopefully) include semi-dynamically generated levels and all new artwork. More updates later, just don&#8217;t expect them quickly <img src='http://www.danwolfe.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p align="left"><a target="_blank" class="tt" href="http://twitter.com/home/?status=The+return+begins%E2%80%A6+http://is.gd/dUeOl" title="Post to Twitter"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://twitter.com/home/?status=The+return+begins%E2%80%A6+http://is.gd/dUeOl" title="Post to Twitter">Twitter</a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/the-return-begins/&amp;title=The+return+begins%E2%80%A6" title="Post to Delicious"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/the-return-begins/&amp;title=The+return+begins%E2%80%A6" title="Post to Delicious">Delicious</a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/the-return-begins/&amp;title=The+return+begins%E2%80%A6" title="Post to Digg"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/the-return-begins/&amp;title=The+return+begins%E2%80%A6" title="Post to Digg">Digg</a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/the-return-begins/&amp;t=The+return+begins%E2%80%A6" title="Post to Facebook"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/the-return-begins/&amp;t=The+return+begins%E2%80%A6" title="Post to Facebook">Facebook</a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/the-return-begins/&amp;title=The+return+begins%E2%80%A6" title="Post to StumbleUpon"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/the-return-begins/&amp;title=The+return+begins%E2%80%A6" title="Post to StumbleUpon">StumbleUpon</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.danwolfe.net/the-return-begins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flixel 2.0 Released</title>
		<link>http://www.danwolfe.net/flixel-2-0-released/</link>
		<comments>http://www.danwolfe.net/flixel-2-0-released/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 14:12:06 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tools I Like]]></category>

		<guid isPermaLink="false">http://www.danwolfe.net/?p=705</guid>
		<description><![CDATA[Adam Atomic has just released Flixel 2.0! Flixel is an Actionscript 3 library designed to simplify Flash game creation. I&#8217;ve used Flixel on Gunpei Mania and Run, Humanoid, Run! and think that it is really a great tool. The new version breaks backwards compatibility, but it has some exciting new features, a number of bug [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://adamatomic.com/" target="_blank">Adam Atomic</a> has just released <a href="http://www.flixel.org" target="_blank">Flixel</a> 2.0!</p>
<p>Flixel is an Actionscript 3 library designed to simplify Flash game creation. I&#8217;ve used Flixel on <em>Gunpei Mania</em> and <em>Run, Humanoid, Run!</em> and think that it is really a great tool. The new version breaks backwards compatibility, but it has some exciting new features, a number of bug fixes, and many general improvements.</p>
<p>Here are the important links:</p>
<ul>
<li><a href="http://github.com/AdamAtomic/flixel/downloads" target="_blank">Download</a></li>
<li><a href="http://flixel.org/forums/index.php?topic=973.0" target="_blank">Announcement</a></li>
<li><a href="http://bit.ly/4BImtf" target="_blank">Release Notes</a></li>
<li><a href="http://bit.ly/daft75" target="_blank">Porting Guide (1.5 to 2.0)</a></li>
<li><a href="http://bit.ly/cnFWcy" target="_blank">Demos</a></li>
</ul>
<p align="left"><a target="_blank" class="tt" href="http://twitter.com/home/?status=Flixel+2.0+Released+http://is.gd/dUopA" title="Post to Twitter"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://twitter.com/home/?status=Flixel+2.0+Released+http://is.gd/dUopA" title="Post to Twitter">Twitter</a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/flixel-2-0-released/&amp;title=Flixel+2.0+Released" title="Post to Delicious"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/flixel-2-0-released/&amp;title=Flixel+2.0+Released" title="Post to Delicious">Delicious</a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/flixel-2-0-released/&amp;title=Flixel+2.0+Released" title="Post to Digg"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/flixel-2-0-released/&amp;title=Flixel+2.0+Released" title="Post to Digg">Digg</a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/flixel-2-0-released/&amp;t=Flixel+2.0+Released" title="Post to Facebook"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/flixel-2-0-released/&amp;t=Flixel+2.0+Released" title="Post to Facebook">Facebook</a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/flixel-2-0-released/&amp;title=Flixel+2.0+Released" title="Post to StumbleUpon"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/flixel-2-0-released/&amp;title=Flixel+2.0+Released" title="Post to StumbleUpon">StumbleUpon</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.danwolfe.net/flixel-2-0-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Play Run, Humanoid, Run! Online</title>
		<link>http://www.danwolfe.net/play-run-humanoid-run-online/</link>
		<comments>http://www.danwolfe.net/play-run-humanoid-run-online/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 15:39:13 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[Game Development]]></category>
		<category><![CDATA[Indie Games]]></category>

		<guid isPermaLink="false">http://www.danwolfe.net/?p=699</guid>
		<description><![CDATA[Run, Humanoid, Run! is a short prototype game created with Flixel. The game is set on a space station that is about to explode. You must find keys to unlock the electrified doors and escape the bombs, blazing guns, and evil robots – all while completely unarmed. Run for your life, humanoid. Run! There is [...]]]></description>
			<content:encoded><![CDATA[<p><em>Run, Humanoid, Run!</em> is a short prototype game created with Flixel. The game is set on a space station that is about to explode. You must find keys to unlock the electrified doors and escape the bombs, blazing guns, and evil robots – all while completely unarmed. Run for your life, humanoid. Run!</p>
<p>There is no sound, but the game is otherwise complete. Be warned: the game is HARD, retro throw your NES controller across the room hard!</p>
<p>Play <a href="http://www.danwolfe.net/games/run-humanoid-run/">Run, Humanoid, Run!</a> Online!</p>

<div class="ngg-galleryoverview" id="ngg-gallery-14-699">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-64" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.danwolfe.net/wp-content/gallery/runhumanoidrun/rhr1.png" title=" " class="shutterset_set_14" >
								<img title="rhr1" alt="rhr1" src="http://www.danwolfe.net/wp-content/gallery/runhumanoidrun/thumbs/thumbs_rhr1.png" width="83" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-65" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.danwolfe.net/wp-content/gallery/runhumanoidrun/rhr2.png" title=" " class="shutterset_set_14" >
								<img title="rhr2" alt="rhr2" src="http://www.danwolfe.net/wp-content/gallery/runhumanoidrun/thumbs/thumbs_rhr2.png" width="83" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-66" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.danwolfe.net/wp-content/gallery/runhumanoidrun/rhr3.png" title=" " class="shutterset_set_14" >
								<img title="rhr3" alt="rhr3" src="http://www.danwolfe.net/wp-content/gallery/runhumanoidrun/thumbs/thumbs_rhr3.png" width="83" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


<p align="left"><a target="_blank" class="tt" href="http://twitter.com/home/?status=Play+Run%2C+Humanoid%2C+Run%21+Online+http://is.gd/dUopD" title="Post to Twitter"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://twitter.com/home/?status=Play+Run%2C+Humanoid%2C+Run%21+Online+http://is.gd/dUopD" title="Post to Twitter">Twitter</a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/play-run-humanoid-run-online/&amp;title=Play+Run%2C+Humanoid%2C+Run%21+Online" title="Post to Delicious"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/play-run-humanoid-run-online/&amp;title=Play+Run%2C+Humanoid%2C+Run%21+Online" title="Post to Delicious">Delicious</a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/play-run-humanoid-run-online/&amp;title=Play+Run%2C+Humanoid%2C+Run%21+Online" title="Post to Digg"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/play-run-humanoid-run-online/&amp;title=Play+Run%2C+Humanoid%2C+Run%21+Online" title="Post to Digg">Digg</a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/play-run-humanoid-run-online/&amp;t=Play+Run%2C+Humanoid%2C+Run%21+Online" title="Post to Facebook"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/play-run-humanoid-run-online/&amp;t=Play+Run%2C+Humanoid%2C+Run%21+Online" title="Post to Facebook">Facebook</a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/play-run-humanoid-run-online/&amp;title=Play+Run%2C+Humanoid%2C+Run%21+Online" title="Post to StumbleUpon"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/play-run-humanoid-run-online/&amp;title=Play+Run%2C+Humanoid%2C+Run%21+Online" title="Post to StumbleUpon">StumbleUpon</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.danwolfe.net/play-run-humanoid-run-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
