- Timestamp:
- Dec 4, 2017, 3:57:10 PM (7 years ago)
- Location:
- code/branches/FlappyOrx_HS17
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FlappyOrx_HS17/data/levels/FlappyOrx.oxw
r11624 r11631 3 3 description = "A clone of the iconic Flappy Bird" 4 4 tags = "minigame" 5 screenshot = " orxonoxArcade.png"5 screenshot = "FlappyOrx.png" 6 6 /> 7 7 -
code/branches/FlappyOrx_HS17/data/levels/templates/spaceshipFlappyOrx.oxt
r11624 r11631 27 27 tubeDistanceIncrease = -1 28 28 29 upwardThrust = 2 1029 upwardThrust = 220 30 30 gravity = 700 31 31 -
code/branches/FlappyOrx_HS17/src/modules/flappyorx/FlappyOrx.cc
r11630 r11631 116 116 return; 117 117 118 int space = 1 20; //vertical space between top and bottom tube118 int space = 130; //vertical space between top and bottom tube 119 119 int height = (float(rand())/RAND_MAX-0.5)*(280-space); //Randomize height 120 120 -
code/branches/FlappyOrx_HS17/src/modules/flappyorx/FlappyOrxShip.cc
r11624 r11631 53 53 deathTime = 0; 54 54 55 particleLifespan = 0. 08;55 particleLifespan = 0.1; 56 56 particleAge = 0; 57 57
Note: See TracChangeset
for help on using the changeset viewer.