Author Topic: Solidity, Tile Categories  (Read 5180 times)

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Solidity, Tile Categories
« 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)});
Edward Dassmesser

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: Solidity, Tile Categories
« Reply #1 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.