Changeset 11759
- Timestamp:
- Feb 17, 2018, 11:43:12 PM (7 years ago)
- Location:
- code/branches/Presentation_HS17_merge/src/modules/flappyorx
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/Presentation_HS17_merge/src/modules/flappyorx/FlappyOrx.cc
r11757 r11759 66 66 firstGame = true; //needed for the HUD 67 67 68 tubeDistance=200.0f; //distance between tubes 69 tubeOffsetX=500.0f; //tube offset (so that we can't see them spawn) 68 speedBase = 0; 69 speedIncrease = 0; 70 tubeDistanceBase = 0; 71 tubeDistanceIncrease = 0; 72 tubeDistance = 200.0f; //distance between tubes 73 tubeOffsetX = 500.0f; //tube offset (so that we can't see them spawn) 70 74 71 75 circlesUsed=0; -
code/branches/Presentation_HS17_merge/src/modules/flappyorx/FlappyOrxHUDinfo.cc
r11758 r11759 46 46 this->bShowPoints_ = false; 47 47 this->bShowGameOver_ = false; 48 this->messageID = 0; 48 49 } 49 50 -
code/branches/Presentation_HS17_merge/src/modules/flappyorx/FlappyOrxShip.cc
r11755 r11759 49 49 RegisterObject(FlappyOrxShip); 50 50 51 51 isFlapping = false; 52 52 isDead = true; 53 deathTime = 0; 54 53 speed = 0; 54 upwardThrust = 0; 55 gravity = 0; 55 56 particleLifespan = 0.1; 56 57 particleAge = 0; 58 deathTime = 0; 57 59 58 60 particlespawner_ = NULL;
Note: See TracChangeset
for help on using the changeset viewer.