Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 1, 2015, 3:56:21 PM (9 years ago)
Author:
landauf
Message:

replaced tabs with spaces. no changes in code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/surfaceraceHS14/src/modules/dodgerace/DodgeRaceShip.cc

    r10232 r10236  
    101101        if(pos.y != 0)
    102102        {
    103                 pos.y = 0;
     103            pos.y = 0;
    104104        }
    105105
     
    126126    void DodgeRaceShip::moveFrontBack(const Vector2& value)
    127127    {
    128         //lastTimeFront = 0;
    129         //desiredVelocity.y = value.y * speed * 42;
     128        //lastTimeFront = 0;
     129        //desiredVelocity.y = value.y * speed * 42;
    130130
    131131    }
     
    133133    void DodgeRaceShip::moveRightLeft(const Vector2& value)
    134134    {
    135         lastTimeLeft = 0;
    136         desiredVelocity.x = value.x * speed;
     135        lastTimeLeft = 0;
     136        desiredVelocity.x = value.x * speed;
    137137    }
    138138    void DodgeRaceShip::boost(bool bBoost)
     
    144144    {
    145145
    146         removeHealth(100);
    147         this->death();
     146        removeHealth(100);
     147        this->death();
    148148        return false;
    149149    }
     
    155155            for (ObjectList<DodgeRace>::iterator it = ObjectList<DodgeRace>::begin(); it != ObjectList<DodgeRace>::end(); ++it)
    156156            {
    157                 game = *it;
     157                game = *it;
    158158            }
    159159        }
Note: See TracChangeset for help on using the changeset viewer.