Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 10, 2015, 4:34:26 PM (9 years ago)
Author:
fvultier
Message:

Merged towerdefenseFabien branch back to trunk. The towerdefense Minigame is now a plugin.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/modules/towerdefense/TDCoordinate.cc

    r10622 r10629  
    88namespace orxonox
    99{
    10     //RegisterClass(TDCoordinate);
    11 
    1210    /**
    1311    @brief
    14         Constructor. Registers and initializes the object.
     12        Constructor. Sets the default coordinates: (0,0)
    1513    */
    1614    TDCoordinate::TDCoordinate()
    1715    {
    18         //RegisterObject(TDCoordinate);
    1916        Set(0,0);
    20 
    2117    }
    2218
     
    7369        coord->x= (_x-8) * tileScale;
    7470        coord->y= (_y-8) * tileScale;
    75         coord->z=100;
     71        coord->z=0;
    7672
    7773        return *coord;
Note: See TracChangeset for help on using the changeset viewer.