
It's got a lotta good stuff in it. School started back up so I have no time to do anything fun
I'm attempting to learn XNA 4.0 and C# via Microsoft Visual Studio 2010. This will be a non-updated chronicle of my journey. I like games.
tileDraw.X = originOffset + (halfTileWidth * (x-y))
tileDraw.Y = halfTileHeight * (x+y)
new Point(-halfFloorTileWidth, halfFloorTileHeight - wallHeight)
new Point(0, 3*halfFloorTileHeight - wallHeight)
static class Tile
{
static public Texture2D TileSetTexture;
static public Rectangle GetSourceRectangle(int tileIndex)
{
return new Rectangle(tileIndex * 192, 0, 192, 128);
//above values are hardcoded: 192 = (tileWidth + hOff)
}
}
x = (x * tileWidth) - (y * hOff)
y = (y * tileHeight)
startingOff.x = (mapHeight - 1) * hOff
startingOff.y = 0