<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Games - Education Network</title>
	
	<link>http://games.dtuts.com</link>
	<description>Creating Games</description>
	<lastBuildDate>Tue, 20 Dec 2011 18:13:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/GamesDtuts" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="gamesdtuts" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">GamesDtuts</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Ball Game Using python</title>
		<link>http://games.dtuts.com/tutorials/ball-game-using-python/</link>
		<comments>http://games.dtuts.com/tutorials/ball-game-using-python/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 20:38:21 +0000</pubDate>
		<dc:creator>GraphicsCenter</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://games.dtuts.com/?p=32</guid>
		<description><![CDATA[Organize your games by using some scripts insted of cluttering your objects with logic bricks! The Blender Game Engine is very powerfull. You can create some awesome games just by using logic bricks. But if you’re creating a large game, it could be rather good to be a bit organized. Perhaps using some python scripts [...]]]></description>
			<content:encoded><![CDATA[<p>Organize your games by using some scripts insted of cluttering your objects with logic bricks!<span id="more-32"></span><br />
The Blender Game Engine is very powerfull. You can create some awesome games just by using logic bricks. But if you’re creating a large game, it could be rather good to be a bit organized. Perhaps using some python scripts for less logic bricks or maybe name the objects etc. Anyways, in this tutorial we’re going to be taking a look at controlling the game(movements and such) using python scripts.<br />
<iframe src="http://blip.tv/play/AYLj4XUA.html" width="670" height="530" frameborder="0" allowfullscreen></iframe><embed type="application/x-shockwave-flash" src="http://a.blip.tv/api.swf#AYLj4XUA" style="display:none"></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://games.dtuts.com/tutorials/ball-game-using-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to XNA</title>
		<link>http://games.dtuts.com/tutorials/introduction-to-xna/</link>
		<comments>http://games.dtuts.com/tutorials/introduction-to-xna/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 22:21:51 +0000</pubDate>
		<dc:creator>GraphicsCenter</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[XNA]]></category>

		<guid isPermaLink="false">http://games.dtuts.com/?p=27</guid>
		<description><![CDATA[Want to make a game? Well then this software is for you. XNA is a Video game development tool that you can program in. The language you need to use is C# and in the XNA section you can learn a lot about programming in XNA or actually, you will learn a lot about programming [...]]]></description>
			<content:encoded><![CDATA[<p>Want to make a game? Well then this software is for you. XNA is a Video game development tool that you can program in. <span id="more-27"></span>The language you need to use is C# and in the XNA section you can learn a lot about programming in XNA or actually, you will learn a lot about programming in general. What you need is to install two softwares:</p>
<p><strong>1. Microsoft Visual C# – 2008 or newer (to follow our tutorials and articles)<br />
2. XNA Game studio – 3.1 for 2008 version and 4.0 for 2010 version</strong></p>
<p>Just follow the instructions when installing both programs/softwares.<br />
When everything is complete, open up C#.<br />
<img src="http://static.dtuts.com/games/tuts/introduction-xna/1.png" alt="" /><br />
Press Create Project.<br />
Choose XNA Game Studio 3.1 or the version you want to use and then make sure it’s a Windows Game. If you want, you can change the project name to.<br />
Go ahed and press OK.<br />
<img src="http://static.dtuts.com/games/tuts/introduction-xna/2.png" alt="" /><br />
Now we have all this code <a href="http://graphicscenter.net/xna/new_xna_project.html" title="popping up" target="_blank"></a>.<br />
There are a couple of things i’d like to explain. Alot of codes like Using System; need to be there, so don’t delete them. The green rows that starts out with // means that they are comments, these rows you can delete, (after reading them and understanding them of course).</p>
<h3>Now some methods </h3>
<p><strong>public class Game1 : Microsoft.Xna.Framework.Game</strong><br />
Here in the main class you declare you variables, like if you want to load a texture it needs to have a variable, so you can call it whatever you want, but before the variable you need to tell the variable what it will be used for. Ex:<br />
<strong>Texture2D myvariable;<br />
protected override void Initialize()</strong><br />
This method runs one time when first starting the game. Let’s say you want a wall with a position that never is going to change. Here in this method you can set up the wall so it wont update the positions of the wall, since walls doesn’t move, not in earth anyway.<br />
<strong>protected override void LoadContent()</strong><br />
Then we have the Load method. A very important method that loads your textures/sprites/images/sounds. etc. so you can use them in the Draw() method (that we will talk about in a minute. Lets say you want to load a texture from the content, you do that by writing:<br />
<strong>myvariabe = Content.Load<Texture2D>(“img”);</strong><br />
where variable is the variable you have declared in your class.<br />
<strong>protected override void UnloadContent()</strong><br />
Obvious right? Removes or unloads, lets say, a texture you don’t need anymore. This method is rarely used, especially for beginners.<br />
You unload something by writeing:<br />
<strong>variable.dispose();</strong><br />
again where variable is you variable name (could be myvariable)<br />
<strong><br />
protected override void Update(GameTime gameTime)</strong><br />
At last! The Update method. Here you update everything like positions, rotations the list goes on. I can’t give a good example on this, the best way to understand is watching the tutorials.</p>
<p><strong>protected override void Draw(GameTime gameTime)</strong><br />
last but not least, we have the Draw method. I think this one also is a little obvious but anyway, the method draws your textures. Ex: if the position is changed in the update method, it will say to the draw method: “hey draw this texture in another position”.</p>
<p>It’s very important to know how all these methods is connected to each other, and the best way to understand it is to try it out. You wont get it the first times, but hey… thats the point of learning.</p>
<p>Remember since it’s from Microsoft, this ONLY works for Windows. If you have any other questions, please ask. Hopefully I can answer them.</p>
<p> I forgot… You can also make games for X-BOX!</p>
]]></content:encoded>
			<wfw:commentRss>http://games.dtuts.com/tutorials/introduction-to-xna/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Giveaway: Premium Accounts on IdentyMe</title>
		<link>http://games.dtuts.com/challenges/giveaway-premium-accounts-on-identyme/</link>
		<comments>http://games.dtuts.com/challenges/giveaway-premium-accounts-on-identyme/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 15:22:05 +0000</pubDate>
		<dc:creator>Stryker</dc:creator>
				<category><![CDATA[Challenges]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Competition]]></category>

		<guid isPermaLink="false">http://games.dtuts.com/?p=23</guid>
		<description><![CDATA[In this giveaway we offer two awards: “2 Years Premium Account: MAXIMUM ($478 in total)” and “2 Years Premium Account: Plus ($142 in total)”. Read on to see how you can win one of these excellent prizes and findout more about our sponsor. About IdentyMe IdentyMe is a service for making of virtual business cards. [...]]]></description>
			<content:encoded><![CDATA[<p>In this giveaway we offer two awards: “<strong>2 Years Premium Account: MAXIMUM</strong> ($478 in total)” and “<strong>2 Years Premium Account: Plus</strong> ($142 in total)”. Read on to see how you can win one of these excellent prizes and findout more about our sponsor. <span id="more-23"></span></p>
<h3>About IdentyMe</h3>
<p><a href="http://identyme.com/">IdentyMe</a> is a service for making of virtual business cards. Collect all your contacts in one place and create a portfolio. Share information with new people, find new friends and business partners.</p>
<p><a href="https://identyme.com/pricing"><img src="http://static.dtuts.com/3d/free/identyme_giveaway_premiums/identyme-main.png" alt="identyme" title="identyme-main" width="600" height="555" class="alignnone size-full wp-image-2992" /></a></p>
<h3>Examples of vcards on IdentyMe</h3>
<p>Check out these examples of vcards produced by IdentyMe.</p>
<p><a href="https://identyme.com/user/show/?username=&amp;theme_id=2"><img src="http://static.dtuts.com/3d/free/identyme_giveaway_premiums/identyme-ipad.jpg" alt="" title="identyme-ipad" width="600" height="424" class="alignnone size-full wp-image-2999" /></a></p>
<p><a href="https://identyme.com/user/show/?username=&#038;theme_id=5"><img src="http://static.dtuts.com/3d/free/identyme_giveaway_premiums/identyme-glass.jpg" alt="" title="identyme-glass" width="600" height="388" class="alignnone size-full wp-image-3000" /></a></p>
<p><a href="https://identyme.com/user/show/?username=&amp;theme_id=9"><img src="http://static.dtuts.com/3d/free/identyme_giveaway_premiums/identyme-box.jpg" alt="" title="identyme-box" width="600" height="319" class="alignnone size-full wp-image-3001" /></a></p>
<p><a href="https://identyme.com/user/show/?username=&amp;theme_id=12"><img src="http://static.dtuts.com/3d/free/identyme_giveaway_premiums/identyme-scientist.jpg" alt="" title="identyme-scientist" width="600" height="351" class="alignnone size-full wp-image-3002" /></a></p>
<p><a href="https://identyme.com/themes">See other themes</a>, which you can use for free with IdentyMe.</p>
<h3>Twitter</h3>
<p>Follow IdentyMe on <a href="http://twitter.com/IdentyMe">Twitter</a> (and <a href="http://facebook.com/IdentyMe">Facebook</a> as well).</p>
<h3>What You’ll Be Winning</h3>
<p>The award for the 1st winner is <strong>2 Years Premium Account: MAXIMUM</strong> ($478 in total) and the 2nd selected winner will get <strong>2 Years Premium Account: Plus</strong> ($142 in total).</p>
<h3>How to Win</h3>
<p>For a chance to win premium account on IdentyMe, simply <strong>post a comment</strong>.</p>
<h3>Giveaway Details</h3>
<p>The end of this giveaway is on <strong>Friday, October 24th, 2011</strong> and  after this date you won’t be able to leave a comment as the comments section will be closed. Make sure that the e-mail you write in a comment form is correct, otherwise we won’t be able to contact you if you win. You can leave only one comment. The winners will be randomly selected.</p>
<p>We will announce the winners of the giveaway on on a separate post and in order to be notified about the results you should to subscribe to our RSS feed. Please pay attention to the rules of leaving a comment because the comments that do not fulfill the requirements won’t be published.</p>
]]></content:encoded>
			<wfw:commentRss>http://games.dtuts.com/challenges/giveaway-premium-accounts-on-identyme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>20 Free Web Games made with HTML5</title>
		<link>http://games.dtuts.com/articles/20-free-web-games-made-with-html5/</link>
		<comments>http://games.dtuts.com/articles/20-free-web-games-made-with-html5/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 15:48:23 +0000</pubDate>
		<dc:creator>Stryker</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://games.dtuts.com/?p=14</guid>
		<description><![CDATA[A lot of great changes happen in the world of web development and web technologies. As time goes really fast we get more and more innovations in these fields. Previously, everyone was excited with Flash that initially was used to add animation, video, and interactivity to web pages. And now it is often used for [...]]]></description>
			<content:encoded><![CDATA[<p>A lot of great changes happen in the world of web development and web technologies. As time goes really fast we get more and more innovations in these fields. Previously, everyone was excited with Flash that initially was used to add animation, video, and interactivity to web pages. And now it is often used for advertisements, games and flash animations for broadcast. But today is a new page in history of HTML5. And in this topic we would like to present to your attention a cool collection of <strong>20 free HTML5 games</strong>. Unlike Flash, HTML5 is open source and it is totally free. As with any new technology, there are some problems with HTML5, but these are expected to be overcome in some time.<span id="more-14"></span></p>
<p>The thing with HTML5 at present time is that the older browsers, for example Internet Explorer, do not support it. So if you would like to try the games we have listed below, you will have to make sure that you have any of these browsers installed: Chrome, Safari or Firefox.</p>
<h4><a href="http://canvasrider.com/">Сanvas Rider</a></h4>
<p>Canvas Rider is an addictive game where you ride a bike on tracks drawn by other players. It&#8217;s entirely written in JavaScript &#038; HTML5, using the most of the new &#8216;canvas&#8217; element.<br />
<a href="http://canvasrider.com/"><img src=" http://static.dtuts.com/games/articles/20-Free-HTML5-Games/canvas-rider.jpg" alt="Сanvas Rider in 20 Free HTML5 Games" /></a></p>
<h4><a href="http://entanglement.gopherwoodstudios.com/light">Entanglement</a></h4>
<p><a href="http://entanglement.gopherwoodstudios.com/light"><img src=" http://static.dtuts.com/games/articles/20-Free-HTML5-Games/Entanglement.jpg" alt="Entanglement in 20 Free HTML5 Games" /></a></p>
<h4><a href="http://fatenation.com/">The Fate Of Nation</a></h4>
<p>Now you have a chance to turn the history back! Right now and right here, build a new world and a new history. Build towns and infrastructure, create armies and conclude alliances, to conduct research of the newest technologies and use them to conquer the world! From primitive people, stonework, pagan cults and small settlements to fighters, nuclear weapons, megalopolises and space projects&#8230;<br />
<a href="http://fatenation.com/"><img src=" http://static.dtuts.com/games/articles/20-Free-HTML5-Games/fatenation.jpg" alt="The Fate Of Nation in 20 Free HTML5 Games" /></a></p>
<h4><a href="http://www.flaminglunchbox.net/curvy">Curvy</a></h4>
<p>Curvy is a puzzle, originally for Android phones, using a simple idea. Connect the path and win the game.<br />
<a href="http://www.flaminglunchbox.net/curvy"><img src=" http://static.dtuts.com/games/articles/20-Free-HTML5-Games/curvy.jpg" alt="Curvy in 20 Free HTML5 Games" /></a></p>
<h4><a href="http://www.pirateslovedaisies.com/">Pirates Love Daisies</a></h4>
<p>Protect the daisies in this tower defence game.<br />
<a href="http://www.pirateslovedaisies.com/"><img src=" http://static.dtuts.com/games/articles/20-Free-HTML5-Games/pirateslovedaisies.jpg" alt="Pirates love daisies in 20 Free HTML5 Games" /></a></p>
<h4><a href="http://playbiolab.com/">Biolab Disaster</a></h4>
<p>Biolab Disaster is a platform shooter built by Dominic Szablewski using his forthcoming ImpactJS engine.<br />
<a href="http://playbiolab.com/"><img src=" http://static.dtuts.com/games/articles/20-Free-HTML5-Games/biolab-disaster.jpg" alt="Biolab Disaster in 20 Free HTML5 Games" /></a></p>
<h4><a href="http://jsway.se/m/">Orbium</a></h4>
<p><a href="http://jsway.se/m/"><img src=" http://static.dtuts.com/games/articles/20-Free-HTML5-Games/orbium.jpg" alt="Orbium in 20 Free HTML5 Games" /></a></p>
<h4><a href="http://grantgalitz.org/get_the_hell_out/LegendOfZelda_Links_Awakening/">Legend of Zelda &#8211; Links Awakening</a></h4>
<p>Legendary game in HTML5. Controls: X is A, Z is B, Shift is Select, Enter is Start, Arrow keys is the D-pad.<br />
<a href="http://grantgalitz.org/get_the_hell_out/LegendOfZelda_Links_Awakening/"><img src=" http://static.dtuts.com/games/articles/20-Free-HTML5-Games/LegendOfZelda.jpg" alt="Legend of Zelda - Links Awakening in 20 Free HTML5 Games" /></a></p>
<h4><a href="http://www.effectgames.com/effect/games/crystalgalaxy/">Crystal Galaxy</a></h4>
<p>Crystal Galaxy is an action space shooter developed here at Effect Games. It has a unique, mouse based control scheme that allows you to move and aim your ship in any direction. The object is to get through the levels without dying, shoot enemies, and collect as many power-up crystals as you can.<br />
<a href="http://www.effectgames.com/effect/games/crystalgalaxy/"><img src=" http://static.dtuts.com/games/articles/20-Free-HTML5-Games/crystal-galaxy.jpg" alt="Crystal Galaxy in 20 Free HTML5 Games" /></a></p>
<h4><a href="http://agent8ball.com/">Agent 008 Ball</a></h4>
<p>International HTML5 game of mystery (and billiards).<br />
<a href="http://agent8ball.com/"><img src=" http://static.dtuts.com/games/articles/20-Free-HTML5-Games/agent8ball.jpg" alt="Agent 008 Ball in 20 Free HTML5 Games" /></a></p>
<h4><a href="http://creaturesandcastles.hiive.com/">Сreatures and Сastles</a></h4>
<p><a href="http://creaturesandcastles.hiive.com/"><img src=" http://static.dtuts.com/games/articles/20-Free-HTML5-Games/creaturesandcastles.jpg" alt="Сreatures and Сastles in 20 Free HTML5 Games" /></a></p>
<h4><a href="http://macek.github.com/google_pacman/">Google Pacman</a></h4>
<p><a href="http://macek.github.com/google_pacman/"><img src=" http://static.dtuts.com/games/articles/20-Free-HTML5-Games/google-pacman.jpg" alt="Google Pacman in 20 Free HTML5 Games" /></a></p>
<h4><a href="http://apps.facebook.com/viriongame/">Virion</a></h4>
<p>Virion was built entirely using the new open HTML5 standard and the Processing.js JavaScript library. This means that you will never have to install a proprietary plugin to play our game, and in the near future will be able to play our game on any browser on any platform.<br />
<a href="http://apps.facebook.com/viriongame/"><img src=" http://static.dtuts.com/games/articles/20-Free-HTML5-Games/virion.jpg" alt="Virion in 20 Free HTML5 Games" /></a></p>
<h4><a href="http://raptjs.com/">RAPT</a></h4>
<p>RAPT is a cooperative platformer written in HTML5, and is meant to be played with a friend. Get both players on the goal at the same time to win (the goal is marked by four black triangles). For a harder challenge, try collecting all the golden cogs in all the levels.<br />
<a href="http://raptjs.com/"><img src=" http://static.dtuts.com/games/articles/20-Free-HTML5-Games/rapt.jpg" alt="RAPT in 20 Free HTML5 Games" /></a></p>
<h4><a href="http://musiccanbefun.edankwan.com/">Music Can Be Fun</a></h4>
<p><a href="http://musiccanbefun.edankwan.com/"><img src=" http://static.dtuts.com/games/articles/20-Free-HTML5-Games/musiccanbefun.jpg" alt="Music Can Be Fun in 20 Free HTML5 Games" /></a></p>
<h4><a href="http://dgdl.vpscustomer.com:8084/whiterabbit/">White Rabbit</a></h4>
<p><a href="http://dgdl.vpscustomer.com:8084/whiterabbit/"><img src=" http://static.dtuts.com/games/articles/20-Free-HTML5-Games/white-rabbit.jpg" alt="White Rabbit in 20 Free HTML5 Games" /></a></p>
<h4><a href="http://www.nihilogic.dk/labs/wolf/">Wolfenstein 3D</a></h4>
<p>This a Javascript implementation of id Software&#8217;s 1992 game, Wolfenstein 3D.<br />
Should work in all canvas-enabled browsers (that means no Internet Explorer).<br />
Please have patience while the game loads and is prepared for your Blazkowicz experience.<br />
<a href="http://www.nihilogic.dk/labs/wolf/"><img src=" http://static.dtuts.com/games/articles/20-Free-HTML5-Games/Wolfenstein3D.jpg" alt="Wolfenstein 3D in 20 Free HTML5 Games" /></a></p>
<h4><a href="http://www.warimals.com/">Warimals</a></h4>
<p>Warimals is the first game built with Rocket Engine. It&#8217;s a game about the eternal battle between Cats and Dogs.<br />
<a href="http://www.warimals.com/"><img src=" http://static.dtuts.com/games/articles/20-Free-HTML5-Games/warimals.jpg" alt="Warimals in 20 Free HTML5 Games" /></a></p>
<h4><a href="http://www.mutantzombiemonsters.com/">Mutant Zombie Monsters</a></h4>
<p><a href="http://www.mutantzombiemonsters.com/"><img src=" http://static.dtuts.com/games/articles/20-Free-HTML5-Games/mutantzombiemonsters.jpg"Mutant Zombie Monsters alt=" in 20 Free HTML5 Games" /></a></p>
<h3>Bonus</h3>
<h4><a href="">JSGB</a></h4>
<p>JSGB is a JavaScript GameBoy Emulator by Pedro Ladaria.<br />
<a href=""><img src=" http://static.dtuts.com/games/articles/20-Free-HTML5-Games/JSGB.jpg" alt="JSGB in 20 Free HTML5 Games" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://games.dtuts.com/articles/20-free-web-games-made-with-html5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome to our Facebook page</title>
		<link>http://games.dtuts.com/articles/welcome-to-our-facebook-page/</link>
		<comments>http://games.dtuts.com/articles/welcome-to-our-facebook-page/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 00:20:20 +0000</pubDate>
		<dc:creator>Stryker</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://games.dtuts.com/?p=12</guid>
		<description><![CDATA[We invite all our visitors to the facebook page, made for Games.DTuts.com. There you can read our latest news, follow the site activity and take part in discussions. Everyone from Dtuts team will be glad see you on facebook. Thanks.]]></description>
			<content:encoded><![CDATA[<p>We invite all our visitors to the <a href="http://www.facebook.com/pages/GamesDTuts/174691322591137">facebook page</a>, made for <a href="http://games.dtuts.com/">Games.DTuts.com</a>. There you can read our latest news, follow the site activity and take part in discussions. Everyone from Dtuts team will be glad see you on facebook. Thanks.<span id="more-12"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://games.dtuts.com/articles/welcome-to-our-facebook-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tell Us What Tutorials You Need!</title>
		<link>http://games.dtuts.com/articles/tell-us-what-tutorials-you-need/</link>
		<comments>http://games.dtuts.com/articles/tell-us-what-tutorials-you-need/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 00:14:35 +0000</pubDate>
		<dc:creator>Stryker</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://games.dtuts.com/?p=7</guid>
		<description><![CDATA[Post in coments of the topic what you need to learn for good Games education, for example awesome tutorials by 3D games creating, level buildings and other development techniques. What king of tutorials do you really need? We will try to collect great tutorials for your needs. A little bit about Games.DTuts. Games.DTuts is a [...]]]></description>
			<content:encoded><![CDATA[<p>Post in coments of the topic what you need to learn for good Games education, for example awesome tutorials by 3D games creating, level buildings and other development techniques. What king of tutorials do you really need? We will try to collect great tutorials for your needs.<span id="more-7"></span></p>
<p>A little bit about <a href="http://games.dtuts.com">Games.DTuts</a>. Games.DTuts is a part of the DTuts Education Network, which have been founded by the <a href="http://www.netrinomedia.com/">NetrinoMedia</a>. Our resource helps CG artists and Games Developers all around the world to grow and improve their skills and knowledge.</p>
<p>Games.DTuts is dedicated to regular tutorials on Unity3D, Unreal, iPhone apps and much more. We have traning material for beginners, intermediate, and advanced users. All our tutorials are published exclusively for DTuts and you will find them nowhere else. We pay to our exclusive publishers. Everyone can join us and became an author.</p>
<h3>How you can send feedback</h3>
<ol>
<li>Contact us via <a href="http://games.dtuts.com/about/">Contact Form</a></li>
<li>Use <a href="http://netrinomedia.uservoice.com/forums/62893-general">UserVoice pages</a> to post your feedbacks, suggestions and ideas</li>
<li>Post your suggestions in our <a href="http://www.facebook.com/pages/GamesDTuts/174691322591137">Page on Facebook</a></li>
<li>Contact diractly via email: games@dtuts.com</li>
<li>Follow 3D.DTuts.com on <a href="http://twitter.com/GamesDTuts">Twitter</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://games.dtuts.com/articles/tell-us-what-tutorials-you-need/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

