Reduced the footprint of the tiles

Also prepping for serializing the regions.
This commit is contained in:
Kayne Ruse
2014-03-15 22:59:57 +11:00
parent 7e500027e3
commit d5b551cec3
8 changed files with 49 additions and 33 deletions
+4 -4
View File
@@ -56,12 +56,12 @@ EditorScene::EditorScene(ConfigUtility* const arg1):
});
//setup the map
pager.SetRegionWidth(config.Int("map.pager.width"));
pager.SetRegionHeight(config.Int("map.pager.height"));
pager.SetRegionDepth(config.Int("map.pager.depth"));
pager.SetRegionWidth(REGION_WIDTH);
pager.SetRegionHeight(REGION_HEIGHT);
pager.SetRegionDepth(REGION_DEPTH);
//debug
tsheet.Load("rsc\\graphics\\tilesets\\sand.bmp", 12, 3);
tsheet.Load(config["dir.tilesets"] + "sand.bmp", 12, 3);
}
EditorScene::~EditorScene() {