<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wikidot="http://www.wikidot.com/rss-namespace">

	<channel>
		<title>How to edit a level in game?</title>
		<link>http://rbwhitaker.wikidot.com/forum/t-617674/how-to-edit-a-level-in-game</link>
		<description>Posts in the discussion thread &quot;How to edit a level in game?&quot;</description>
				<copyright></copyright>
		<lastBuildDate>Mon, 20 Jul 2026 18:38:03 +0000</lastBuildDate>
		
					<item>
				<guid>http://rbwhitaker.wikidot.com/forum/t-617674#post-1691931</guid>
				<title>(no title)</title>
				<link>http://rbwhitaker.wikidot.com/forum/t-617674/how-to-edit-a-level-in-game#post-1691931</link>
				<description></description>
				<pubDate>Tue, 22 Jan 2013 07:09:20 +0000</pubDate>
				<wikidot:authorName>Jordan</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Aha, I've actually solved my own problem.</p> <p>I assumed they were blank tiles when in fact I had just not assigned a texture or name to them (That would explain my Draw method's exception for drawing a null texture)</p> <p>To fix this, I assigned a name and a texture to my blank tile, just like I would in RealmFactory</p> <div class="code"> <pre><code>tile.Name = &quot;Tile&quot;; tile.Texture = Game1.myTexture;</code></pre></div> <p>And I could then see the texture as well</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rbwhitaker.wikidot.com/forum/t-617674#post-1691926</guid>
				<title>How to edit a level in game?</title>
				<link>http://rbwhitaker.wikidot.com/forum/t-617674/how-to-edit-a-level-in-game#post-1691926</link>
				<description></description>
				<pubDate>Tue, 22 Jan 2013 06:57:46 +0000</pubDate>
				<wikidot:authorName>Jordan</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>How can I place a tile in the game while it is running? I can place empty tiles, but have not been able to place anything else.</p> <p>I've tried making a new tile with</p> <div class="code"> <pre><code>Tile tile = new Tile();</code></pre></div> <p>and then setting the ID of this new tile</p> <div class="code"> <pre><code>tile.ID = 3;</code></pre></div> <p>and using the Put method</p> <div class="code"> <pre><code>currentLevel.Put(tile, row, column);</code></pre></div> <p>however this always places a blank tile there.</p> <p>How can I make it so I can change a tile into another tile?</p> 
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>