<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: XNA Sidescroller Part 2</title>
	<link>http://www.awestyproductions.com/tutorials/c-sharp/xna-sidescroller-part-2/</link>
	<description></description>
	<pubDate>Sat, 19 May 2012 00:00:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>By: windows explorer slow to load</title>
		<link>http://www.awestyproductions.com/tutorials/c-sharp/xna-sidescroller-part-2/#comment-160594</link>
		<dc:creator>windows explorer slow to load</dc:creator>
		<pubDate>Mon, 14 Mar 2011 15:02:47 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/c-sharp/xna-sidescroller-part-2/#comment-160594</guid>
		<description>&lt;strong&gt;windows explorer slow to load...&lt;/strong&gt;

I would like to subscribe to this blog - Mendoza tiene un Consejero Nacional " Zona 28 – Mendoza. How to go about doing it?...</description>
		<content:encoded><![CDATA[<p><strong>windows explorer slow to load&#8230;</strong></p>
<p>I would like to subscribe to this blog - Mendoza tiene un Consejero Nacional &#8221; Zona 28 – Mendoza. How to go about doing it?&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: awesome guy</title>
		<link>http://www.awestyproductions.com/tutorials/c-sharp/xna-sidescroller-part-2/#comment-148160</link>
		<dc:creator>awesome guy</dc:creator>
		<pubDate>Fri, 21 Jan 2011 03:22:29 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/c-sharp/xna-sidescroller-part-2/#comment-148160</guid>
		<description>I Want To Get XNA sidescroller</description>
		<content:encoded><![CDATA[<p>I Want To Get XNA sidescroller</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Byron Shields</title>
		<link>http://www.awestyproductions.com/tutorials/c-sharp/xna-sidescroller-part-2/#comment-85886</link>
		<dc:creator>Byron Shields</dc:creator>
		<pubDate>Thu, 01 Jul 2010 03:36:15 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/c-sharp/xna-sidescroller-part-2/#comment-85886</guid>
		<description>ok for xna scrolling part 2

you set the player position to ScreenPosition = new Vector2(400, 300);

and in the tilemap the player is "4" so even if i put 4 in a nother position on the tilemap it still goign to remain at the same spot how can i change...and also block collision</description>
		<content:encoded><![CDATA[<p>ok for xna scrolling part 2</p>
<p>you set the player position to ScreenPosition = new Vector2(400, 300);</p>
<p>and in the tilemap the player is &#8220;4&#8243; so even if i put 4 in a nother position on the tilemap it still goign to remain at the same spot how can i change&#8230;and also block collision</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Attila</title>
		<link>http://www.awestyproductions.com/tutorials/c-sharp/xna-sidescroller-part-2/#comment-83812</link>
		<dc:creator>Attila</dc:creator>
		<pubDate>Fri, 25 Jun 2010 11:22:40 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/c-sharp/xna-sidescroller-part-2/#comment-83812</guid>
		<description>Where is part 3?</description>
		<content:encoded><![CDATA[<p>Where is part 3?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dejawolf</title>
		<link>http://www.awestyproductions.com/tutorials/c-sharp/xna-sidescroller-part-2/#comment-38301</link>
		<dc:creator>Dejawolf</dc:creator>
		<pubDate>Fri, 20 Nov 2009 16:42:30 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/c-sharp/xna-sidescroller-part-2/#comment-38301</guid>
		<description>you don't have to do the else if thing, 

by putting the standard state of the player at the top like this:

                speed.X = 0;
                speed.Y = 0;
                if(kbState.IsKeyDown(Keys.Left))
                speed.X = -300 * (float)gameTime.ElapsedGameTime.TotalSeconds;
                if (kbState.IsKeyDown(Keys.Right))
                speed.X = 300 * (float)gameTime.ElapsedGameTime.TotalSeconds;
                if (kbState.IsKeyDown(Keys.Up))
                    speed.Y = -300 * (float)gameTime.ElapsedGameTime.TotalSeconds;
                if (kbState.IsKeyDown(Keys.Down))
                    speed.Y = 300 * (float)gameTime.ElapsedGameTime.TotalSeconds;

you bypass the need for the else-IF chains.</description>
		<content:encoded><![CDATA[<p>you don&#8217;t have to do the else if thing, </p>
<p>by putting the standard state of the player at the top like this:</p>
<p>                speed.X = 0;<br />
                speed.Y = 0;<br />
                if(kbState.IsKeyDown(Keys.Left))<br />
                speed.X = -300 * (float)gameTime.ElapsedGameTime.TotalSeconds;<br />
                if (kbState.IsKeyDown(Keys.Right))<br />
                speed.X = 300 * (float)gameTime.ElapsedGameTime.TotalSeconds;<br />
                if (kbState.IsKeyDown(Keys.Up))<br />
                    speed.Y = -300 * (float)gameTime.ElapsedGameTime.TotalSeconds;<br />
                if (kbState.IsKeyDown(Keys.Down))<br />
                    speed.Y = 300 * (float)gameTime.ElapsedGameTime.TotalSeconds;</p>
<p>you bypass the need for the else-IF chains.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Storm</title>
		<link>http://www.awestyproductions.com/tutorials/c-sharp/xna-sidescroller-part-2/#comment-28590</link>
		<dc:creator>Storm</dc:creator>
		<pubDate>Sun, 05 Apr 2009 01:39:24 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/c-sharp/xna-sidescroller-part-2/#comment-28590</guid>
		<description>Hey, I have all the same code and everything, but my character still won't move, please help!</description>
		<content:encoded><![CDATA[<p>Hey, I have all the same code and everything, but my character still won&#8217;t move, please help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sub-Zedox</title>
		<link>http://www.awestyproductions.com/tutorials/c-sharp/xna-sidescroller-part-2/#comment-25430</link>
		<dc:creator>Sub-Zedox</dc:creator>
		<pubDate>Mon, 05 Jan 2009 22:12:42 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/c-sharp/xna-sidescroller-part-2/#comment-25430</guid>
		<description>Uhm, you need to tell users to use XNA 3.0, 2.0 is pretty dated now. :) Just fyi.</description>
		<content:encoded><![CDATA[<p>Uhm, you need to tell users to use XNA 3.0, 2.0 is pretty dated now. <img src='http://www.awestyproductions.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Just fyi.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anon</title>
		<link>http://www.awestyproductions.com/tutorials/c-sharp/xna-sidescroller-part-2/#comment-25425</link>
		<dc:creator>anon</dc:creator>
		<pubDate>Mon, 05 Jan 2009 18:08:03 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/c-sharp/xna-sidescroller-part-2/#comment-25425</guid>
		<description>Just wondering if you ever got around to writing up part 3?

Great tutorials!</description>
		<content:encoded><![CDATA[<p>Just wondering if you ever got around to writing up part 3?</p>
<p>Great tutorials!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://www.awestyproductions.com/tutorials/c-sharp/xna-sidescroller-part-2/#comment-25273</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Wed, 24 Dec 2008 05:34:55 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/c-sharp/xna-sidescroller-part-2/#comment-25273</guid>
		<description>yeah, its free, but ypu need Microsoft C charp,too. also free :D</description>
		<content:encoded><![CDATA[<p>yeah, its free, but ypu need Microsoft C charp,too. also free <img src='http://www.awestyproductions.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blump</title>
		<link>http://www.awestyproductions.com/tutorials/c-sharp/xna-sidescroller-part-2/#comment-20937</link>
		<dc:creator>blump</dc:creator>
		<pubDate>Mon, 21 Jul 2008 06:55:32 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/c-sharp/xna-sidescroller-part-2/#comment-20937</guid>
		<description>Hi there! :)

I was given a school project to build a game with different levels, &#038; the character to shoot enemies, collect items to gain points.

I found your website, followed your XNA C# tutorials and found them useful.
Could u post up tutorial for XNA Sidescroller Part 3? 
Or more of the tutorials to complete the game?

If u are too busy to blog, perhaps u could send me an email with guides or steps to complete the game? bluishprawn@hotmail.com.

Need help. Thanks a lot! :)</description>
		<content:encoded><![CDATA[<p>Hi there! <img src='http://www.awestyproductions.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I was given a school project to build a game with different levels, &#038; the character to shoot enemies, collect items to gain points.</p>
<p>I found your website, followed your XNA C# tutorials and found them useful.<br />
Could u post up tutorial for XNA Sidescroller Part 3?<br />
Or more of the tutorials to complete the game?</p>
<p>If u are too busy to blog, perhaps u could send me an email with guides or steps to complete the game? <a href="mailto:bluishprawn@hotmail.com.">bluishprawn@hotmail.com.</a></p>
<p>Need help. Thanks a lot! <img src='http://www.awestyproductions.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
</channel>
</rss>









<!-- analytics7 --> 
