<?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>Elecorn: The Animated Coder &#187; Uncategorized</title>
	<atom:link href="http://elecorn.com/blog/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://elecorn.com/blog</link>
	<description>Indie Games, Computer Graphics, Animation, Comics, etc.</description>
	<lastBuildDate>Fri, 06 Jan 2012 19:03:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>New Voxel Based Game &#8220;Lexov&#8221;</title>
		<link>http://elecorn.com/blog/2011/02/new-voxel-based-game-lexov/</link>
		<comments>http://elecorn.com/blog/2011/02/new-voxel-based-game-lexov/#comments</comments>
		<pubDate>Sat, 12 Feb 2011 19:29:43 +0000</pubDate>
		<dc:creator>elecorn</dc:creator>
				<category><![CDATA[Computer Graphics]]></category>
		<category><![CDATA[Lexov]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[video games]]></category>
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://elecorn.com/blog/?p=466</guid>
		<description><![CDATA[So I&#8217;ve decided to take a little diversion from work on Caster&#8230; again&#8230; and make a small multiplayer voxel based<a href="http://elecorn.com/blog/2011/02/new-voxel-based-game-lexov/" class="searchmore">Read the Rest...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://elecorn.com/blog/wp-content/uploads/2011/02/Lexov-2011-02-12.png"><img class="aligncenter size-full wp-image-467" title="Lexov 2011-02-12" src="http://elecorn.com/blog/wp-content/uploads/2011/02/Lexov-2011-02-12.png" alt="" width="432" height="288" /></a></p>
<p>So I&#8217;ve decided to take a little diversion from work on Caster&#8230; again&#8230; and make a small multiplayer voxel based shooter.  The development name is Lexov, but it will not ship with that name.</p>
<p>I have this trailer for Lexaloffle&#8217;s game Voxatron to blame for this diversion:</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/_q-xqI8Cm5A&amp;feature" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/_q-xqI8Cm5A&amp;feature"></embed></object></p>
<p>Pretty cool, eh?  Get more details here: <a href="http://www.lexaloffle.com/voxatron.php">http://www.lexaloffle.com/voxatron.php</a></p>
<p>I&#8217;m targeting Xbox 360 via Xbox Indie Games.</p>
<p>Working on this game with C# on the 360 has some interesting problems that have been quite a bit of fun to try and overcome.  For example, say I have a 128 x 128 x 64 volume of voxels.  Simply walking across that volume of voxels requires over a million operations.  Doing one million operations alone in C# on the Xbox brings my frame rate down to less than 30 frames per second (just write a for loop and increment a local variable to see what I mean).</p>
<p>Here is an early version of Lexov where I am evaluating the voxel volume and adding the appropriate geometry for rendering:</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/hmvQ547YivA" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/hmvQ547YivA"></embed></object></p>
<p>Because of the performance issues with C# on the Xbox, I&#8217;ve had to get pretty creative in my approach.  I&#8217;ve started using approaches that reduce the number of operations that need to be done while favoring doing more work on the GPU (Graphics Processing Unit).  For example, in C# on the 360, it&#8217;s faster to draw an extra million triangles to save several thousand instructions per frame.</p>
<p>Currently, I&#8217;m using several dynamic vertex buffers and updating changes to the buffers as they happen in the game rather than evaluating the entire voxel volume each frame.</p>
<p>One important difference when using this approach is that I no longer have to render cubes on voxel boundaries.  This breaks some of the retro feel from being a true voxel volume, but allows for much smoother movement.</p>
<p>At this point I had to ask myself what it was that I really wanted to do with this game.  I decided that what I really wanted was a simple fun destructible environment game at 60 frames per second on the Xbox 360.  As cool as evaluating a single voxel volume would have been, it was secondary in importance.</p>
<p>Still, it&#8217;s hard to sacrifice the simplicity and beauty of the single voxel volume approach.  In the end, I&#8217;m actually very happy to have sub voxel movement in the game.</p>
<p>Here are some more videos of progress I&#8217;ve made.</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/lrUTuU1J6cE&amp;NR" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/lrUTuU1J6cE&amp;NR"></embed></object></p>
<p>And earlier today:</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/E121GqbyiCk" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/E121GqbyiCk"></embed></object></p>
<p style="text-align: left;">I&#8217;m going to try and keep an active blog on my Lexov&#8217;s progress.  I&#8217;ve been debating if the extra time to write blog posts is worth it when I could spend that time working on the game.  I&#8217;ve decided that if I get extra feedback and community support from doing the posts, then it will make for a better game.  Caster is a great example of this.  Caster would have been pretty lame and boring were it not for the amazing feedback I got while showing the game off to friends and colleagues.</p>
<p style="text-align: left;">
<p style="text-align: left;">More details on the plans for game play and design forth coming.</p>
<p style="text-align: left;">Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://elecorn.com/blog/2011/02/new-voxel-based-game-lexov/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Caster 1.3 update on Linux!</title>
		<link>http://elecorn.com/blog/2011/01/caster-1-3-update-on-linux/</link>
		<comments>http://elecorn.com/blog/2011/01/caster-1-3-update-on-linux/#comments</comments>
		<pubDate>Mon, 10 Jan 2011 15:39:03 +0000</pubDate>
		<dc:creator>elecorn</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://elecorn.com/blog/?p=455</guid>
		<description><![CDATA[Thank you all for your patience!  Caster 1.3 has been released for Linux in 32 and 64 bit versions.  You<a href="http://elecorn.com/blog/2011/01/caster-1-3-update-on-linux/" class="searchmore">Read the Rest...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p><a title="Caster 1.3 on Linux" href="http://www.casterthegame.com"><img class="size-full wp-image-456 alignnone" title="caster_title_linux_800x500" src="http://elecorn.com/blog/wp-content/uploads/2011/01/caster_title_linux_800x500.jpg" alt="" width="800" height="500" /></a></p>
<p>Thank you all for your patience!  Caster 1.3 has been released for Linux in 32 and 64 bit versions.  You can get the update here:</p>
<p style="text-align: center;"><a href="http://www.casterthegame.com">www.casterthegame.com</a></p>
<div>In  other news, future updates to Caster are in the works.  Currently, I&#8217;m  working on a new mod for Caster called &#8220;Sunshine&#8221;.  Here is a tech demo  of some scarf animation I&#8217;ve been playing with:</div>
<div></div>
<div style="text-align: center;"><a href="http://www.youtube.com/watch?v=yskjeWvKTrE">http://www.youtube.com/watch?v=yskjeWvKTrE</a></div>
<p>Thanks and have a great new year!</p>
]]></content:encoded>
			<wfw:commentRss>http://elecorn.com/blog/2011/01/caster-1-3-update-on-linux/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Pumped about Caster!</title>
		<link>http://elecorn.com/blog/2011/01/pumped-about-caster/</link>
		<comments>http://elecorn.com/blog/2011/01/pumped-about-caster/#comments</comments>
		<pubDate>Sun, 02 Jan 2011 22:50:23 +0000</pubDate>
		<dc:creator>elecorn</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://elecorn.com/blog/?p=451</guid>
		<description><![CDATA[So having taken a break from Caster for a while to work on some other projects, and then having taken<a href="http://elecorn.com/blog/2011/01/pumped-about-caster/" class="searchmore">Read the Rest...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" title="Caster dash sketch" src="http://www.elecorn.com/caster3d/caster_sketches/images/caster_sketches07.png" alt="" width="638" height="410" /></p>
<p>So having taken a break from Caster for a while to work on some other projects, and then having taken a break from working on games in general over this Christmas break (playing a few instead), I&#8217;m pumped about working on Caster again!</p>
<p>I have some ideas for game play and story that I&#8217;m really excited about.</p>
<p>Story has been a weak point for Caster and hopefully the next few updates will make it more compelling.</p>
<p>I&#8217;m also adding in better mod support.  Instead of adding in mods in a separate mods directory, I&#8217;m going to treat them like separate game with their own sub directory.</p>
<p>Before I release the next update to Caster, I&#8217;ll be releasing Sunshine as a mod of Caster. Most of my initial work on Sunshine has been in 2D (because I wanted to do something &#8220;simple&#8221; ), it looks like I&#8217;m going to promote that to 3D as well.  A lot of the game play will be 2D, but I might play around with the camera a bit.</p>
<p>As far as updating the visual style for Caster (higher poly, shaders, etc), I&#8217;ll probably wait until Caster 2 to do that.</p>
<p>Here&#8217;s for a great 2011 with some sweet updates to Caster!</p>
]]></content:encoded>
			<wfw:commentRss>http://elecorn.com/blog/2011/01/pumped-about-caster/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Rainbow Ball into Adventure!</title>
		<link>http://elecorn.com/blog/2010/11/rainbow-ball-into-adventure/</link>
		<comments>http://elecorn.com/blog/2010/11/rainbow-ball-into-adventure/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 06:26:14 +0000</pubDate>
		<dc:creator>elecorn</dc:creator>
				<category><![CDATA[Rainbow Ball]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[video games]]></category>
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://elecorn.com/blog/?p=429</guid>
		<description><![CDATA[Okay! I decided I needed to do right by my kids and finish up the game we&#8217;ve been working on<a href="http://elecorn.com/blog/2010/11/rainbow-ball-into-adventure/" class="searchmore">Read the Rest...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p>Okay!</p>
<p>I decided I needed to do right by my kids and finish up the game we&#8217;ve been working on here and there for about a year now.</p>
<p>We&#8217;re so close to finishing!</p>
<p>The game is called &#8220;Rainbow Ball into Adventure&#8221; and will be for Xbox Indie Games.</p>
<p>You can seem some older footage here:</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/OYDvRf52rLg" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/OYDvRf52rLg"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://elecorn.com/blog/2010/11/rainbow-ball-into-adventure/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Hidden Path Entertainment is Hiring!</title>
		<link>http://elecorn.com/blog/2010/10/hidden-path-entertainment-is-hiring/</link>
		<comments>http://elecorn.com/blog/2010/10/hidden-path-entertainment-is-hiring/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 15:30:24 +0000</pubDate>
		<dc:creator>elecorn</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://elecorn.com/blog/?p=423</guid>
		<description><![CDATA[I really love my job at Hidden Path Entertainment.  If you don&#8217;t love your current job, we&#8217;re looking to hire<a href="http://elecorn.com/blog/2010/10/hidden-path-entertainment-is-hiring/" class="searchmore">Read the Rest...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><a href="http://www.hiddenpath.com"><img class="aligncenter size-full wp-image-424" title="HiddenPathLogoB_sm" src="http://elecorn.com/blog/wp-content/uploads/2010/10/HiddenPathLogoB_sm.png" alt="" width="720" height="265" /></a>I really love my job at <a href="http://www.hiddenpath.com/">Hidden Path Entertainment</a>.  If you don&#8217;t love your current job, we&#8217;re looking to hire a few great game developers!  Look below and see if something is a good fit for you. Feel free to e-mail me directly if you have any questions ( <img class="alignnone" title="contact" src="http://www.elecorn.com/mikedsmith//graphics/contact1.gif" alt="" width="110" height="16" /> ).</p>
<p style="text-align: left;">Thanks!</p>
<blockquote><p>Hidden Path Entertainment is growing and is looking for three new full-time candidates: an Environment Artist, a Senior PS3 programmer, and a Senior Tester.  The initial project for these positions focuses on the growth and development of an highly popular online action game:</p>
<p>Please send recomendations or submissions to <a href="mailto:jobs@hiddenpath.com">jobs@hiddenpath.com</a>.</p>
<p>1. <strong>Environment Artist</strong>:<br />
Responsibilities:<br />
- Collaborate with the Project Art Director and other team members to conceptualize, and develop level environments for the game<br />
- Take primary ownership of multiple level environments and collaborate with management to meet quality and schedule requirements<br />
- Drive the game’s visual quality to new heights through level construction, modeling, and texture design as well as the effective use of color and lighting for both aesthetic and gameplay goals<br />
- Be a collaborative member of the art team, and contribute actively to reviews and feedback</p>
<p>Requirements:<br />
- Exceptional visual and technical understanding in 3D modeling, texturing and world building<br />
- Expert understanding of next-gen game environment creation processes and tools<br />
- Ability to quickly learn and utilize proprietary engine tools and pipelines<br />
- Excellent communication, time-management and organizational skills<br />
- Proactive, Task driven, Self-motivated<br />
- Ability to give and respond to feedback and constructive criticism<br />
- Shipped multiple titles as an Environment artist</p>
<p>- Skill with 3DS Max a significant plus</p>
<p>Portfolio submissions should include:<br />
- Examples of high and game resolution modeling, both organic and architectural/mechanical<br />
- Examples of full set design and scene management<br />
- Examples of texture work</p>
<p>2. <strong>Senior PS3 Programmer</strong><br />
Responsibilities:<br />
- Take primary ownership on the development, maitenance and compatibility of the PS3 side of HPEs active projects<br />
- Be a collaborative member of the programming team and contribute actively to reviews and feedback<br />
- Work closely with art and design on requirements, as well as providing internal feedback on products.</p>
<p>Requirements:<br />
- Experience implementing PSN service integration<br />
- Experience with SPU programming and optimization<br />
- Familiarity with PS3 development tools and techniques<br />
- Deep experience working on lower level engine, graphics, or network code on a PS3 title<br />
- Expert understanding of console and PC games programming and development<br />
- Proactive, task driven, self-motivated<br />
- Shipped multiple titles as an engine or graphics Programmer<br />
- Passion for games and game development</p>
<p>3. <strong>Senior Tester</strong><br />
Responsibilities:<br />
- Develop and implement test plans for verification of game functionality and content<br />
- Request and use test tools and methodologies from the programming team<br />
- Be involved in bug tracking and bug management<br />
- Interface with external test houses as appropriate<br />
- Work closely with the development team, providing internal feedback and check-in verification</p>
<p>Requirements:<br />
- Experience testing downloadable and/or retail core games<br />
- Strong understanding of console and PC games testing including appropriate test cases, TCRs, TRCs, compatibility, etc.<br />
- Excellent communication, time-management and organizational skills<br />
- Proactive, Task driven, Self-motivated<br />
- Ability to give and respond to feedback and constructive criticism<br />
- Shipped at least one significant game title as a tester or senior tester<br />
- Skill with Black Box testing</p>
<p>- Skill with White Box testing and debugging is a significant plus</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://elecorn.com/blog/2010/10/hidden-path-entertainment-is-hiring/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Caster T-Shirts are on their Way!!!!</title>
		<link>http://elecorn.com/blog/2010/08/caster-t-shirts-on-their-way/</link>
		<comments>http://elecorn.com/blog/2010/08/caster-t-shirts-on-their-way/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 08:24:30 +0000</pubDate>
		<dc:creator>elecorn</dc:creator>
				<category><![CDATA[Caster]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[video games]]></category>

		<guid isPermaLink="false">http://elecorn.com/blog/?p=395</guid>
		<description><![CDATA[Hey all!  The Caster t-shirts have arrived!  I am very happy with how they turned out and I think you<a href="http://elecorn.com/blog/2010/08/caster-t-shirts-on-their-way/" class="searchmore">Read the Rest...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p><a href="http://elecorn.com/blog/wp-content/uploads/2010/08/t-shirts_web.jpeg"><img class="aligncenter size-full wp-image-398" title="t-shirts_web" src="http://elecorn.com/blog/wp-content/uploads/2010/08/t-shirts_web.jpeg" alt="" width="640" height="480" /></a></p>
<p>Hey all!  The Caster t-shirts have arrived!  I am very happy with how they turned out and I think you will like them.</p>
<p>In true Caster fashion, they are glow-in-the-dark!</p>
<p>I just finished packaging all of them up with your pencil drawings and I am sending them your way!</p>
<div id="attachment_399" class="wp-caption aligncenter" style="width: 650px"><a href="http://elecorn.com/blog/wp-content/uploads/2010/08/t-shirts_package_web.jpeg"><img class="size-full wp-image-399" title="t-shirts_package_web" src="http://elecorn.com/blog/wp-content/uploads/2010/08/t-shirts_package_web.jpeg" alt="" width="640" height="480" /></a><p class="wp-caption-text">All nicely packged up in tyvek envelops.</p></div>
<p style="text-align: center;">
<p>Thanks for your patience!</p>
]]></content:encoded>
			<wfw:commentRss>http://elecorn.com/blog/2010/08/caster-t-shirts-on-their-way/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Shirts Ordered, Sketches Done!</title>
		<link>http://elecorn.com/blog/2010/06/shirts-ordered-sketches-done/</link>
		<comments>http://elecorn.com/blog/2010/06/shirts-ordered-sketches-done/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 06:44:19 +0000</pubDate>
		<dc:creator>elecorn</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Caster]]></category>
		<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Pictures]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[video games]]></category>

		<guid isPermaLink="false">http://elecorn.com/blog/?p=389</guid>
		<description><![CDATA[Hey all! We had about 50 orders for Caster t-shirts.  Since each shirt ships with an original hand drawn pencil<a href="http://elecorn.com/blog/2010/06/shirts-ordered-sketches-done/" class="searchmore">Read the Rest...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.casterthegame.com/caster_sketches/"><img class="aligncenter" title="caster sketch" src="http://www.elecorn.com/caster3d//caster_sketches/images/caster_sketches38.png" alt="" width="638" height="410" /></a></p>
<p>Hey all!</p>
<p>We had about 50 orders for Caster t-shirts.  Since each shirt ships with an original hand drawn pencil sketch by yours truly, that means I did 50 of those as well.</p>
<p>Today I just finished the last of those and went ahead and scanned them all in and uploaded them for your viewing pleasure here:</p>
<p><a href="http://www.casterthegame.com/caster_sketches/">http://www.casterthegame.com/caster_sketches/</a></p>
<p>I&#8217;ve submitted the t-shirt order and things are looking good.</p>
<p>It will still be a little while until the shirts are done, but I will let you all know once I&#8217;ve mailed them out.   Oh, and the shirts have a little something extra to make them true &#8220;Caster&#8221; shirts&#8230;. Any guesses what that might be?</p>
<p>Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://elecorn.com/blog/2010/06/shirts-ordered-sketches-done/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>T-Shirts and Pay What You Want</title>
		<link>http://elecorn.com/blog/2010/05/t-shirts-and-pay-what-you-want/</link>
		<comments>http://elecorn.com/blog/2010/05/t-shirts-and-pay-what-you-want/#comments</comments>
		<pubDate>Tue, 25 May 2010 06:45:51 +0000</pubDate>
		<dc:creator>elecorn</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://elecorn.com/blog/?p=383</guid>
		<description><![CDATA[Hey Everyone! I&#8217;m happy to announce that I&#8217;m making some Caster t-shirts! (as seen above, white ink on a black<a href="http://elecorn.com/blog/2010/05/t-shirts-and-pay-what-you-want/" class="searchmore">Read the Rest...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img src="http://img.ymlp.com/elecorn_castertshirtweb640.png" alt="" width="424" height="640" /></p>
<div>
<p>Hey Everyone!</p>
</div>
<div>
<p>I&#8217;m happy to announce that I&#8217;m making some Caster t-shirts! (as  seen above, white ink on a black shirt see also <a href="http://elecorn.com/blog/2010/02/t-shirt-design/">http://elecorn.com/blog/2010/02/t-shirt-design/</a>).</p>
</div>
<div>
<p>If you are interested in getting one of these fine limited edition  shirts, send an e-mail with your preferred t-shirt size and style and a  shipping address to:</p>
</div>
<div>
<p><strong><img class="alignnone" title="e-mail address" src="http://www.elecorn.com/caster3d//graphics/contact1.gif" alt="" width="110" height="16" /></strong></p>
</div>
<div>
<p>*Put &#8220;Caster&#8221; somewhere in the  subject line so that it will pass through any filters and I&#8217;ll be sure  to get it.</p>
</div>
<div>
<p><strong>No need to pay now!</strong> Once you get your shirt, you can pay  for it by clicking on the &#8220;Donate&#8221; button found here:</p>
</div>
<div>
<p><a href="http://www.casterthegame.com/"><strong>http://www.casterthegame.com</strong></a></p>
</div>
<div>
<p>The shirts will cost me about $20 to $25 USD each plus shipping and  handling but <strong>feel free to pay what you like</strong>.  I&#8217;d rather people  have t-shirts that want them than not getting one because of price.</p>
</div>
<div>
<p>In addition, each t-shirt will ship with a <strong>unique hand drawn  sketch</strong> from your&#8217;s truely (requests are encouraged)!</p>
</div>
<div>
<p>I&#8217;ll only be taking orders for a week, so be sure to send them in  soon.</p>
</div>
<div>
<p>One more thing!</p>
</div>
<div>
<p>For this next week I&#8217;ve set up a <strong>pay-what-you-want</strong>* option  for Caster similar to what has been done for several other independent  video games.  If you think Caster is too over or under priced, this  gives you the option to pay what you think the game is worth!  Spread  the word!  All the fun fast paced action of Caster at a price that  anyone can afford!  Just follow the instructions found at the bottom of  the page here:</p>
</div>
<div>
<p><a href="http://www.casterthegame.com/"><strong>http://www.casterthegame.com</strong></a></p>
</div>
<div>
<p>Thanks all!  And thanks for supporting Caster!</p>
</div>
<div>
<p><strong>*Pay-what-you-want</strong> only applies to the PC, Mac, and Linux  versions of Caster.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://elecorn.com/blog/2010/05/t-shirts-and-pay-what-you-want/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Caster on Steam for Mac</title>
		<link>http://elecorn.com/blog/2010/05/caster-on-steam-for-mac/</link>
		<comments>http://elecorn.com/blog/2010/05/caster-on-steam-for-mac/#comments</comments>
		<pubDate>Thu, 20 May 2010 15:14:52 +0000</pubDate>
		<dc:creator>elecorn</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://elecorn.com/blog/?p=375</guid>
		<description><![CDATA[Yesterday Caster was released for Mac via Steam! Caster supports Steam Play which means you&#8217;ll be able to play it<a href="http://elecorn.com/blog/2010/05/caster-on-steam-for-mac/" class="searchmore">Read the Rest...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p><a href="http://store.steampowered.com/app/29800/"><img class="aligncenter size-full wp-image-378" title="header" src="http://elecorn.com/blog/wp-content/uploads/2010/05/header.jpg" alt="" width="460" height="215" /></a></p>
<p><a href="http://elecorn.com/blog/wp-content/uploads/2010/05/globalheader_logo.png"><img class="aligncenter size-full wp-image-376" title="globalheader_logo" src="http://elecorn.com/blog/wp-content/uploads/2010/05/globalheader_logo.png" alt="" width="176" height="44" /></a></p>
<p><a href="http://elecorn.com/blog/wp-content/uploads/2010/05/globalheader_logo.png"></a><a href="http://elecorn.com/blog/wp-content/uploads/2010/05/platform_steamplay.png"><img class="aligncenter size-full  wp-image-377" title="platform_steamplay" src="http://elecorn.com/blog/wp-content/uploads/2010/05/platform_steamplay.png" alt="" width="123" height="22" /></a></p>
<p>Yesterday Caster was released for Mac via Steam!</p>
<p>Caster supports Steam Play which means you&#8217;ll be able to play it on Mac or Windows from any computer with just one purchase.</p>
<p>Check it out!</p>
<p style="text-align: center;"><a href="http://store.steampowered.com/app/29800/">http://store.steampowered.com/app/29800/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://elecorn.com/blog/2010/05/caster-on-steam-for-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Caster Mod Help, Caster on iPad</title>
		<link>http://elecorn.com/blog/2010/03/caster-mod-help-caster-on-ipad/</link>
		<comments>http://elecorn.com/blog/2010/03/caster-mod-help-caster-on-ipad/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 07:54:18 +0000</pubDate>
		<dc:creator>elecorn</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://elecorn.com/blog/?p=359</guid>
		<description><![CDATA[I&#8217;ve updated the docs on how to make your own levels for Caster.  Along with this I have posted a<a href="http://elecorn.com/blog/2010/03/caster-mod-help-caster-on-ipad/" class="searchmore">Read the Rest...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve updated the docs on how to make your own levels for Caster.  Along with this I have posted a sample mod that contains descriptions on all the different settings and options when building scenes, actors, behaviors, props, scripts, etc.</p>
<p>Visit <a href="http://www.casterthegame.com/mods.html">http://www.casterthegame.com/mods.html</a> for more details.</p>
<p>We also have a special build of Caster on iPad ready to go.  Hopefully in time for the iPad launch.</p>
<p><a href="http://elecorn.com/blog/wp-content/uploads/2010/03/caster_ipad_screen_shot00.png"><img class="aligncenter size-medium wp-image-360" title="caster_ipad_screen_shot00" src="http://elecorn.com/blog/wp-content/uploads/2010/03/caster_ipad_screen_shot00-300x232.png" alt="" width="300" height="232" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://elecorn.com/blog/2010/03/caster-mod-help-caster-on-ipad/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>

