Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 2, 2013, 4:08:30 PM (10 years ago)
Author:
zifloria
Message:

hbskdjbs

Location:
code/branches/invaders/src/modules/invader
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • code/branches/invaders/src/modules/invader/Invader.cc

    r9854 r9858  
    9898    }
    9999
     100    void Invader::costLife()
     101    {
     102        lives--;
     103        multiplier = 0;
     104        if (lives <= 0) end();
     105    };
     106
    100107    void Invader::comboControll()
    101108    {
  • code/branches/invaders/src/modules/invader/Invader.h

    r9854 r9858  
    6868            int getMultiplier(){return this->multiplier;}
    6969
    70             void costLife(){lives--; if (lives <= 0) end();};
     70            void costLife();
    7171            void levelUp(){level++;}
    7272            void addPoints(int numPoints){point += numPoints * multiplier; b_combo = true;}
  • code/branches/invaders/src/modules/invader/InvaderEnemy.cc

    r9854 r9858  
    6868    inline bool InvaderEnemy::collidesAgainst(WorldEntity* otherObject, btManifoldPoint& contactPoint)
    6969    {
    70         setVelocity(Vector3(1000,0,0));
     70        // setVelocity(Vector3(1000,0,0));
    7171        removeHealth(2000);
    7272        return false;
Note: See TracChangeset for help on using the changeset viewer.