Scrolling Game Development Kit Forum

SGDK Version 2 => Help, Errors, FAQ => Topic started by: durnurd on 2007-04-05, 10:44:34 AM

Title: Solidity, Tile Categories
Post by: durnurd on 2007-04-05, 10:44:34 AM
Spaces in tile categories lead to problems when used in a solidity definition.

Some generated code:

Code: [Select]
   private static Solidity m_SolidNormal = new Solidity(new SolidityMapping[] {
            new SolidityMapping(TileCategoryName.Solid, SolidTileShape.Value),
            new SolidityMapping(TileCategoryName.Uphill, UphillTileShape.Value),
            new SolidityMapping(TileCategoryName.Downhill, DownhillTileShape.Value),
            new SolidityMapping(TileCategoryName.Uphill Ceiling, UpCeilingTileShape.Value),
            new SolidityMapping(TileCategoryName.Downhill Ceiling, DownCeilingTileShape.Value)});
Title: Re: Solidity, Tile Categories
Post by: bluemonkmn on 2007-04-05, 04:39:55 PM
Wow, that seems familiar, but plain as day the problem's staring me in the face in the code generator.  Fixed.  I'm surprised we didn't hit that already.